A model ImageField with subject position support
Project description
django-subject-imagefield
This package provides a SubjectImageField
model field which inherits from the core ImageField
and adds support for subject position.
The position coordiantes are stored inside another model field defined as an option (as it occurs with the width and height optional ImageField parameters).
A custom form field and widgets are used in order to allow the user to easily set the image subject dragging a pin over an image preview.
Some convenience properties are added to the attr_class
of the field in order to access the subject position coordinates in a template.
Use it together with some sort of thumbs generator application in order to show always the relevan part of an image, I find it playing well with sorl-thumbnail.
Tested for django >= 1.11
Installation
Install with pip
$ pip install django-subject-imagefield
Add it to your installed apps:
INSTALLED_APPS = {
#...
subject_imagefield,
}
Configuration
You can set the image preview width for the widget:
SUBJECT_IMAGEFIELD = {
'PREVIEW_WIDTH': 500
}
Value is considered as number of pixels, default: 300.
Usage
In you models:
from subject_imagefield.fields import SubjectImageField
class MyModel(models.Model):
image = SubjectImageField('image', upload_to='pages/img', subject_location_field='subject_location')
subject_location = models.CharField('subject coords', max_length=7)
In a django template you've access to the following properties:
- subject_perc_position: a dictionary containing the subject position in percentage coordinates, i.e:
{'x': 15, 'y': 37}
- subject_position: a dictionary containing the subject position coordinates in px relative to the original image dimensions, i.e:
{'x': 700, 'y': 345}
- sorl: a shortcut to get a string used as cropping paramenter for sorl-thumbnail templatetag, i.e:
'15% 37%'
Example:
{% load sorl_thumbnail %}
<p>Perc. subject position: {{ object.image.subject_perc_position }}</p>
<p>Original dimensions subject position: {{ object.image.subject_position }}</p>
<p>Thumb cropped considering subject position:</p>
{% thumbnail object.image "200x800" crop=object.image.sorl as thumb %}
<img src="{{ thumb.url }}" alt="ftw" />
{% endthumbnail %}
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-subject-imagefield-0.2.13.tar.gz
.
File metadata
- Download URL: django-subject-imagefield-0.2.13.tar.gz
- Upload date:
- Size: 7.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3c674dbbaca5fd932cfbad295594b141b073907b774d084153da9235af49e0be |
|
MD5 | 21ca90fe1a9dbb8c4217417abcb470d3 |
|
BLAKE2b-256 | b7876c5211596945709f5dd43ff5ea9f05a5233c5f15625b392480e846f22df7 |
File details
Details for the file django_subject_imagefield-0.2.13-py3-none-any.whl
.
File metadata
- Download URL: django_subject_imagefield-0.2.13-py3-none-any.whl
- Upload date:
- Size: 9.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 05a2472defd3f764d940e532768c8b34c3d0fff6a276b2670108b11650e6f858 |
|
MD5 | 8533251fc3268cab8b8399c54c5bec50 |
|
BLAKE2b-256 | 0350cb194c098a5b4185d74f8090e6377013287c64fb124c70d3299ea32b10b7 |