Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

2 Answers

up vote 16 down vote accepted

models.py

class Product(models.Model):
    image = models.ImageField(upload_to="/a/b/c/")

forms.py

class ProductForm(forms.ModelForm):
     # Add some custom validation to our image field
     def clean_image(self):
         image = self.cleaned_data.get('image',False)
         if image:
             if image._size > 4*1024*1024:
                   raise ValidationError("Image file too large ( > 4mb )")
             return image
         else:
             raise ValidationError("Couldn't read uploaded image")
share|improve this answer
There should not be a colon after line 4 in the forms.py code, but it won't let me make a change less than 6 characters. Be careful if you are copying and pasting this code (not that you should copy+paste any code). – Evan R. Nov 1 '11 at 0:50

Essentially this is a duplicate of Django File upload size limit

You have two options:

  1. Use validation in Django to check the uploaded file's size. The problem with this approach is that the file must be uploaded completely before it is validated. This means that if someone uploads a 1TB file, you'll probably run out of hard drive space before the user gets a form error.

  2. Configure the Web server to limit the allowed upload body size. e.g. if using Apache, set the LimitRequestBody setting. This will mean if a user tries to upload too much, they'll get an error page configurable in Apache

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.

share|improve this answer
1  
A mix of both is probably a good idea. Limit all uploads to something sensible via apache/nginx etc (50mb maybe) and then make it more specific at the application level – Timmy O'Mahony Jun 1 '11 at 3:01
@pastylegs I agree, this is the approach I would take too. – bradley.ayers Jun 1 '11 at 3:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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