Tagged Questions

1
vote
1answer
195 views

Django: How to update Photo model that uses Imagekit without re-uploading photo on save()

I have a Photo model that I want to update. When I try to save I get errors from my s3 bucket as well as validation errors about certain fields cannot be null. I think I understand why it is doing ...
1
vote
2answers
533 views

ImageKit in Django

I am implementing ImageKit in a Django app and I have everything set up properly to my knowledge. When I run the command $python manage.py ikflush main the command seems to run fine but nothing ...
1
vote
1answer
82 views

How to generate a choicelist from all ImageSpecs

I want to generate a choicelist for all specs that inherit from imagekit.specs.ImageSpec. The idea is to allow users of the admin interface to select an ImageSpec to add to a picture. i.e: class ...
1
vote
1answer
276 views

How to iterate over columns of an image?

I want to transform images like this to add an effect to pictures in django as described here. I decided to implement it as a process for the great django-imagekit/photologue My knowledge of PIL ...
0
votes
1answer
27 views

Django Imagekit processing the original image

With version 1.1 I don't understand how I can preprocess the original image (by JUST using imagekit) https://github.com/jdriscoll/django-imagekit/blob/develop/README.rst Having a model like this: ...