From 72d7d1d0ea7db9b95f95893eadabf73c01b231b6 Mon Sep 17 00:00:00 2001 From: gladiusglad Date: Tue, 20 Apr 2021 11:01:46 +0700 Subject: [PATCH] Add EXIF tags which are part of the EXIF 2.32 specification --- src/PIL/ExifTags.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/PIL/ExifTags.py b/src/PIL/ExifTags.py index f1c037e51..7da2ddae5 100644 --- a/src/PIL/ExifTags.py +++ b/src/PIL/ExifTags.py @@ -17,6 +17,7 @@ well-known EXIF tags. TAGS = { # possibly incomplete + 0x0001: "InteropIndex", 0x000B: "ProcessingSoftware", 0x00FE: "NewSubfileType", 0x00FF: "SubfileType", @@ -121,9 +122,18 @@ TAGS = { 0x8829: "Interlace", 0x882A: "TimeZoneOffset", 0x882B: "SelfTimerMode", + 0x8830: "SensitivityType", + 0x8831: "StandardOutputSensitivity", + 0x8832: "RecommendedExposureIndex", + 0x8833: "ISOSpeed", + 0x8834: "ISOSpeedLatitudeyyy", + 0x8835: "ISOSpeedLatitudezzz", 0x9000: "ExifVersion", 0x9003: "DateTimeOriginal", 0x9004: "DateTimeDigitized", + 0x9010: "OffsetTime", + 0x9011: "OffsetTimeOriginal", + 0x9012: "OffsetTimeDigitized", 0x9101: "ComponentsConfiguration", 0x9102: "CompressedBitsPerPixel", 0x9201: "ShutterSpeedValue", @@ -197,6 +207,9 @@ TAGS = { 0xA433: "LensMake", 0xA434: "LensModel", 0xA435: "LensSerialNumber", + 0xA460: "CompositeImage", + 0xA461: "CompositeImageCount", + 0xA462: "CompositeImageExposureTimes", 0xA500: "Gamma", 0xC4A5: "PrintImageMatching", 0xC612: "DNGVersion",