django-imagekit
django-imagekit copied to clipboard
Automated image processing for Django. Currently v4.0
An `ImageSpecField` with a `ResizeToFit` processor will be auto-rotated 90 degrees if the `ResizeToFit` dimension "ratio" contradicts the original uploaded image height/width ratio. **Is it possible to prevent this auto-rotation?**...
This change is mostly related to tests and setup.py. On the imagekit's own code base all files are properly closed.
I am working for IBM to port cpu arch ppc64le for open sources. This PR adds CI support for the IBM Power Little Endian (ppc64le) architecture. The idea is to...
imagekit\imagecache\__init__.py", line 27 except ImportError, e: ^ SyntaxError: invalid syntax
I cannot get imagekit to import StringIO. When I follow the suggestions in the doc in a shell, I get ModuleNotFoundError: No module named 'StringIO'. There is nothing in the...
请问, 1 如何让生成的图片大小在200kb 以内。 2如何让图片等比列缩放
_First of all, sorry if this repo is not related to width/height assignation to the model. I'm not well professional with django. If so, please redirect me to repository responsible...
Pickle is considered as an unsafe serializer, so support for e.g. `application/json` would be great. https://github.com/matthewwithanm/django-imagekit/blob/3317273401d65b1d2c70c635e22132998f957290/imagekit/cachefiles/backends.py#L147
### on my ubuntu VPS, I process thousands of images through django-imagekit. ### My code ``` class Thumbnail(ImageSpec): processors = [ResizeToFit(1200)] format = 'WEBP' options = {'quality': 90} Main_image =...
The admin page for the model which has the ImageField crashes before rendering template if one of the files is not a image file(for some reason, a zero-size file) or...