django-resized icon indicating copy to clipboard operation
django-resized copied to clipboard

Resizes image original to specified size. Compatible with sorl-thumbnail

Results 10 django-resized issues
Sort by recently updated
recently updated
newest added

i suggest to add this attributes: `picture = ResizedImageField(max_width=640, max_height=640)` i think its better than **quality**

There are some JPEG images taken with iPhone that after I upload them in the Django admin they got rotated after resizing. I force JPEG format. Maybe because the rotation...

Hi @Gagaro , I was wondering if there is a way for the filename extension/format to be left the way the image was uploaded. If a PNG image is uploaded...

So I have this original Image from pexels: ![4579551](https://user-images.githubusercontent.com/43795758/123404888-991dfa00-d5a9-11eb-9e11-ba7497fea208.jpg) But when I upload it to our Django model which is defined as: `picture640 = ResizedImageField(upload_to="influencer_profile640", null=True, blank=True, quality=80, size=[640, 640],...

Hello guys! Would be desirable a changeset that resizes gif ?

i want image to be 48/48 but the size sometimes 40/50,60/40 like.

Hey guys, I'm a huge fan of your work - very much appreciated. However, I have noticed in the past, that the conversion from a transparent PNG to a JPG...

I've uploaded to media and my media settings are done. But i cannot access image.url in my templates like regular ImageField model.

Since pillow doesn't support HEIF/HEIC by default, i was wondering if there's a way to add support for HEIF/HEIC image format to django-resized?

fixes #32 Converting from png/webp to jpeg creates issues as jpeg doesn't support alpha channel. Simply discarding alpha channel by 'Image.convert()' function of Pillow also creates issues with png/webp images...