Skip to main content

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.

screencast

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-subject-imagefield-0.2.10.tar.gz (7.3 kB view details)

Uploaded Source

Built Distribution

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

django_subject_imagefield-0.2.10-py3-none-any.whl (9.2 kB view details)

Uploaded Python 3

File details

Details for the file django-subject-imagefield-0.2.10.tar.gz.

File metadata

File hashes

Hashes for django-subject-imagefield-0.2.10.tar.gz
Algorithm Hash digest
SHA256 6ab1655df94bd30a043c3ffb4eb6aa49434311d7684d6792c48054c5e60eebd4
MD5 4650b9567085eb5f2a66b3c205e2a711
BLAKE2b-256 21e8ee72159167935934fa279036520fe4e9391e4544adefb9fd22976f2924d8

See more details on using hashes here.

File details

Details for the file django_subject_imagefield-0.2.10-py3-none-any.whl.

File metadata

File hashes

Hashes for django_subject_imagefield-0.2.10-py3-none-any.whl
Algorithm Hash digest
SHA256 ea08ae529efa326607963731ecbe519daee403096a7931aebed00e06cc5cdb42
MD5 0e5092ff95777899703bcffa41ad9a7c
BLAKE2b-256 67cbc3ec13086a383d40397137002d8e24d843439597b5a11d8615ba64da7d88

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