Resizes image origin to specified size.
Project description
# django-resized
Resizes image origin to specified size. Compatible with sorl-thumbnail.
## Installation
pip install django-resized
# Configuration (optional)
settings.py
DJANGORESIZED_DEFAULT_SIZE = [1920, 1080] DJANGORESIZED_DEFAULT_QUALITY = 75
## Usage
models.py
from django_resized import ResizedImageField
- class MyModel(models.Model):
… image1 = ResizedImageField(size=[500, 300], upload_to=’whatever’) image2 = ResizedImageField(size=[100, 100], crop=[‘top’, ‘left’], upload_to=’whatever’) image3 = ResizedImageField(size=[100, 100], crop=[‘middle’, ‘center’], upload_to=’whatever’) image4 = ResizedImageField(size=[500, 300], height=300, quality=75, upload_to=’whatever’)
### Options
size - max width and height, for example [640, 480] crop - resize and crop. [‘top’, ‘left’] - top left corner, [‘middle’, ‘center’] is center cropping, [‘bottom’, ‘right’] - crop right bottom corner. quality - quality of resized image 1..100
## How to run tests
pip install -r django_resized/testapp/requirements.txt ./runtests.py
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
File details
Details for the file django-resized-0.3.0.tar.gz.
File metadata
- Download URL: django-resized-0.3.0.tar.gz
- Upload date:
- Size: 2.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f7ce899407515adc42ff1283bc52dcc55728b10fba5c4572093e2716641e6d3a
|
|
| MD5 |
c9c002a904d50c623c21d4370619818a
|
|
| BLAKE2b-256 |
6cc66870db1fd96841b2a22d3d5091e48f447844a98c624894d84d663941098a
|