is there a way to set a max size for the images uploaded in my django app using easy-thumbnails app?

In the settings list I don't see anything about it.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

You can resize the image before it is saved as stated in the readme:

By passing a ''resize_source'' argument to the ''ThumbnailerImageField'', you can resize the source image before it is saved::

class Profile(models.Model):
    user = models.ForeignKey('auth.User')
    avatar = ThumbnailerImageField(
        upload_to='avatars',
        resize_source=dict(size=(50, 50), crop='smart'),
    )

Edit: If you want to limit the file size directly, rather than setting the image size, I assume easy-thumbnails uses Django file uploading internally, see

https://docs.djangoproject.com/en/dev/topics/http/file-uploads/

https://docs.djangoproject.com/en/dev/topics/files/

Generally, but specifically,

https://docs.djangoproject.com/en/dev/ref/settings/#std:setting-FILE_UPLOAD_MAX_MEMORY_SIZE

Controls the maximum size of a file that can be uploaded. By default, it's 2.5 megabytes, so you might not need to change anything at all.

link|improve this answer
Sorry, I mean the file size, not size as resolution. For example max size = 2MB. – Fred Collins Jul 20 '11 at 16:17
Change the FILE_UPLOAD_MAX_MEMORY_SIZE setting. By default it's 2.5MB – agf Jul 20 '11 at 16:23
feedback

Your Answer

 
or
required, but never shown

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