Skip to main content

Thumbnails for Django

Project description

travis pypi coveralls

Thumbnails for Django.

Features at a glance

  • Support for Django 1.4, 1.5 and 1.6

  • Python 3 support (for Django 1.5 and Django 1.6)

  • Storage support

  • Pluggable Engine support for Pillow, ImageMagick, PIL, Wand and pgmagick

  • Pluggable Key Value Store support (cached db, redis)

  • Pluggable Backend support

  • Admin integration with possibility to delete

  • Dummy generation (placeholders)

  • Flexible, simple syntax, generates no html

  • ImageField for model that deletes thumbnails

  • CSS style cropping options

  • Back smart cropping, and remove borders from the images when cropping

  • Margin calculation for vertical positioning

  • Alternative resolutions versions of a thumbnail

Read more in the documentation (latest version)

Developers

Feel free to create a new Pull request if you want to propose a new feature. If you need development support or want to discuss with other developers join us in the channel #sorl-thumnbnail at freenode.net

irc://irc.freenode.net/#sorl-thumbnail

Or join us in Gitter.im

https://gitter.im/mariocesar/sorl-thumbnail

How to Use

Get the code

Getting the code for the latest stable release use ‘pip’.

$ pip install sorl-thumbnail

Install in your project

Then register ‘sorl.thumbnail’, in the ‘INSTALLED_APPS’ section of your project’s settings.

INSTALLED_APPS = (
    'django.contrib.auth',
    'django.contrib.admin',
    'django.contrib.sites',
    'django.contrib.comments',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.contenttypes',

    'sorl.thumbnail',
)

Templates Usage

All of the examples assume that you first load the thumbnail template tag in your template.:

{% load thumbnail %}

A simple usage.

{% thumbnail item.image "100x100" crop="center" as im %}
    <img src="{{ im.url }}" width="{{ im.width }}" height="{{ im.height }}">
{% endthumbnail %}

See more examples in the section Template examples in the Documentation

Model Usage

Using the ImageField that automatically deletes references to itself in the key value store and its thumbnail references and the thumbnail files when deleted.:

from django.db import models
from sorl.thumbnail import ImageField

class Item(models.Model):
    image = ImageField(upload_to='whatever')

See more examples in the section Model examples in the Documentation

Low level API

You can use the ‘get_thumbnail’:

from sorl.thumbnail import get_thumbnail
from sorl.thumbnail import delete

im = get_thumbnail(my_file, '100x100', crop='center', quality=99)
delete(my_file)

See more examples in the section Low level API examples in the Documentation

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sorl-thumbnail-11.12.1b.tar.gz (62.3 kB view details)

Uploaded Source

Built Distributions

sorl_thumbnail-11.12.1b-py33-none-any.whl (36.7 kB view details)

Uploaded Python 3.3

sorl_thumbnail-11.12.1b-py27-none-any.whl (36.7 kB view details)

Uploaded Python 2.7

File details

Details for the file sorl-thumbnail-11.12.1b.tar.gz.

File metadata

File hashes

Hashes for sorl-thumbnail-11.12.1b.tar.gz
Algorithm Hash digest
SHA256 6b309388f4c4fbbeec6813ccb3c321ba3245ef2b7de044ed7b26853ec75c05f3
MD5 3e1392b79f7e4b6dc4046f5efc00297f
BLAKE2b-256 c4a11eda1a4675e4e61f8044a0a75a12af7399209e20294e9bee6a824d056f52

See more details on using hashes here.

File details

Details for the file sorl_thumbnail-11.12.1b-py33-none-any.whl.

File metadata

File hashes

Hashes for sorl_thumbnail-11.12.1b-py33-none-any.whl
Algorithm Hash digest
SHA256 fe6e832952365c5cd98dfb84f44fce5a34db66eebb053ac4ba6502cc2ab694d0
MD5 f7e859cfcbe6e66cfe5634e1af001245
BLAKE2b-256 c50bf8949597bde8dd14a0a775d8a965fb4c4dabae3394e0824726a3562b26bd

See more details on using hashes here.

File details

Details for the file sorl_thumbnail-11.12.1b-py27-none-any.whl.

File metadata

File hashes

Hashes for sorl_thumbnail-11.12.1b-py27-none-any.whl
Algorithm Hash digest
SHA256 e4ead059b02684e62cfa0d2c870da22416fe3245d9eb0ac33af0a0ce8bd30da6
MD5 93962ca990fa9bb260c1f4afeb1a4c7a
BLAKE2b-256 e00dcad99b4e972fcf95a319e15e4ad7edc5d102ae16847c9ccfefc09191ae9e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page