bigflood / dartexif

Dart package to decode Exif data from tiff, jpeg and heic files
https://pub.dev/packages/exif
MIT License
30 stars 29 forks source link

IPTC #45

Open just1984 opened 11 months ago

just1984 commented 11 months ago

Hey there, thanks a lot for this package!! I was wondering if it could be possible to implement the extraction of IPTC data as well.. i was trying to add hex-values to you list of tags, but it didnt work out (by now).

`0x0207: 'Edit Status', // CONTENT ############################# 0x0269: 'Headline', 0x0278: 'Description', 0x027a: 'Description Writer/Editor', 0x020f: 'Category', 0x0214: 'Other Categories',

// CONTACT #############################
0x0250: 'Creator',
0x0255: 'Job-Title',
0x025a: 'City',
0x025f: 'Province/State',
0x0264: 'PLZ',
0x0265: 'Country/Primary Location Name',

// IMAGE ########################################
0x0237: 'Date Created',
0x023c: 'Time Created',

/ 0x025a: 'City', 0x025f: 'State', 0x0265: 'Country/Primary Location Name', 0x0264: 'Country/Primary Location Code',/

// STATUS ###########################
0x020a: 'Urgency',
0x0228: 'Special Instructions',
0x022a: 'Action Advised',

// COPYRIGHT ############################
0x0274: 'Copyright Notice',

// Contact Info
0x0276: 'Contact',

// Media
0x0114: 'File Format',
0x0116: 'File Format Version',
0x0282: 'Image Type',
0x0283: 'Image Orientation',

// Image Preferences
0x024b: 'Object Cycle',

// Event and Location

/ 0x025a: 'City', 0x025f: 'Province/State', 0x0264: 'Country/Primary Location Code', 0x0265: 'Country/Primary Location Name',/

// Locations Taken and Shown
0x021a: 'Content Location Code',
0x021b: 'Content Location Name',

// Licensing
0x02ba: 'Short Document ID',
0x02bb: 'Unique Document ID',
0x02bc: 'Owner ID',`