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

Resizing an image to thumbnail size reduces quality drastically. Bumping up the `'quality'` in `options={}` has almost no effect. What are some ways we can bump up the quality of...

Not sure how possible this is since imagekit and s3direct operate very differently (imagekit uses file objects and s3direct outputs URL strings). Just wondering if anyone have managed to make...

Whenever I try to call `image.delete()`, (being _image_ an instance of `ImageFieldFile`) I get that error. The image file gets locked. Problem dissapears when I remove the `ImageSpecField` from the...

I've recently upgraded from ImageKit 2 all the way through to the current version in the process of migrating to Python 3, and I'm running into an error with filenames...

Hi all! So, I'm having somewhat of a strange issue here. I've tried looking around for a few days now for solutions, and I just can't seem to find any....

Model: ```python photo = ProcessedImageField(max_length=1000, blank=True, upload_to='profile', processors=[ResizeToFit(4000, 4000)], format='JPEG') ``` Code: ```python # Fetch photo if we're missing and Firebase has it if not profile.photo and claims.get('picture'): logger.info('Fetching photo...

I'm using ImageSpecField on a model like so: ``` image = models.ImageField(upload_to='images') image_thumbnail = ImageSpecField(source='image', processors=[ResizeToFill(100, 100)], format='JPEG', options={'quality': 60}) image_medium = ImageSpecField(source='image', processors=[ResizeToFill(400, 400)], format='JPEG', options={'quality': 60}) ``` I...

Hello and thanks for awesome package! Django 1.11.7 I use custom processor for text overlay. This is my code: ``` python # ./example/processors.py from django.conf import settings from imagekit import...

question

Today I encountered an issue with image file extensions. I uploaded a '.jpeg' file to my Django app, and found out imagekit used that extension also to store the converted...

I've facing a problem where a have a page with a huge list of images and this is taking too long on redis (aprox.: 750 Redis calls), I was checking...