django-image-optimizer icon indicating copy to clipboard operation
django-image-optimizer copied to clipboard

Django library that allows optimization of images by using TinyPNG or Pillow

Results 2 django-image-optimizer issues
Sort by recently updated
recently updated
newest added

Hi! I want to specify a maximum size for my images (let's say 1000px width and 1000px height). Then I did this: ```python image = OptimizedImageField( optimized_image_output_size=(1000, 1000), optimized_image_resize_method='thumbnail' )...

Hi! When in Pillow mode (i.e. using https://pypi.org/project/python-resize-image/), it would be nice to use all the resize methods (contain, crop...). Thanks!