I have an ImageField in my form. How would I enforce a file size min/max, something like --
image = forms.ImageField(max_size = 2MB)
or
image = forms.ImageField(min_size = 100k)
Thank you.
|
I have an ImageField in my form. How would I enforce a file size min/max, something like --
or
Thank you. |
|||
|
|
|
models.py
forms.py
|
||||
|
|
Essentially this is a duplicate of Django File upload size limit You have two options:
As @pastylegs says in the comments, using a combination of both is probably the best approach. Say you want a maximum of 5MB, perhaps enforce a 20MB limit at the Web server level, and the 5MB limit at the Django level. The 20MB limit would provide some protection against malicious users, while the 5MB limit in Django provides good UX. |
|||||||
|