Add EXIF tags which are part of the EXIF 2.32 specification

This commit is contained in:
gladiusglad 2021-04-20 11:01:46 +07:00
parent cfc9ad46bc
commit 72d7d1d0ea

View File

@ -17,6 +17,7 @@ well-known EXIF tags.
TAGS = { TAGS = {
# possibly incomplete # possibly incomplete
0x0001: "InteropIndex",
0x000B: "ProcessingSoftware", 0x000B: "ProcessingSoftware",
0x00FE: "NewSubfileType", 0x00FE: "NewSubfileType",
0x00FF: "SubfileType", 0x00FF: "SubfileType",
@ -121,9 +122,18 @@ TAGS = {
0x8829: "Interlace", 0x8829: "Interlace",
0x882A: "TimeZoneOffset", 0x882A: "TimeZoneOffset",
0x882B: "SelfTimerMode", 0x882B: "SelfTimerMode",
0x8830: "SensitivityType",
0x8831: "StandardOutputSensitivity",
0x8832: "RecommendedExposureIndex",
0x8833: "ISOSpeed",
0x8834: "ISOSpeedLatitudeyyy",
0x8835: "ISOSpeedLatitudezzz",
0x9000: "ExifVersion", 0x9000: "ExifVersion",
0x9003: "DateTimeOriginal", 0x9003: "DateTimeOriginal",
0x9004: "DateTimeDigitized", 0x9004: "DateTimeDigitized",
0x9010: "OffsetTime",
0x9011: "OffsetTimeOriginal",
0x9012: "OffsetTimeDigitized",
0x9101: "ComponentsConfiguration", 0x9101: "ComponentsConfiguration",
0x9102: "CompressedBitsPerPixel", 0x9102: "CompressedBitsPerPixel",
0x9201: "ShutterSpeedValue", 0x9201: "ShutterSpeedValue",
@ -197,6 +207,9 @@ TAGS = {
0xA433: "LensMake", 0xA433: "LensMake",
0xA434: "LensModel", 0xA434: "LensModel",
0xA435: "LensSerialNumber", 0xA435: "LensSerialNumber",
0xA460: "CompositeImage",
0xA461: "CompositeImageCount",
0xA462: "CompositeImageExposureTimes",
0xA500: "Gamma", 0xA500: "Gamma",
0xC4A5: "PrintImageMatching", 0xC4A5: "PrintImageMatching",
0xC612: "DNGVersion", 0xC612: "DNGVersion",