-
Notifications
You must be signed in to change notification settings - Fork 4
Home
patrickomatic edited this page Sep 14, 2010
·
6 revisions
Welcome to the django-url-imaging wiki! django-url-imaging is a reusable Django app meant to address the issue of generating thumbnails and various other transformed views of existing images. It works by using a specially-crafted URL (usually embedded in an <img>
) tag. For example if you have an image at /images/foo.gif
and need a thumbnail of it, you could use the following tag:
<img src="/thumb/large/images/foo.gif" />
To get started with django-url-imaging, first check out the Quick Installation Guide After you have installed django-url-imaging, take a look at the Usage Guide for directions on how to get started processing images.