Django Standarized Image Field
Project description
Django Standarized Image Field
Django Field that implement the following features:
Django-Storages compatible (S3)
Resize images to different sizes
Access thumbnails on model level, no template tags required
Preserves original image
Allow image deletion
Rename files to a standardized name (using a callable upload_to)
Installation
Install latest PIL - there is really no reason to use this package without it
easy_install django-stdimage
or
pip django-stdimage
Put ‘stdimage’ in the INSTALLED_APPS
Usage
Import it in your project, and use in your models.
Example:
from stdimage import StdImageField class MyClass(models.Model): # works as ImageField image1 = StdImageField(upload_to='path/to/img') # can be deleted through admin image2 = StdImageField(upload_to='path/to/img', blank=True) # creates a thumbnail resized to maximum size to fit a 100x75 area image3 = StdImageField(upload_to='path/to/img', variations={'thumbnail': (100, 75)}) # creates a thumbnail resized to 100x100 croping if necessary image4 = StdImageField(upload_to='path/to/img', variations={'thumbnail': (100, 100, True}) # all previous features in one declaration image_all = StdImageField(upload_to='path/to/img', blank=True, variations={'large': (640, 480), 'thumbnail': (100, 100, True)})
For using generated thumbnail in templates use “myimagefield.thumbnail”. Example:
<a href="{{ object.myimage.url }}"><img alt="" src="{{ object.myimage.thumbnail.url }}"/></a>
About image names
By default StdImageField stores images without modifying the file name. If you want to use more consistent file names you can use the build in upload functions. Example:
from stdimage import StdImageField, UPLOAD_TO_CLASS_NAME, UPLOAD_TO_CLASS_NAME_UUID, UPLOAD_TO_UUID from functools import partial class MyClass(models.Model) # Gets saved to MEDIA_ROOT/myclass/#FILENAME#.#EXT# image1 = StdImageField(upload_to=UPLOAD_TO_CLASS_NAME) # Gets saved to MEDIA_ROOT/myclass/pic.#EXT# image2 = StdImageField(upload_to=partial(UPLOAD_TO_CLASS_NAME, name='pic')) # Gets saved to MEDIA_ROOT/images/#UUID#.#EXT# image3 = StdImageField(upload_to=partial(UPLOAD_TO_UUID, path='images')) # Gets saved to MEDIA_ROOT/myclass/#UUID#.#EXT# image4 = StdImageField(upload_to=UPLOAD_TO_CLASS_NAME_UUID)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django-stdimage-0.4.2.tar.gz
.
File metadata
- Download URL: django-stdimage-0.4.2.tar.gz
- Upload date:
- Size: 5.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 407e94ab41689b7f1eac0069687229bdec061b25596d1359d6bf3814b47d4fab |
|
MD5 | 671bbf950717ca8f54e05c767ea4f447 |
|
BLAKE2b-256 | ec2f71fe6b9d6ef9fded3958e648c7249e4192ab438bf089ee15afbb8c3a228d |
Provenance
File details
Details for the file django-stdimage-0.4.2.macosx-10.9-intel.exe
.
File metadata
- Download URL: django-stdimage-0.4.2.macosx-10.9-intel.exe
- Upload date:
- Size: 67.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4cbfba8066c4f4d92da54efdd423b5c952a41d5d305f2c5e7d9290fe5582f1b6 |
|
MD5 | 25bcf73cd6e2ef991023561fb9c85fda |
|
BLAKE2b-256 | 7ec1faa54e2428abc3b62e37e3b128a7df209211dbeab1bcb4a7d0c262003dfc |