CookBook - Validate an image weight

To check the weight an image uploaded via your form, you can implement this method into your view.py or custom manipulator.

Code

Here we check that the image under 100 kb.

def isValideSize(field_data, all_data):
	if len(field_data["content"]) > 100000: # 100,000 bytes 
		raise validators.ValidationError, "File is too large"
Last modified 18 years ago Last modified on Feb 24, 2006, 4:23:03 AM
Note: See TracWiki for help on using the wiki.
Back to Top