[Answer]-Verify image height, width and filetype before uploading with ImageField in Django

1👍

You can use a library like Pillow to do so:

from PIL import Image

image=Image.open(filepath)
image.size # (width,height) tuple
image.format # (keeps the image format)

You can find more information at the official documentation:

http://pillow.readthedocs.org/en/latest/

Leave a comment