django-imagekit
django-imagekit copied to clipboard
Automated image processing for Django. Currently v4.0
There are small typos in: - docs/_themes/README.rst - docs/caching.rst - imagekit/files.py - imagekit/forms/fields.py - imagekit/specs/sourcegroups.py - tests/test_optimistic_strategy.py Fixes: - Should read `underlying` rather than `underlaying`. - Should read `truthiness` rather...
Great package! I hope someone can help. Doing some very basic resizing. But for some JPG files there are color difference between the original and the resized image when using...
The old `options={'keep_exif': True}` seems to be gone from imagekit / pilkit / PIL. Now it seems one has to supply the 'exif' data itself from the uploaded source file...
get_field_info cannot get model because field_file doesn't have instance field set so we can set it ourselves in save method
``` if not storage: storage = getattr(generator, 'cachefile_storage', None) if storage and callable(storage): storage = storage() else: storage = get_singleton(settings.IMAGEKIT_DEFAULT_FILE_STORAGE, 'file storage backend') ```
I am trying to upload a .gif image and process it to WEBP format and quality 90%. But it does not work, it only saves the first frame of the...
We should consider supporting "simple" processors—callables that accept an image and return an image. That way you wouldn't have to define a processor class if you aren't accepting any arguments....
hello. Can you add ability to get source by image url, not by image field? I need it, because I'm using django-EAV and field, that isn't inherited from filefield (yawd-elfinder)....
As discussed in #209, it would be nice to use `autodoc` to document all of the public classes and their methods. I have never used `autodoc` before, but have started...