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:

class Photo(models.Model):
   original = models.ImageField(etcetera)
   thumbnail = ImageSpec(etcetera)

How do I for instance resize the original image? This was possible in previous imagekits, however the documentation insinuates I need another modelfield?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

You can use ProcessedImageField:

from imagekit.models import ProcessedImageField

class Photo(models.Model):
    original = ProcessedImageField(etcetera)

There is in-code documentation on this class, but it looks like it's not being picked up by readthedocs' autodoc module right now.

I reopened a bug to fix the documentation.

link|improve this answer
feedback

Looking here: https://github.com/jdriscoll/django-imagekit/blob/master/imagekit/processors/resize.py it looks like the Fit class is what you're after.

Untested but I suspect it's something like:

from django.db import models
from imagekit.models import ImageSpec
from imagekit.processors import resize

class Photo(models.Model):
    original_image = models.ImageField(upload_to='photos')
    thumbnail = ImageSpec([resize.Fit(50, 50)], image_field='original_image',
            format='JPEG', options={'quality': 90})
link|improve this answer
No thats just a processor for the thumbnail.. I want to resize the original image on upload.. this used to be possible with a pre processor in previous django imagekits.. Ofcourse I can use some custom PIL processing, but I'd be surprised if it isn't possible by just using imagekit.. – ArgsKwargs Jan 20 at 8:57
Sorry about that. I understand what you're asking now. Have you tried this: stackoverflow.com/questions/2845000/… or is it this methodology that you're saying no longer works? – sgallen Jan 20 at 20:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.