A django application to resize images using the thumbor service.
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)
There is an extra parameter to specify an endpoint to be appended to your settings.THUMBOR_SERVER
.
On templates:
{% load thumbor_tags %}
<img src="{% thumbor_url '/media/image.jpg' '/foo' width=300 %}" width="300" />
On code:
from django_thumbor import generate_url
resized = generate_url("/media/image.jpg", endpoint='/foo', width=300)
pip install django-thumbor
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'
# Default arguments passed to the `generate_url` helper or
# the `thumbor_url` templatetag
THUMBOR_ARGUMENTS = {}
Fork, clone, create a virtualenv and run:
git clone git://github.com/ricobl/django-thumbor.git
mkvirtualenv django-thumbor
make install
Add tests on testproject/tests
, add code and run:
make test