Easy thumbnails for Django
Project description
A powerful, yet easy to implement thumbnailing application for Django.
Below is a quick summary of usage. For more comprehensive information, view the full documentation online or the peruse the project’s docs directory.
Installation
Run pip install easy_thumbnails, or for the in-development version run pip install easy_thumbnails==dev.
Add easy_thumbnails to your INSTALLED_APPS setting:
INSTALLED_APPS = ( ... 'easy_thumbnails', )
If you have South installed then run manage.py migrate easy_thumbnails, otherwise just run manage.py syncdb.
Example usage
Thumbnail options can be predefined in settings.THUMBNAIL_ALIASES or just specified in the template or Python code when run.
Using a predefined alias
Given the following setting:
THUMBNAIL_ALIASES = { '': { 'avatar': {'size': (50, 50), 'crop': True}, }, }
Template:
{% load thumbnail %} <img src="{{ profile.photo|thumbnail_url:'avatar' }}" alt="">
Python:
from easy_thumbnails.files import get_thumbnailer thumb_url = get_thumbnailer(profile.photo)['avatar'].url
Manually specifying size / options
Template:
{% load thumbnail %} <img src="{% thumbnail profile.photo 50x50 crop %}"
Python:
from easy_thumbnails.files import get_thumbnailer options = {'size': (100, 100), 'crop': True} thumb_url = get_thumbnailer(profile.photo).get_thumbnail(options).url
Fields
You can use ThumbnailerImageField (or ThumbnailerFileField) for easier access to retrieve or generate thumbnail images, or to .
For example:
from easy_thumbnails.fields import ThumbnailerImageField class Profile(models.Model): user = models.OneToOneField('auth.User') photo = ThumbnailerImageField(upload_to='photos', blank=True)
Accessing the field’s predefined alias in a template:
{% load thumbnail %} <img src="{{ profile.photo.avatar.url }}" alt="">
Accessing the field’s predefined alias in Python code:
thumb_url = profile.photo['avatar'].url
Thumbnail options
crop
Before scaling the image down to fit within the size bounds, it first cuts the edges of the image to match the requested aspect ratio.
Use crop="smart" to try to keep the most interesting part of the image,
Use crop="0,10" to crop from the left edge and a 10% offset from the top edge. Crop from a single edge by leaving dimension empty (e.g. crop=",0"). Offset from the right / bottom by using negative numbers (e.g., crop=”-0,-10”).
Often used with the upscale option, which will allow enlarging of the image during scaling.
quality=XX
Changes the quality of the output JPEG thumbnail. Defaults to 85.
In Python code, this is given as a separate option to the get_thumbnail method rather than just alter the other
Other options
Valid thumbnail options are determined by the “thumbnail processors” installed.
See the reference documentation for a complete list of options provided by the default thumbnail processors.
Changes
dev
Introduced a thumbnail_created signal.
1.0
Introduction of aliased thumbnails.
Start of sane versioning numbers.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file easy-thumbnails-1.0.1.tar.gz
.
File metadata
- Download URL: easy-thumbnails-1.0.1.tar.gz
- Upload date:
- Size: 49.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 650c3543df30dd701cdb51d159507287a5df8562dab6eb81813e7db050c4f53a |
|
MD5 | ec8071baa21389f93a0b88f615c9f56d |
|
BLAKE2b-256 | 7995adfa2396526a8a65fc933b4098085f530a384e870f2eda13fdba793845fb |