Sophie

Sophie

distrib > Mageia > 5 > i586 > media > core-release > by-pkgid > b17ed897c34853a0a39ef25ab5d3af32 > files > 53

python3-pillow-doc-2.6.2-2.mga5.noarch.rpm

.. py:module:: PIL.ExifTags
.. py:currentmodule:: PIL.ExifTags

:py:mod:`ExifTags` Module
==========================

The :py:mod:`ExifTags` module exposes two dictionaries which
provide constants and clear-text names for various well-known EXIF tags.

.. py:class:: PIL.ExifTags.TAGS

    The TAG dictionary maps 16-bit integer EXIF tag enumerations to
    descriptive string names.  For instance:

        >>> from PIL.ExifTags import TAGS
        >>> TAGS[0x010e]
        'ImageDescription'

.. py:class:: PIL.ExifTags.GPSTAGS

    The GPSTAGS dictionary maps 8-bit integer EXIF gps enumerations to
    descriptive string names.  For instance:

        >>> from PIL.ExifTags import GPSTAGS
        >>> GPSTAGS[20]
        'GPSDestLatitude'