I want to resize the new images in a height and width of 800px and save them. And the app mustn't store the real image. Any help?

This is my code, it saves the original image and don't the resized photo:

models.py:

class Photo(models.Model):        
    photo = models.ImageField(upload_to='photos/default/')


    def save(self):

        if not self.id and not self.photo:
            return            

        super(Photo, self).save()

        image = Image.open(self.photo)
        (width, height) = image.size

        "Max width and height 800"        
        if (800 / width < 800 / height):
            factor = 800 / height
        else:
            factor = 800 / width

        size = ( width / factor, height / factor)
        image.resize(size, Image.ANTIALIAS)
        image.save(self.photo.path)
link|improve this question

78% accept rate
what's wrong with the code you have? You haven't said what it's doing wrong. The code you've shown will save the image to the DB. If you don't want to save the un-resized image you have to resize if before it's saved - i.e. at the form level – Timmy O'Mahony Nov 1 '11 at 18:13
@pastylegs At the form level which method I should be use and how? – beni Nov 1 '11 at 18:29
Are you uploading through the django admin or using a custom form? – Timmy O'Mahony Nov 1 '11 at 19:04
Throug a custom form. The first answer solves my problem. Thanks. – beni Nov 1 '11 at 19:29
feedback

2 Answers

up vote 1 down vote accepted
image = image.resize(size, Image.ANTIALIAS)

resize is non-destructive, it returns a new image.

link|improve this answer
I know, but how I save the resized photo without saving the original? – beni Nov 1 '11 at 18:39
1  
replace the line "image.resize(size, Image.ANTIALIAS)" with "image = image.resize(size, Image.ANTIALIAS)" Right now you're resizing but ignoring the result and saving the original image. – wmil Nov 1 '11 at 18:42
feedback

If you're using python < 3, you should consider using :

from __future__ import division

In this case the result number of your division will be float.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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