Skip to content

Instantly share code, notes, and snippets.

View highsineburgh's full-sized avatar

Tyler Field highsineburgh

View GitHub Profile
@highsineburgh
highsineburgh / imagewiththumbnails_updateable.py
Last active April 10, 2018 18:16 — forked from valberg/imagewiththumbnails_updateable.py
Generate a thumbnail on image upload Django
# Extension of http://www.yilmazhuseyin.com/blog/dev/create-thumbnails-imagefield-django/
# updated for Python 3
from django.core.files.storage import FileSystemStorage
from django.core.files.uploadedfile import SimpleUploadedFile
from PIL import Image
import io
import os
from django.conf import settings