Django Daguerre

Louis-Jacques-Mandé Daguerre

Louis Daguerre, Father of Photography

Django Daguerre manipulates images on the fly. Use it to scale images up or down. Use it to generate thumbnails in bulk or sets of responsive images without slowing down your templates. Or customize it to do even more powerful image processing.

You don’t need to run a cron job ahead of time. You don’t need to make any changes to your models. It just works.

{% load daguerre %}
<img src="{% adjust my_model.image "fill" width=200 height=400 %}" />

{% adjust_bulk my_queryset "method.image" "fill" width=200 height=400 as adjusted_list %}
{% for my_model, image in adjusted_list %}
  <img src="{{ image }}" />
{% endfor %}
Code:http://github.com/littleweaver/django-daguerre
Docs:http://readthedocs.org/docs/django-daguerre/
Build status:build-image

Indices and tables