Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I resize an image file uploaded with Django using an ImageField Model? [closed]

What is the most straightforward method to resize an image file uploaded via a Django form as an ImageField?

like image 264
Ivan Š Avatar asked Mar 20 '13 09:03

Ivan Š


2 Answers

I was annoyed that I couldn't find a complete working example, only bits here and there. I managed to put the solution together myself. Here is the complete example, I put it in clean() method of the form (you can also override models save() method, in the completely same way - changing ImageField's file property).

import StringIO
from PIL import Image

image_field = self.cleaned_data.get('image_field')
image_file = StringIO.StringIO(image_field.read())
image = Image.open(image_file)
w, h = image.size

image = image.resize((w/2, h/2), Image.ANTIALIAS)

image_file = StringIO.StringIO()
image.save(image_file, 'JPEG', quality=90)

image_field.file = image_file
like image 100
Ivan Š Avatar answered Nov 18 '22 15:11

Ivan Š


You could use PIL and resize the image in YourModel.save() method.

Examples:

resize image on save

http://djangosaur.tumblr.com/post/422589280/django-resize-thumbnail-image-pil

http://davedash.com/2009/02/21/resizing-image-on-upload-in-django/

like image 7
Efrin Avatar answered Nov 18 '22 13:11

Efrin