django-thumbs

The easiest way to create thumbnails for your images with Django
Download

django-thumbs Ranking & Summary

Advertisement

  • Rating:
  • License:
  • BSD License
  • Price:
  • FREE
  • Publisher Name:
  • Antonio Mele
  • Publisher web site:
  • https://github.com/skitoo/

django-thumbs Tags


django-thumbs Description

django-thumbs is a Django app that offers the easiest way to create thumbnails for your images with Django. Works with any StorageBackend.Getting ItYou can get Django-Thumbs by using pip or easy_install: pip install django-thumbsor easy_install django-thumbsIf you want to install it from source, grab the git repository from github and run setup.py: git clone git://github.com/skitoo/django-thumbs.git cd django-thumbs python setup.py installInstallation- Import it in your models.py and replace ImageField with ImageWithThumbsField in your model- Add a sizes attribute with a list of sizes you want to use for the thumbnails- Make sure your have defined MEDIA_URL in your settings.py- That's it!Working examplefrom django.db import modelsfrom django_thumbs.db.models import ImageWithThumbsFieldclass Person(models.Model): photo = ImageWithThumbsField(upload_to='images', sizes=((125,125),(200,200))) second_photo = ImageWithThumbsField(upload_to='images')In this example we have a Person model with 2 image fields.You can see the field second_photo doesn't have a sizes attribute. This field works exactly the same way as a normal ImageField.The field photo has a sizes attribute specifying desired sizes for the thumbnails. This field works the same way as ImageField but it also creates the desired thumbnails when uploading a new file and deletes the thumbnails when deleting the file.With ImageField you retrieve the URL for the image with: someone.photo.url With ImageWithThumbsField you retrieve it the same way. You also retrieve the URL for every thumbnail specifying its size: In this example we use someone.photo.url_125x125 and someone.photo.url_200x200 to get the URL of both thumbnails.UninstallAt any time you can go back and use ImageField again without altering the database or anything else. Just replace ImageWithThumbsField with ImageField again and make sure you delete the sizes attribute. Everything will work the same way it worked before using django-thumbs. Just remember to delete generated thumbnails in the case you don't want to have them anymore.Product's homepage


django-thumbs Related Software