ExifTags 模块

ExifTags 模块公开几个 enum.IntEnum 类,它们为各种众所周知的 EXIF 标记提供常量和明文名称。

PIL.ExifTags.Base[source]
>>> from PIL.ExifTags import Base
>>> Base.ImageDescription.value
270
>>> Base(270).name
'ImageDescription'
PIL.ExifTags.GPS[source]
>>> from PIL.ExifTags import GPS
>>> GPS.GPSDestLatitude.value
20
>>> GPS(20).name
'GPSDestLatitude'
PIL.ExifTags.Interop[source]
>>> from PIL.ExifTags import Interop
>>> Interop.RelatedImageFileFormat.value
4096
>>> Interop(4096).name
'RelatedImageFileFormat'
PIL.ExifTags.IFD[source]
>>> from PIL.ExifTags import IFD
>>> IFD.Exif.value
34665
>>> IFD(34665).name
'Exif
PIL.ExifTags.LightSource[source]
>>> from PIL.ExifTags import LightSource
>>> LightSource.Unknown.value
0
>>> LightSource(0).name
'Unknown'

其中两个值也以字典形式公开。

PIL.ExifTags.TAGS: dict

TAGS 字典将 16 位整数 EXIF 标记枚举映射到描述性字符串名称。例如

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

GPSTAGS 字典将 8 位整数 EXIF GPS 枚举映射到描述性字符串名称。例如

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