Skip to main content

AJAX driven gallery field for django

Project description

Quick start

1. Svn checkout

svn co http://django-imaging.googlecode.com/svn/trunk/ django-imaging

2. Put "imaging" folder into your python path (easiest way: put it in your django project directory)

3. Put the contents of the media folder in your project's MEDIA_ROOT

Make sure the imaging_photos folder has 777 permissions

4. Add "imaging" to your INSTALLED_APPS tuple in settings.py

5. Include imaging in your urls.py

urlpatterns = patterns('',
(...)
(r'^imaging/', include('imaging.urls')),
(...)
)

Or include('myappname.imaging.urls')

6. Add ImagingField? to desired model

from imaging.fields import ImagingField

class Somemodel(models.Model):
photos = ImagingField()

7. Optionally add a related model field for easy image fetching

from django.contrib.contenttypes import generic
from imaging.fields import ImagingField
from imaging.models import Image

class Somemodel(models.Model):
photos = ImagingField()
photos_set = generic.GenericRelation(Image)

8. Optionally add a custom imaging config to your settings.py

IMAGING_SETTINGS = {
'image_sizes' : [
{
'name':'my_custom_thumb',
'width': 190,
'height': 150,
'aspect': False,
'suffix': '_cus_thb'
},
],
'image_dir' : 'funny_photos',
}

Above example will make django-imaging create only one thumbnail size, without forcing the aspect ratio giving the thumbnail files suffix _cus_thb. The images uploaded will be stored inside MEDIA_ROOT/funny_photos. The image_sizes list can contain an unlimited thumbnail dictionaries. You can easily access a thumbnail of an image model by an auto-created method:

>>> image = Image.objects.get(pk=1)
>>> image.get_my_custom_thumb_url()

So basically the method name is built: get_+thumbnail_name+url()

9. Syncdb to create proper imaging tables.

Have fun :)
Limitations

1. Currently only one ImagingField? per model.
2. Drag'n'drop doesn't work properly in Opera (jquery.ui.sortable related problem)
3. No orphaned images management
4. ManyToMany? relation with an Image not supported
5. Need to add a GenericRelation? field manually, I can't figoure out how to autoadd it
6. Exeptions not handled too well

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-imaging-0.9.8.tar.gz (6.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_imaging-0.9.8-py2.7.egg (17.3 kB view details)

Uploaded Egg

File details

Details for the file django-imaging-0.9.8.tar.gz.

File metadata

File hashes

Hashes for django-imaging-0.9.8.tar.gz
Algorithm Hash digest
SHA256 52d0168ac2ab5094a95f6e76067a8d63bd9577bc24ed96ad27b3447e5bc76bbf
MD5 8b34ac59aff365ad4095c4b5406a386d
BLAKE2b-256 b03bdef7ee66cd8b23e9ce159d942b8640c7e2dd6e7adeda3d078d80c8a5f6a4

See more details on using hashes here.

File details

Details for the file django_imaging-0.9.8-py2.7.egg.

File metadata

File hashes

Hashes for django_imaging-0.9.8-py2.7.egg
Algorithm Hash digest
SHA256 d7c1bc62026845150f92c93c9e66a049604dd53217125a3e40f2b8af769b4634
MD5 5418fae7cfe37b75b4c7a1618981e3ff
BLAKE2b-256 818d9cead9b68606d0b01d71adb95d8ad513807168247393d6d36a2ef0b8508e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page