Skip to main content

A wagtail module for creating an image field with annotation metadata

Project description

Allows users to combine a Wagtail images with custom annotation data. Annotations are entered in the admin by clicking points on an image, annotation data is then stored with relative x,y coordinates and optional extra form data.

https://giant.gfycat.com/SpeedyHospitableHornet.gif

Requirements

  • Wagtail >= 2.7

  • Django >= 2.0

Installing

Install using pypi

pip install wagtailannotatedimage

Using

Extend the BaseAnnotationForm to define what data should be stored with annotations. AnnotationsField stores the annotations data as json, converting to a dict on retrieval.

from django import forms
from django.db import models
from wagtail.wagtailcore.models import Page
from wagtailannotatedimage.edit_handlers import AnnotatedImagePanel
from wagtailannotatedimage.fields import AnnotationsField
from wagtailannotatedimage.forms import BaseAnnotationForm

class AnnotationForm(BaseAnnotationForm):
    title = forms.CharField()
    about = forms.TextField()

class TestPage(Page):
    image = models.ForeignKey('wagtailimages.Image', blank=True, null=True,
                              on_delete=models.SET_NULL, related_name="+")
    annotations = AnnotationsField(blank=True)

    content_panels = Page.content_panels + [
        # First parameter - name of the image field
        # Second parameter - name of the annotation field
        # annotation_form - optional, the form used for annotations if you need to store data for each point
        AnnotatedImagePanel(
            'image', 'annotations',
            annotation_form=AnnotationForm(), heading='Annotated Image'
        )
    ]
<div class='image-container'>
    {% image page.image('width-500') %}

    {% for annotation in page.annotations %}
    <div
        class='annotation'
        style="left: {{ annotation.x * 100 }}%; top: {{ annotation.y * 100 }}%;"
    >
        <h3>{{ annotation.fields.title }}</h3>
        <p>{{ annotation.fields.about }}</p>
    </div>
    {% endfor %}
</div>
.image-container {
    position: relative;
}

.image-container > img {
    width: 100%;
    height: auto;
}

.annotation {
    position: absolute;
}

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

wagtailannotatedimage-2.7.0.tar.gz (10.8 kB view details)

Uploaded Source

Built Distribution

wagtailannotatedimage-2.7.0-py2.py3-none-any.whl (16.0 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file wagtailannotatedimage-2.7.0.tar.gz.

File metadata

  • Download URL: wagtailannotatedimage-2.7.0.tar.gz
  • Upload date:
  • Size: 10.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/33.1.1 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.5.3

File hashes

Hashes for wagtailannotatedimage-2.7.0.tar.gz
Algorithm Hash digest
SHA256 55f8d49e06456a8f8b8be19647a7c26c680558b9c5195f0ff471cf1614eaaa9d
MD5 26071719072848dea0de6b7fbb74cdb7
BLAKE2b-256 9a69e932760e5501bd202270fc3d101722f2f8ccc94c356fc6b9e135e919506a

See more details on using hashes here.

File details

Details for the file wagtailannotatedimage-2.7.0-py2.py3-none-any.whl.

File metadata

  • Download URL: wagtailannotatedimage-2.7.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 16.0 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/33.1.1 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.5.3

File hashes

Hashes for wagtailannotatedimage-2.7.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 3c3e98406dc0f1c4a48cb26ddf7528c6ff51bd1b991dcf7a1dd8a648b8d7bd28
MD5 29aac3c245239c8806037c56873bfa01
BLAKE2b-256 51b690da9111e0eeaa94ab0713cbc5eb3b9ac5b625b487d673d108c2c83b1443

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page