I'm trying to resize an image while saving an instance of my model.

class Picture(models.Model):
  image_file = models.ImageField(upload_to="pictures")
  thumb_file = models.ImageField(upload_to="pictures", editable=False)
  def save(self, force_insert=False, force_update=False):
    image_object = Image.open(self.image_file.path)
    #[...] nothing yet
    super(Picture, self).save(force_insert, force_update)

The problem is that self.image_file.path does not exist before the model is being saved. It returns a correct path, but the image is not there yet. Since there is no image, I can't open it in PIL for resize.

I want to store the thumbnail in thumb_file (another ImageField), so I need do the processing before saving the model.

Is there a good way to open the file (maybe get the tmp image object in memory) or do I have to save the whole model first, resize and then save again ?

link|improve this question

71% accept rate
feedback

2 Answers

Maybe you can open the file directly and pass the resulting file handle to Image.open:

image_object = Image.open(self.image_file.open())

Sorry, I can't test that now.

link|improve this answer
no it doesn't work either .. >'NoneType' object has no attribute 'read' – JasonTS Jan 8 at 12:49
feedback

I used this snippet:

import Image

def fit(file_path, max_width=None, max_height=None, save_as=None):
    # Open file
    img = Image.open(file_path)

    # Store original image width and height
    w, h = img.size

    # Replace width and height by the maximum values
    w = int(max_width or w)
    h = int(max_height or h)

    # Proportinally resize
    img.thumbnail((w, h), Image.ANTIALIAS)

    # Save in (optional) 'save_as' or in the original path
    img.save(save_as or file_path)

    return True

And in models:

def save(self, *args, **kwargs):
    super(Picture, self).save(*args, **kwargs)
    if self.image:
        fit(self.image_file.path, settings.MAX_WIDTH, settings.MAX_HEIGHT)
link|improve this answer
that works, but i want to store the thumb in another imagefield.. that's why i have to do the resize before saving the model. – JasonTS Jan 8 at 14:18
no problem, create new image in fit function with prefix in name. Ex "t_". And in model add function wich return path to your thumb. – Denis Kabalkin Jan 8 at 15:05
Or use external library, ex: sorl – Denis Kabalkin Jan 8 at 15:07
1  
No, i do not mean create new ImageField. I mean create new image file for thumb (on yor hdd). And in model: def thumb: return "%st_%s" % (path_to_image, image_name) – Denis Kabalkin Jan 9 at 8:36
1  
Add ImageField(blank=True, null=True) into model. In save: do resize and fill thumb ImageField data. – Denis Kabalkin Jan 9 at 13:45
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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