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.
|
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.
| |||
|
feedback
|
|
You can resize the image before it is saved as stated in the readme:
Edit: If you want to limit the file size directly, rather than setting the image size, I assume 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. | |||||
feedback
|