A Django app for fetching resized and/or cropped images through a url.
Project description
Django Resizer
==============
Django Resizer allows images to be dynamically resized and/or cropped through a URL. This is very useful when you have a third-party "hot-linking" your images and they won't have access to template tag to dynamically resize images like [easy-thumbnails](https://github.com/SmileyChris/easy-thumbnails) or [sorl-thumbnail](https://github.com/sorl/sorl-thumbnail) provides.
Installation
------------
Run `pip install django-resizer`
Add `resizer` to your `INSTALLED_APPS` setting:
```python
INSTALLED_APPS = (
...
'resizer',
)
```
To your sites `url.py` add:
```python
urlpatterns = patterns('',
...
url(r'^resizer/(?P<path>.*)/$', 'resizer.views.resize', name='image_resize'),
)
```
Usage
-----
The resizing and cropping capabilities rely on the easy-thumbnails app.
To resize an image with a height and width of no more than 50px and with the image ratio perserved:
`/resizer/images/picture.jpg?size=50,50`
The path after `/resizer` should be the path to the image from your settings `MEDIA_ROOT`. The query string should be `size=[width],[height]`.
To resize an image to have a height and width of extactly 50px:
`/resizer/images/picture.jpg?size=50,50&crop=smart`
==============
Django Resizer allows images to be dynamically resized and/or cropped through a URL. This is very useful when you have a third-party "hot-linking" your images and they won't have access to template tag to dynamically resize images like [easy-thumbnails](https://github.com/SmileyChris/easy-thumbnails) or [sorl-thumbnail](https://github.com/sorl/sorl-thumbnail) provides.
Installation
------------
Run `pip install django-resizer`
Add `resizer` to your `INSTALLED_APPS` setting:
```python
INSTALLED_APPS = (
...
'resizer',
)
```
To your sites `url.py` add:
```python
urlpatterns = patterns('',
...
url(r'^resizer/(?P<path>.*)/$', 'resizer.views.resize', name='image_resize'),
)
```
Usage
-----
The resizing and cropping capabilities rely on the easy-thumbnails app.
To resize an image with a height and width of no more than 50px and with the image ratio perserved:
`/resizer/images/picture.jpg?size=50,50`
The path after `/resizer` should be the path to the image from your settings `MEDIA_ROOT`. The query string should be `size=[width],[height]`.
To resize an image to have a height and width of extactly 50px:
`/resizer/images/picture.jpg?size=50,50&crop=smart`
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
django-resizer-1.0.zip
(8.0 kB
view details)
File details
Details for the file django-resizer-1.0.zip
.
File metadata
- Download URL: django-resizer-1.0.zip
- Upload date:
- Size: 8.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d8c627b6364fc26a393bd5e1692b315f4b71ef49bb52467351a7bd6aceae4314 |
|
MD5 | 8a38066c5a0b05058f1da7459e7f94ed |
|
BLAKE2b-256 | fee3f50dd27172205d88ed1c8c18ec27bf18215cd106e0be041f252bb0d8bca0 |