ExifTags Module
The ExifTags
module exposes two dictionaries whichprovide constants and clear-text names for various well-known EXIF tags.
- class
PIL.ExifTags.
TAGS
- The TAG dictionary maps 16-bit integer EXIF tag enumerations todescriptive string names. For instance:
- >>> from PIL.ExifTags import TAGS
- >>> TAGS[0x010e]
- 'ImageDescription'
- class
PIL.ExifTags.
GPSTAGS
- The GPSTAGS dictionary maps 8-bit integer EXIF gps enumerations todescriptive string names. For instance:
- >>> from PIL.ExifTags import GPSTAGS
- >>> GPSTAGS[20]
- 'GPSDestLatitude'
当前内容版权归 pillow-zh-cn 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 pillow-zh-cn .