Sophie

Sophie

distrib > Mageia > 7 > armv7hl > by-pkgid > e5936adde9b1ea7ed6dc23c107bda8ab > files > 91

python3-pillow-doc-5.4.1-1.1.mga7.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'