Installation
This fork requires Python 3.9+ and Django 4.2+. Image manipulation is handled by Pillow (a fork of the Python Imaging Library / PIL), which is installed automatically as a dependency.
Installing easy-thumbnails
Install the package from PyPI with pip:
pip install fdemmer-easy-thumbnails
To also thumbnail SVG images, install with the svg extra, which pulls
in svglib and reportlab:
pip install fdemmer-easy-thumbnails[svg]
See Scalable Vector Graphic Support for details on SVG support.
Configuring your project
In your Django project’s settings module, add easy-thumbnails to your
INSTALLED_APPS setting:
INSTALLED_APPS = (
...
'easy_thumbnails',
)
Run python manage.py migrate easy_thumbnails.
You’re done! You’ll want to head on over now to the usage documentation.