From d02aec2a49387d6c351c699a73b7162cbb0560b4 Mon Sep 17 00:00:00 2001 From: LeoHsiao Date: Mon, 18 Nov 2024 03:23:03 +0000 Subject: [PATCH] merge reference.py into convert.py --- pyexiv2/reference.py | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 pyexiv2/reference.py diff --git a/pyexiv2/reference.py b/pyexiv2/reference.py deleted file mode 100644 index 8f78915..0000000 --- a/pyexiv2/reference.py +++ /dev/null @@ -1,29 +0,0 @@ -# These tags are used by Windows and encoded in UCS2. -# pyexiv2 will automatically convert encoding formats when reading and writing them. -EXIF_TAGS_ENCODED_IN_UCS2 = [ - 'Exif.Image.XPTitle', - 'Exif.Image.XPComment', - 'Exif.Image.XPAuthor', - 'Exif.Image.XPKeywords', - 'Exif.Image.XPSubject', -] - -# These tags can be written repeatedly, so there may be multiple values. -# pyexiv2 will convert their values to a list of strings. -IPTC_TAGS_REPEATABLE = [ - 'Iptc.Envelope.Destination', - 'Iptc.Envelope.ProductId', - 'Iptc.Application2.ObjectAttribute', - 'Iptc.Application2.Subject', - 'Iptc.Application2.SuppCategory', - 'Iptc.Application2.Keywords', - 'Iptc.Application2.LocationCode', - 'Iptc.Application2.LocationName', - 'Iptc.Application2.ReferenceService', - 'Iptc.Application2.ReferenceDate', - 'Iptc.Application2.ReferenceNumber', - 'Iptc.Application2.Byline', - 'Iptc.Application2.BylineTitle', - 'Iptc.Application2.Contact', - 'Iptc.Application2.Writer', -]