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

Automated image processing for Django. Currently v4.0

Results 116 django-imagekit issues
Sort by recently updated
recently updated
newest added

I've been using webp for my images but when I try to used for an image with a transparent background, the image gets a white background instead. So, is there...

**### my model field :** ``` image = ProcessedImageField( processors=[ResizeToFit(1200)], format='WEBP', options={'quality': 10}) ``` i want to blur a image and then save it to database

question

It's still in beta but the main is 4.1 Also add USE_TZ = False in test settings to silance deprecation warnig for Django 5

Hi, i would like to generate all temp image sin a postsave command. How can i generate the images for a specific instance?

question

The main reason for this PR is the final part of the ``FileSystemStorage._save()`` method in the Django library that leads to generating unnormalized paths: ``` ... # Store filenames with...

Hi Does not work with `format='WEBP'` How to fix it?

feature-request

Getting this issue when creating a new image. I simply have a few specs on an ImageField like this: ``` big_image = ImageSpecField( [SmartResize(width=900, height=600)], source='original_image', format='JPEG', options={'quality': 75} )...

Also fixes #517 After testing around a few things I found that the issue is only related to e.g. S3BotoStorage where the File object is not seekable. The image generation...

need to change the order here, first populate "self.file", then seek to start of file handle, and then "self.storage.save" (which will result in a closed file handle, from which we...

Hello everyone, Do you have changelog for this project? I found this link on pypi but it's a broken: http://django-imagekit.readthedocs.org/en/latest/changelog.html Searching the docs source and I didn't find any. :(