Skip to main content

A django application to resize images using the thumbor service

Project description

https://travis-ci.org/ricobl/django-thumbor.png?branch=master

A django application to resize images using the thumbor service.

Usage

Both thumbor_url templatetag and the generate_url helper uses the same arguments as libthumbor, you can check the wiki for more info.

On templates:

{% load thumbor_tags %}
<img src="{% thumbor_url '/media/image.jpg' width=300 %}" width="300" />

On code:

from django_thumbor import generate_url
resized = generate_url("/media/image.jpg", width=300)

Installation

pip install django-thumbor

Configuration

Add the app to the INSTALLED_APPS:

INSTALLED_APPS = (
    # ...
    'django_thumbor',
)

Here are the default settings that you can override:

# The host serving the thumbor resized images
THUMBOR_SERVER = 'http://localhost:8888'

# The prefix for the host serving the original images
# This must be a resolvable address to allow thumbor to reach the images
THUMBOR_MEDIA_URL = 'http://localhost:8000/media'

# The same security key used in the thumbor service to
# match the URL construction
THUMBOR_SECURITY_KEY = 'MY_SECURE_KEY'

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

django-thumbor-0.2.tar.gz (2.4 kB view details)

Uploaded Source

File details

Details for the file django-thumbor-0.2.tar.gz.

File metadata

File hashes

Hashes for django-thumbor-0.2.tar.gz
Algorithm Hash digest
SHA256 da127e3859e226b14225718b8c7d1565034586e02864107ff747f1973d82eff2
MD5 eba6cdb4e3c4cded67b66a224e10ce3c
BLAKE2b-256 e0b71eadbcaaaa316e37d6656f274695fba0dd39976841b8419ceeeb8da648c5

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