django-thumbnailfield is an enhanced ImageField of Django.
Install
sudo pip install django-thumbnailfield
Prepare to use
1. Append 'thumbnailfield' to ``INSTALLED_APPS``
2. Set ``MEDIA_ROOT`` correctly. For example::
MEDIA_ROOT = os.path.join(os.path.dirname(__file__), '../static')
Product's homepage
Here are some key features of "django-thumbnailfield":
· Using Django storage system to store the image (Not like other Thumbnail library)
· Automatically remove previous file from storage
· Automatically generate thumbnails
· Automatically remove generated previous thumbnail files from storage
· Easy to use custom method to generate thumbnails
Requirements:
· Python
· Django