exiftool-vendored
Version:
Efficient, cross-platform access to ExifTool
15 lines (14 loc) • 632 B
TypeScript
/**
* Regression tests for https://github.com/photostructure/exiftool-vendored.js/issues/320
*
* Issue: XMP datetime tags contain timezone information, but when there's no GPS data,
* the timezone is not being extracted because MWG prefers the EXIF DateTimeOriginal
* (which lacks timezone) over the XMP DateTimeOriginal (which has it).
*
* The test images have:
* - EXIF DateTimeOriginal: 2004:06:18 15:05:14 (no timezone)
* - XMP DateTimeDigitized: 2004:06:18 15:05:14+02:00 (has timezone)
* - XMP DateCreated: 2004:06:18 15:05:14+02:00 (has timezone)
* - IPTC TimeCreated: 15:05:14+02:00 (has timezone)
*/
export {};