django-imagekit
django-imagekit copied to clipboard
Automated image processing for Django. Currently v4.0
Get this issue (ImportError: cannot import name 'autodiscover') when trying to migrate. pip freeze: `Django==2.0.8 django-appconf==1.0.2 django-imagekit==4.0.2 imagekit==1.0.6 pilkit==2.0 Pillow==5.2.0 psycopg2-binary==2.7.5 pytz==2018.5 six==1.11.0`
I have previously used django-imagekit in fresh projects and it ran more or less out-of-the-box. Currently, I am trying to integrate it with some legacy code (django-1.4) running inside a...
Today I've ran into an issue where generated images accidentally got deleted from disk, but cache (memcached) still kept info that generated images were created, so generateimages management command didn't...
I'm uploading images to Google Cloud, and to display them to the client I want to create signed urls (this definitely works for my main ImageField). I'm using the same...
I have an error if I tried to upload a file without name, on S3 storage. The error message is not important. > S3Storage error at 'profiles/kiss.jpg': An error occurred...
Performance.
Hello, I have successfully installed and run imagekit adding an ImageSpecField Now my rest service is timing out. I have a django server on heroku and s3 storage for my...
How can provide width and height dynamically from form field: ``` class PostForm(forms.ModelForm): image = ProcessedImageField(spec_id='posts:create:post_image', processors=[ResizeToFill(width=600, height=400)], format='JPEG', options={'quality': 80}) width_field = forms.IntegerField() height_field = forms.IntegerField() ```
I think the cache strategy of ImageSpecField for thumbnails is complicated and error-prone, especially when using Imagekit with Django Rest Framework and external storage backend. What I want is having...
I have one image field in my model, but when I try to change the image, in my model change goes ok! But the link generated by imagekit (with CACHE...
I have a page which displays ~300 thumbnails using the ImageKit thumbnail template tag, but when a single file is not found then the entire page explodes. I encounter this...