Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7989423
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T12:44:54+00:00 2026-06-04T12:44:54+00:00

I’m working my way through a tutorial on how to up load images, and

  • 0

I’m working my way through a tutorial on how to up load images, and I’m at a complete loss on the method this guy uses to generate a thumbnail for submitted pictures

Here’s a trimmed down chunk of his code:

import os.path
from PIL import Image as PImage
from settings import MEDIA_ROOT
from tempfile import *

class Image(models.Model):
    image = models.FileField(upload_to="images/")
    thumbnail = models.ImageField(upload_to="images/", blank=True, null=True)

    def save(self, *args, **kwargs):
        super(Image, self).save(*args, **kwargs)
        im = PImage.open(pjoin(MEDIA_ROOT, self.image.name))

        fn, ext = os.path.splitext(self.image.name)
        im.thumbnail((128,128), PImage.ANTIALIAS)
        thumb_fn = fn + "-thumb" + ext
        tf = NamedTemporaryFile()
        im.save(tf.name, "JPEG")
        self.thumbnail.save(thumb_fn, File(open(tf.name)), save=False)
        tf.close()

        super(Image, self).save(*args, ** kwargs)

so my specific questions about this are:

  1. Any reason he uses FileField for the image and ImageField for the thumbnail?
  2. From what I understand, super(Image, self).save(*args, **kwargs) saves the model. but why does he call it again at the end?
  3. Then I don’t really understand the role NamedTemporaryFile() plays and what exactly happens when self.thumbnail.save(thumb_fn, File(open(tf.name)), save=False) is called
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T12:44:56+00:00Added an answer on June 4, 2026 at 12:44 pm
    1. I would use ImageField for the main image as well. ImageField
      inherits from FileField but ensures that only image files can be
      uploaded, among other things:
      https://docs.djangoproject.com/en/dev/ref/models/fields/#django.db.models.ImageField

    2. First save() saves the image object to DB, but it has (supposedly) no thumbnail set yet. Second save() call updates the DB with the changes made to the instance (thumbnail added).

      He sets the thumbnail field with
      self.thumbnail.save(thumb_fn, File(open(tf.name)), save=False),
      but that only saves the thumbnail to a file in the appropriate location and fills in the instance’s thumbnail attr with the path to it. You then need to call save() on the Image instance again to update the changes on the object to DB (thumbnail added).

    3. The code is reading the uploaded main image file and with that image in memory composes the thumbnail from it (in memory, it does not exist as a file yet).

      But that thumbnail needs to be saved on a file so it can be used with Django ImageFile (that expects an uploaded file temporarily saved on disk) and that is what he is doing with NamedTemporaryFile.

      The ImageFile instance takes then care of copying that file to the appropriate location (set with your MEDIA_ROOT setting + the upload_to argument).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
link Im having trouble converting the html entites into html characters, (&# 8217;) i
For some reason, after submitting a string like this Jack’s Spindle from a text
this is what i have right now Drawing an RSS feed into the php,
I have this code to decode numeric html entities to the UTF8 equivalent character.
I have this code: - (void)parser:(NSXMLParser *)parser foundCDATA:(NSData *)CDATABlock { NSString *someString = [[NSString
Does anyone know how can I replace this 2 symbol below from the string
I am trying to loop through a bunch of documents I have to put
I'm working with an upstream system that sometimes sends me text destined for HTML/XML

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.