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

On http://django-imagekit.readthedocs.io/en/latest/ the latest version is 3.2.6. Other branches there also don't seem to have anything recent. The builds seem to fail, this seems to be the first instance of...

Hi Guys, thanks for this awsome and helpfull module, The problem its really simple that generates an error when images have accents, something very usual in spanish, and raises this...

Hi I use ImageSpecFields to create renditions for ModelAdmin image fields. When I access the url property of the ImageSpecField I notice an enormous delay. On a production machine accessing...

I've never seen this issue before. The issue is coming up whenI try to call a cached file from a template. My model fields: ``` image = models.ImageField(upload_to='fly_image', help_text="Add a...

Hi! I am a newbie, but I think you need something to correct.In developing Drafts are often media images available data on different computers. And when applying the template to...

I'm creating a mixin to generate a watermark ``` class ImageWatermarkModelMixin(models.Model): watermarked_file = ProcessedImageField( upload_to=watermarked_image_upload_to, format='JPEG', processors=[ ImageWatermark( os.path.join(settings.STATIC_ROOT, 'momsplanner/images/watermark.png'), position=('-7%', '-7%',), repeat=False, opacity=0.9, ) ], max_length=200, blank=True, ) ```...

I have this view: ``` from os import path, makedirs import imghdr from django.http import HttpResponse, Http404 from django.conf import settings from imagekit import ImageSpec from imagekit.processors import ResizeToFit class...

While the ImageSpecField supports a cachefile_storage parameter, it doesn't seem to have any effect. Can you point to an example of setting an storage instance per ImageSpecField?

I just tried to use imagekit on a project which stores media on s3, but I got the following error: Template ValueError - The file cannot be reopened. ``` boto==2.39.0...