Currently when parsing a date, exif-reader expresses the date in UTC, regardless of any supplemental information available in the exif. This often results in reporting dates incorrectly.
There are a few tags available for knowing timezone offset, including TimeZoneOffset (currently included but not supported by my device) and OffsetTime/OffsetTimeOriginal/OffsetTimeDigitized.
It would be great if the library could, when it's capable of knowing the full date with timezone, return that full date somehow.
It would also be nice to include tags for OffsetTime (0x9010), OffsetTimeOriginal (0x9011), and OffsetTimeDigitized (0x9012). I'd be happy to create a PR for any part of this if that'd be helpful.
Currently when parsing a date,
exif-readerexpresses the date in UTC, regardless of any supplemental information available in the exif. This often results in reporting dates incorrectly.There are a few tags available for knowing timezone offset, including
TimeZoneOffset(currently included but not supported by my device) andOffsetTime/OffsetTimeOriginal/OffsetTimeDigitized.It would be great if the library could, when it's capable of knowing the full date with timezone, return that full date somehow.
It would also be nice to include tags for
OffsetTime(0x9010),OffsetTimeOriginal(0x9011), andOffsetTimeDigitized(0x9012). I'd be happy to create a PR for any part of this if that'd be helpful.