vote up 0 vote down star

Hi, please excuse me for my ugly english :p

I've created this simple model class, with a Preprocessor to reduce my photos'quality (the photos'extension is .JPG):

from django.db import models
from imagekit.models import ImageModel
from imagekit.specs import ImageSpec
from imagekit import processors

class Preprocessor(ImageSpec):
    quality = 50
    processors = [processors.Format]

class Picture(ImageModel):
    image = models.ImageField(upload_to='pictures')

    class IKOptions:
        preprocessor_spec = Preprocessor

The problem : pictures'quality are not reduced. :( Any idea to fix it ?

Thank you very much ;)

flag

56% accept rate

2 Answers

vote up 0 vote down

I too deployed the same scenario but the problem persists

link|flag
vote up 0 vote down

I just tried your example using the latest checkout from the django-imagekit project page and it worked just fine. I lowered the quality to 10 and the difference was obvious. Are you still having issues with this?

link|flag

Your Answer

Get an OpenID
or

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