exiftool-vendored.exe 12.28.0 → 12.34.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/exiftool_files/Changes +108 -5
- package/bin/exiftool_files/README +2 -2
- package/bin/exiftool_files/arg_files/xmp2exif.args +2 -1
- package/bin/exiftool_files/config_files/example.config +1 -1
- package/bin/exiftool_files/exiftool.pl +40 -26
- package/bin/exiftool_files/fmt_files/gpx.fmt +1 -1
- package/bin/exiftool_files/fmt_files/gpx_wpt.fmt +1 -1
- package/bin/exiftool_files/lib/Image/ExifTool/BuildTagLookup.pm +16 -3
- package/bin/exiftool_files/lib/Image/ExifTool/CBOR.pm +331 -0
- package/bin/exiftool_files/lib/Image/ExifTool/Canon.pm +35 -5
- package/bin/exiftool_files/lib/Image/ExifTool/Charset.pm +2 -0
- package/bin/exiftool_files/lib/Image/ExifTool/DPX.pm +13 -2
- package/bin/exiftool_files/lib/Image/ExifTool/Exif.pm +98 -4
- package/bin/exiftool_files/lib/Image/ExifTool/FujiFilm.pm +1 -0
- package/bin/exiftool_files/lib/Image/ExifTool/Geotag.pm +13 -2
- package/bin/exiftool_files/lib/Image/ExifTool/GoPro.pm +16 -1
- package/bin/exiftool_files/lib/Image/ExifTool/ICC_Profile.pm +96 -4
- package/bin/exiftool_files/lib/Image/ExifTool/ID3.pm +15 -3
- package/bin/exiftool_files/lib/Image/ExifTool/JSON.pm +7 -3
- package/bin/exiftool_files/lib/Image/ExifTool/Jpeg2000.pm +60 -26
- package/bin/exiftool_files/lib/Image/ExifTool/Lang/nl.pm +60 -59
- package/bin/exiftool_files/lib/Image/ExifTool/M2TS.pm +81 -14
- package/bin/exiftool_files/lib/Image/ExifTool/MacOS.pm +2 -2
- package/bin/exiftool_files/lib/Image/ExifTool/Nikon.pm +12 -3
- package/bin/exiftool_files/lib/Image/ExifTool/NikonSettings.pm +10 -2
- package/bin/exiftool_files/lib/Image/ExifTool/Olympus.pm +8 -1
- package/bin/exiftool_files/lib/Image/ExifTool/Other.pm +93 -0
- package/bin/exiftool_files/lib/Image/ExifTool/PDF.pm +11 -12
- package/bin/exiftool_files/lib/Image/ExifTool/PNG.pm +7 -6
- package/bin/exiftool_files/lib/Image/ExifTool/Panasonic.pm +2 -2
- package/bin/exiftool_files/lib/Image/ExifTool/Pentax.pm +2 -1
- package/bin/exiftool_files/lib/Image/ExifTool/QuickTime.pm +67 -9
- package/bin/exiftool_files/lib/Image/ExifTool/QuickTimeStream.pl +133 -119
- package/bin/exiftool_files/lib/Image/ExifTool/README +9 -2
- package/bin/exiftool_files/lib/Image/ExifTool/RIFF.pm +6 -1
- package/bin/exiftool_files/lib/Image/ExifTool/Samsung.pm +47 -10
- package/bin/exiftool_files/lib/Image/ExifTool/Sony.pm +80 -32
- package/bin/exiftool_files/lib/Image/ExifTool/TagLookup.pm +139 -4
- package/bin/exiftool_files/lib/Image/ExifTool/TagNames.pod +224 -30
- package/bin/exiftool_files/lib/Image/ExifTool/WritePDF.pl +1 -0
- package/bin/exiftool_files/lib/Image/ExifTool/WritePNG.pl +2 -0
- package/bin/exiftool_files/lib/Image/ExifTool/WriteQuickTime.pl +17 -3
- package/bin/exiftool_files/lib/Image/ExifTool/Writer.pl +43 -0
- package/bin/exiftool_files/lib/Image/ExifTool/XMP.pm +21 -8
- package/bin/exiftool_files/lib/Image/ExifTool/XMP2.pl +4 -1
- package/bin/exiftool_files/lib/Image/ExifTool/XMPStruct.pl +3 -1
- package/bin/exiftool_files/lib/Image/ExifTool.pm +8892 -8839
- package/bin/exiftool_files/lib/Image/ExifTool.pod +24 -15
- package/package.json +3 -3
|
@@ -892,6 +892,7 @@ my %tagLookup = (
|
|
|
892
892
|
'alternatetitletext' => { 484 => [\'alternateTitle','alternateTitleText'] },
|
|
893
893
|
'altitude' => { 192 => 0x6 },
|
|
894
894
|
'alttapename' => { 494 => 'altTapeName' },
|
|
895
|
+
'alttextaccessibility' => { 479 => 'AltTextAccessibility' },
|
|
895
896
|
'alttimecode' => { 494 => 'altTimecode' },
|
|
896
897
|
'alttimecodetimeformat' => { 494 => [\'altTimecode','altTimecodeTimeFormat'] },
|
|
897
898
|
'alttimecodetimevalue' => { 494 => [\'altTimecode','altTimecodeTimeValue'] },
|
|
@@ -1180,6 +1181,7 @@ my %tagLookup = (
|
|
|
1180
1181
|
'calibrationhistory' => { 135 => 0x9c9 },
|
|
1181
1182
|
'calibrationilluminant1' => { 117 => 0xc65a },
|
|
1182
1183
|
'calibrationilluminant2' => { 117 => 0xc65b },
|
|
1184
|
+
'calibrationilluminant3' => { 117 => 0xcd31 },
|
|
1183
1185
|
'calibrationversion' => { 135 => 0x9c6 },
|
|
1184
1186
|
'callforimage' => { 458 => 'CallForImage' },
|
|
1185
1187
|
'camera' => { 448 => [\'Cameras','CamerasCamera'] },
|
|
@@ -1192,6 +1194,7 @@ my %tagLookup = (
|
|
|
1192
1194
|
'cameracalibration' => { 388 => 0x11f },
|
|
1193
1195
|
'cameracalibration1' => { 117 => 0xc623 },
|
|
1194
1196
|
'cameracalibration2' => { 117 => 0xc624 },
|
|
1197
|
+
'cameracalibration3' => { 117 => 0xcd32 },
|
|
1195
1198
|
'cameracalibrationsig' => { 117 => 0xc6f3 },
|
|
1196
1199
|
'cameracolorcalibration01' => { 36 => 0x0, 37 => 0x0 },
|
|
1197
1200
|
'cameracolorcalibration02' => { 36 => 0x4, 37 => 0x5 },
|
|
@@ -1542,6 +1545,7 @@ my %tagLookup = (
|
|
|
1542
1545
|
'colormatrix' => { 292 => 0x200, 293 => 0x1011, 385 => 0xa030 },
|
|
1543
1546
|
'colormatrix1' => { 117 => 0xc621, 355 => 0x106 },
|
|
1544
1547
|
'colormatrix2' => { 117 => 0xc622, 296 => 0x200, 355 => 0x226 },
|
|
1548
|
+
'colormatrix3' => { 117 => 0xcd33 },
|
|
1545
1549
|
'colormatrixa' => { 346 => 0x203 },
|
|
1546
1550
|
'colormatrixa2' => { 346 => 0x21c },
|
|
1547
1551
|
'colormatrixadobergb' => { 385 => 0xa032 },
|
|
@@ -2341,7 +2345,7 @@ my %tagLookup = (
|
|
|
2341
2345
|
'eventfieldnotes' => { 116 => [\'Event','EventFieldNotes'] },
|
|
2342
2346
|
'eventfieldnumber' => { 116 => [\'Event','EventFieldNumber'] },
|
|
2343
2347
|
'eventhabitat' => { 116 => [\'Event','EventHabitat'] },
|
|
2344
|
-
'eventid' => { 116 => [\'Event','EventEventID'] },
|
|
2348
|
+
'eventid' => { 116 => [\'Event','EventEventID'], 480 => 'EventId' },
|
|
2345
2349
|
'eventlatestdate' => { 116 => [\'Event','EventLatestDate'] },
|
|
2346
2350
|
'eventmonth' => { 116 => [\'Event','EventMonth'] },
|
|
2347
2351
|
'eventnumber' => { 372 => 0x9, 373 => 0x37, 374 => 0x3a },
|
|
@@ -2416,6 +2420,7 @@ my %tagLookup = (
|
|
|
2416
2420
|
'exposurewarning' => { 125 => 0x1302 },
|
|
2417
2421
|
'exrauto' => { 125 => 0x1033 },
|
|
2418
2422
|
'exrmode' => { 125 => 0x1034 },
|
|
2423
|
+
'extdescraccessibility' => { 479 => 'ExtDescrAccessibility' },
|
|
2419
2424
|
'extendedwbdetect' => { 288 => 0x902 },
|
|
2420
2425
|
'extender' => { 289 => 0x301 },
|
|
2421
2426
|
'extenderfirmwareversion' => { 289 => 0x304 },
|
|
@@ -2788,6 +2793,7 @@ my %tagLookup = (
|
|
|
2788
2793
|
'forwardlock' => { 489 => 'forwardlock' },
|
|
2789
2794
|
'forwardmatrix1' => { 117 => 0xc714 },
|
|
2790
2795
|
'forwardmatrix2' => { 117 => 0xc715 },
|
|
2796
|
+
'forwardmatrix3' => { 117 => 0xcd34 },
|
|
2791
2797
|
'fossilspecimen' => { 116 => 'FossilSpecimen' },
|
|
2792
2798
|
'fossilspecimenmaterialsampleid' => { 116 => [\'FossilSpecimen','FossilSpecimenMaterialSampleID'] },
|
|
2793
2799
|
'framecount' => { 65 => [0x2,0x4] },
|
|
@@ -3140,6 +3146,9 @@ my %tagLookup = (
|
|
|
3140
3146
|
'identifiedby' => { 116 => [\'Identification','IdentificationIdentifiedBy'] },
|
|
3141
3147
|
'identifier' => { 471 => 'identifier', 492 => 'Identifier' },
|
|
3142
3148
|
'ifcameramodel' => { 135 => 0x9c8 },
|
|
3149
|
+
'illuminantdata1' => { 117 => 0xcd35 },
|
|
3150
|
+
'illuminantdata2' => { 117 => 0xcd36 },
|
|
3151
|
+
'illuminantdata3' => { 117 => 0xcd37 },
|
|
3143
3152
|
'illumination' => { 282 => '0.5', 373 => 0x48 },
|
|
3144
3153
|
'imageabsolutex' => { 135 => 0x3fe },
|
|
3145
3154
|
'imageabsolutey' => { 135 => 0x3ff },
|
|
@@ -3681,6 +3690,9 @@ my %tagLookup = (
|
|
|
3681
3690
|
'lookparameterslooktable' => { 468 => [\'Look','LookParametersLookTable'], 470 => [\'Look','LookParametersLookTable'] },
|
|
3682
3691
|
'lookparametersprocessversion' => { 468 => [\'Look','LookParametersProcessVersion'], 470 => [\'Look','LookParametersProcessVersion'] },
|
|
3683
3692
|
'lookparameterstonecurvepv2012' => { 468 => [\'Look','LookParametersToneCurvePV2012'], 470 => [\'Look','LookParametersToneCurvePV2012'] },
|
|
3693
|
+
'lookparameterstonecurvepv2012blue' => { 468 => [\'Look','LookParametersToneCurvePV2012Blue'], 470 => [\'Look','LookParametersToneCurvePV2012Blue'] },
|
|
3694
|
+
'lookparameterstonecurvepv2012green' => { 468 => [\'Look','LookParametersToneCurvePV2012Green'], 470 => [\'Look','LookParametersToneCurvePV2012Green'] },
|
|
3695
|
+
'lookparameterstonecurvepv2012red' => { 468 => [\'Look','LookParametersToneCurvePV2012Red'], 470 => [\'Look','LookParametersToneCurvePV2012Red'] },
|
|
3684
3696
|
'lookparametersversion' => { 468 => [\'Look','LookParametersVersion'], 470 => [\'Look','LookParametersVersion'] },
|
|
3685
3697
|
'looksupportsamount' => { 468 => [\'Look','LookSupportsAmount'], 470 => [\'Look','LookSupportsAmount'] },
|
|
3686
3698
|
'looksupportsmonochrome' => { 468 => [\'Look','LookSupportsMonochrome'], 470 => [\'Look','LookSupportsMonochrome'] },
|
|
@@ -4780,7 +4792,7 @@ my %tagLookup = (
|
|
|
4780
4792
|
'previewcroptop' => { 357 => 0xed },
|
|
4781
4793
|
'previewdate' => { 369 => 0x0 },
|
|
4782
4794
|
'previewdatetime' => { 117 => 0xc71b },
|
|
4783
|
-
'previewimage' => { 111 => 0x2000, 112 => 'Exif-PreviewImage', 118 => 'PreviewImage', 120 => 0x4, 163 => 'data', 183 => 0x81, 293 => 0x280, 309 => 0x300, 411 => 0x2001 },
|
|
4795
|
+
'previewimage' => { 111 => 0x2000, 112 => 'Exif-PreviewImage', 118 => 'PreviewImage', 120 => 0x4, 163 => 'data', 183 => 0x81, 293 => 0x280, 309 => 0x300, 371 => 'mcvr', 411 => 0x2001 },
|
|
4784
4796
|
'previewimageborders' => { 346 => 0x3e },
|
|
4785
4797
|
'previewimageheight' => { 71 => 0x4, 139 => 0xfa58 },
|
|
4786
4798
|
'previewimagelength' => { 71 => 0x2, 111 => 0x3, 117 => [0x117,0x202], 183 => 0x89, 227 => 0x202, 288 => 0x102, 293 => 0x1037, 346 => 0x3, 377 => 0x1e, 382 => 0x3, 388 => [0x1b,0x1d], 401 => 0x202 },
|
|
@@ -4825,8 +4837,10 @@ my %tagLookup = (
|
|
|
4825
4837
|
'profilecameraindices' => { 448 => [\'Profiles','ProfilesProfileCameraIndices'] },
|
|
4826
4838
|
'profilecopyright' => { 117 => 0xc6fe },
|
|
4827
4839
|
'profileembedpolicy' => { 117 => 0xc6fd },
|
|
4840
|
+
'profilegaintablemap' => { 117 => 0xcd2d },
|
|
4828
4841
|
'profilehuesatmapdata1' => { 117 => 0xc6fa },
|
|
4829
4842
|
'profilehuesatmapdata2' => { 117 => 0xc6fb },
|
|
4843
|
+
'profilehuesatmapdata3' => { 117 => 0xcd39 },
|
|
4830
4844
|
'profilehuesatmapdims' => { 117 => 0xc6f9 },
|
|
4831
4845
|
'profilehuesatmapencoding' => { 117 => 0xc7a3 },
|
|
4832
4846
|
'profilelooktabledata' => { 117 => 0xc726 },
|
|
@@ -5018,6 +5032,7 @@ my %tagLookup = (
|
|
|
5018
5032
|
'redsaturation' => { 468 => 'RedSaturation', 470 => 'RedSaturation' },
|
|
5019
5033
|
'reductionmatrix1' => { 117 => 0xc625 },
|
|
5020
5034
|
'reductionmatrix2' => { 117 => 0xc626 },
|
|
5035
|
+
'reductionmatrix3' => { 117 => 0xcd3a },
|
|
5021
5036
|
'reelname' => { 117 => 0xc789, 371 => 'reel' },
|
|
5022
5037
|
'reference1' => { 478 => [\'TagStructure','TagStructureReference'] },
|
|
5023
5038
|
'reference2' => { 478 => [\'TagStructure','TagStructureSubLabelsReference'] },
|
|
@@ -5197,6 +5212,7 @@ my %tagLookup = (
|
|
|
5197
5212
|
'rflenstype' => { 56 => 0x3d },
|
|
5198
5213
|
'rgbcurvelimits' => { 106 => 0x238 },
|
|
5199
5214
|
'rgbcurvepoints' => { 105 => 0x7, 106 => 0x20e },
|
|
5215
|
+
'rgbtables' => { 117 => 0xcd3b },
|
|
5200
5216
|
'richtextcomment' => { 477 => 'RichTextComment' },
|
|
5201
5217
|
'ricohdate' => { 377 => 0x6 },
|
|
5202
5218
|
'ricohimageheight' => { 377 => 0x2 },
|
|
@@ -5430,7 +5446,7 @@ my %tagLookup = (
|
|
|
5430
5446
|
'shuttercount2' => { 429 => 0x4c, 430 => [0x50,0x52,0x58], 431 => 0x50 },
|
|
5431
5447
|
'shuttercount3' => { 429 => [0x1a0,0x1aa,0x1bd], 430 => [0x19f,0x1cb,0x1cd] },
|
|
5432
5448
|
'shuttercurtainsync' => { 80 => 0xf, 81 => 0xf, 82 => 0x305, 83 => 0xe, 84 => 0xf, 85 => 0x8, 86 => 0x8, 87 => 0xf, 88 => 0x8 },
|
|
5433
|
-
'shuttermode' => { 137 => 0x1b, 222 => 0x34 },
|
|
5449
|
+
'shuttermode' => { 56 => 0x17, 137 => 0x1b, 222 => 0x34 },
|
|
5434
5450
|
'shutterreleasebuttonae-l' => { 271 => '17.7', 272 => '18.4', 274 => '78.4', 275 => '78.4', 276 => '16.1', 277 => '17.1', 278 => '17.1', 279 => '17.1', 280 => '7.1', 281 => '17.5', 284 => '18.4', 285 => '78.4', 286 => '18.2' },
|
|
5435
5451
|
'shutterreleasemethod' => { 95 => 0x1010 },
|
|
5436
5452
|
'shutterreleasenocfcard' => { 80 => 0x2, 81 => 0x2, 88 => 0xf },
|
|
@@ -6415,6 +6431,7 @@ my %tagLookup = (
|
|
|
6415
6431
|
'yield' => { 486 => 'yield' },
|
|
6416
6432
|
'yposition' => { 117 => 0x11f },
|
|
6417
6433
|
'yresolution' => { 117 => 0x11b, 132 => 0x5, 361 => 0x4, 490 => 'YResolution' },
|
|
6434
|
+
'zoneidentifier' => { 118 => 'ZoneIdentifier' },
|
|
6418
6435
|
'zonematching' => { 183 => 0x10a, 186 => [0x3a,0x4a], 411 => 0xb024 },
|
|
6419
6436
|
'zonematchingmode' => { 181 => 0x14 },
|
|
6420
6437
|
'zonematchingon' => { 180 => 0x75 },
|
|
@@ -6439,6 +6456,7 @@ my %tagExists = (
|
|
|
6439
6456
|
'abstractfilename' => 1,
|
|
6440
6457
|
'accel360fly' => 1,
|
|
6441
6458
|
'acceldata' => 1,
|
|
6459
|
+
'accelerometermatrix' => 1,
|
|
6442
6460
|
'accelerometertime' => 1,
|
|
6443
6461
|
'accelmode' => 1,
|
|
6444
6462
|
'accelypr' => 1,
|
|
@@ -6612,6 +6630,7 @@ my %tagExists = (
|
|
|
6612
6630
|
'ardronetelemetry' => 1,
|
|
6613
6631
|
'artist2' => 1,
|
|
6614
6632
|
'artistlen' => 1,
|
|
6633
|
+
'artists' => 1,
|
|
6615
6634
|
'artisturl' => 1,
|
|
6616
6635
|
'ascender' => 1,
|
|
6617
6636
|
'ascent' => 1,
|
|
@@ -6639,6 +6658,8 @@ my %tagExists = (
|
|
|
6639
6658
|
'atob0' => 1,
|
|
6640
6659
|
'atob1' => 1,
|
|
6641
6660
|
'atob2' => 1,
|
|
6661
|
+
'atob3' => 1,
|
|
6662
|
+
'atom0' => 1,
|
|
6642
6663
|
'atsccontent' => 1,
|
|
6643
6664
|
'attachments' => 1,
|
|
6644
6665
|
'attitude' => 1,
|
|
@@ -6710,8 +6731,10 @@ my %tagExists = (
|
|
|
6710
6731
|
'audiozeroframespadded' => 1,
|
|
6711
6732
|
'authenticationtime' => 1,
|
|
6712
6733
|
'authenticationtype' => 1,
|
|
6734
|
+
'authoridentifier' => 1,
|
|
6713
6735
|
'authoringsoftwarerelease' => 1,
|
|
6714
6736
|
'authorlen' => 1,
|
|
6737
|
+
'authorname' => 1,
|
|
6715
6738
|
'authorship' => 1,
|
|
6716
6739
|
'authorsortorder' => 1,
|
|
6717
6740
|
'autoareaafstartingpoint' => 1,
|
|
@@ -6794,6 +6817,8 @@ my %tagExists = (
|
|
|
6794
6817
|
'bikebroaccel' => 1,
|
|
6795
6818
|
'bikebrogps' => 1,
|
|
6796
6819
|
'billinginformation' => 1,
|
|
6820
|
+
'binarydata' => 1,
|
|
6821
|
+
'binarydatatype' => 1,
|
|
6797
6822
|
'binaryfilter' => 1,
|
|
6798
6823
|
'binaryxml' => 1,
|
|
6799
6824
|
'binning' => 1,
|
|
@@ -6874,6 +6899,38 @@ my %tagExists = (
|
|
|
6874
6899
|
'brain' => 1,
|
|
6875
6900
|
'brandingimageid' => 1,
|
|
6876
6901
|
'brandingname' => 1,
|
|
6902
|
+
'brdfatob0' => 1,
|
|
6903
|
+
'brdfatob1' => 1,
|
|
6904
|
+
'brdfatob2' => 1,
|
|
6905
|
+
'brdfatob3' => 1,
|
|
6906
|
+
'brdfbtoa0' => 1,
|
|
6907
|
+
'brdfbtoa1' => 1,
|
|
6908
|
+
'brdfbtoa2' => 1,
|
|
6909
|
+
'brdfbtoa3' => 1,
|
|
6910
|
+
'brdfbtod0' => 1,
|
|
6911
|
+
'brdfbtod1' => 1,
|
|
6912
|
+
'brdfbtod2' => 1,
|
|
6913
|
+
'brdfbtod3' => 1,
|
|
6914
|
+
'brdfcolorimetricparam1' => 1,
|
|
6915
|
+
'brdfcolorimetricparam2' => 1,
|
|
6916
|
+
'brdfcolorimetricparam3' => 1,
|
|
6917
|
+
'brdfcolorimetricparameter3tag' => 1,
|
|
6918
|
+
'brdfdtob0' => 1,
|
|
6919
|
+
'brdfdtob1' => 1,
|
|
6920
|
+
'brdfdtob2' => 1,
|
|
6921
|
+
'brdfdtob3' => 1,
|
|
6922
|
+
'brdfmtob0' => 1,
|
|
6923
|
+
'brdfmtob1' => 1,
|
|
6924
|
+
'brdfmtob2' => 1,
|
|
6925
|
+
'brdfmtob3' => 1,
|
|
6926
|
+
'brdfmtos0' => 1,
|
|
6927
|
+
'brdfmtos1' => 1,
|
|
6928
|
+
'brdfmtos2' => 1,
|
|
6929
|
+
'brdfmtos3' => 1,
|
|
6930
|
+
'brdfspectralparam0' => 1,
|
|
6931
|
+
'brdfspectralparam1' => 1,
|
|
6932
|
+
'brdfspectralparam2' => 1,
|
|
6933
|
+
'brdfspectralparam3' => 1,
|
|
6877
6934
|
'breakchar' => 1,
|
|
6878
6935
|
'brightdefectintegrationms' => 1,
|
|
6879
6936
|
'brightdefectisocode' => 1,
|
|
@@ -6886,6 +6943,7 @@ my %tagExists = (
|
|
|
6886
6943
|
'btoa0' => 1,
|
|
6887
6944
|
'btoa1' => 1,
|
|
6888
6945
|
'btoa2' => 1,
|
|
6946
|
+
'btoa3' => 1,
|
|
6889
6947
|
'btod0' => 1,
|
|
6890
6948
|
'btod1' => 1,
|
|
6891
6949
|
'btod2' => 1,
|
|
@@ -7066,6 +7124,8 @@ my %tagExists = (
|
|
|
7066
7124
|
'casioquality' => 1,
|
|
7067
7125
|
'casioqvmi' => 1,
|
|
7068
7126
|
'cast' => 1,
|
|
7127
|
+
'catalognumber' => 1,
|
|
7128
|
+
'cbordata' => 1,
|
|
7069
7129
|
'cc' => 1,
|
|
7070
7130
|
'ccaddresses' => 1,
|
|
7071
7131
|
'ccdrect' => 1,
|
|
@@ -7217,7 +7277,9 @@ my %tagExists = (
|
|
|
7217
7277
|
'colorant3coordinates' => 1,
|
|
7218
7278
|
'colorant3name' => 1,
|
|
7219
7279
|
'colorantcount' => 1,
|
|
7280
|
+
'colorantinfoout' => 1,
|
|
7220
7281
|
'colorantorder' => 1,
|
|
7282
|
+
'colorantorderout' => 1,
|
|
7221
7283
|
'coloranttable' => 1,
|
|
7222
7284
|
'coloranttableout' => 1,
|
|
7223
7285
|
'coloraverages' => 1,
|
|
@@ -7256,6 +7318,7 @@ my %tagExists = (
|
|
|
7256
7318
|
'colordata8' => 1,
|
|
7257
7319
|
'colordata9' => 1,
|
|
7258
7320
|
'colordataunknown' => 1,
|
|
7321
|
+
'colorencodingparams' => 1,
|
|
7259
7322
|
'colorgroup' => 1,
|
|
7260
7323
|
'colorhalftoninginfo' => 1,
|
|
7261
7324
|
'colorimetricintentimagestate' => 1,
|
|
@@ -7277,6 +7340,7 @@ my %tagExists = (
|
|
|
7277
7340
|
'colorsamplersresource2' => 1,
|
|
7278
7341
|
'colorsetup' => 1,
|
|
7279
7342
|
'colorspacedata' => 1,
|
|
7343
|
+
'colorspacename' => 1,
|
|
7280
7344
|
'colorspecapproximation' => 1,
|
|
7281
7345
|
'colorspecdata' => 1,
|
|
7282
7346
|
'colorspecification' => 1,
|
|
@@ -7448,6 +7512,7 @@ my %tagExists = (
|
|
|
7448
7512
|
'crossref' => 1,
|
|
7449
7513
|
'crs' => 1,
|
|
7450
7514
|
'crwparam' => 1,
|
|
7515
|
+
'cs0' => 1,
|
|
7451
7516
|
'cs1' => 1,
|
|
7452
7517
|
'ctmd' => 1,
|
|
7453
7518
|
'cubemapproj' => 1,
|
|
@@ -7493,6 +7558,8 @@ my %tagExists = (
|
|
|
7493
7558
|
'customsettingsd810' => 1,
|
|
7494
7559
|
'customsettingsd850' => 1,
|
|
7495
7560
|
'customsettingsd90' => 1,
|
|
7561
|
+
'customtostandardpcc' => 1,
|
|
7562
|
+
'cxf' => 1,
|
|
7496
7563
|
'd-lightinghqdata' => 1,
|
|
7497
7564
|
'd-lightinghsdata' => 1,
|
|
7498
7565
|
'd2' => 1,
|
|
@@ -7610,6 +7677,7 @@ my %tagExists = (
|
|
|
7610
7677
|
'depthhwheight' => 1,
|
|
7611
7678
|
'depthhwwidth' => 1,
|
|
7612
7679
|
'depthmapdata' => 1,
|
|
7680
|
+
'depthmapdata2' => 1,
|
|
7613
7681
|
'depthmapheight' => 1,
|
|
7614
7682
|
'depthmapname' => 1,
|
|
7615
7683
|
'depthmaptiff' => 1,
|
|
@@ -7655,6 +7723,22 @@ my %tagExists = (
|
|
|
7655
7723
|
'digitalimagebroker' => 1,
|
|
7656
7724
|
'digitalsignature' => 1,
|
|
7657
7725
|
'dimensions' => 1,
|
|
7726
|
+
'directionalatob0' => 1,
|
|
7727
|
+
'directionalatob1' => 1,
|
|
7728
|
+
'directionalatob2' => 1,
|
|
7729
|
+
'directionalatob3' => 1,
|
|
7730
|
+
'directionalbtoa0' => 1,
|
|
7731
|
+
'directionalbtoa1' => 1,
|
|
7732
|
+
'directionalbtoa2' => 1,
|
|
7733
|
+
'directionalbtoa3' => 1,
|
|
7734
|
+
'directionalbtod0' => 1,
|
|
7735
|
+
'directionalbtod1' => 1,
|
|
7736
|
+
'directionalbtod2' => 1,
|
|
7737
|
+
'directionalbtod3' => 1,
|
|
7738
|
+
'directionaldtob0' => 1,
|
|
7739
|
+
'directionaldtob1' => 1,
|
|
7740
|
+
'directionaldtob2' => 1,
|
|
7741
|
+
'directionaldtob3' => 1,
|
|
7658
7742
|
'directors' => 1,
|
|
7659
7743
|
'disableflagspresent' => 1,
|
|
7660
7744
|
'discardobjects' => 1,
|
|
@@ -7775,6 +7859,7 @@ my %tagExists = (
|
|
|
7775
7859
|
'dvdid' => 1,
|
|
7776
7860
|
'dwc' => 1,
|
|
7777
7861
|
'dynamicareaafassist' => 1,
|
|
7862
|
+
'dynamicranger128' => 1,
|
|
7778
7863
|
'e-mail2' => 1,
|
|
7779
7864
|
'e-mail3' => 1,
|
|
7780
7865
|
'e-mailaddress' => 1,
|
|
@@ -7806,6 +7891,7 @@ my %tagExists = (
|
|
|
7806
7891
|
'embeddedfilename' => 1,
|
|
7807
7892
|
'embeddedfileusagerights' => 1,
|
|
7808
7893
|
'embeddedimage' => 1,
|
|
7894
|
+
'embeddedimage2' => 1,
|
|
7809
7895
|
'embeddedimagecolorspace' => 1,
|
|
7810
7896
|
'embeddedimagefilter' => 1,
|
|
7811
7897
|
'embeddedimageheight' => 1,
|
|
@@ -8222,6 +8308,10 @@ my %tagExists = (
|
|
|
8222
8308
|
'gammared' => 1,
|
|
8223
8309
|
'gammatable' => 1,
|
|
8224
8310
|
'gamut' => 1,
|
|
8311
|
+
'gamutboundarydescription0' => 1,
|
|
8312
|
+
'gamutboundarydescription1' => 1,
|
|
8313
|
+
'gamutboundarydescription2' => 1,
|
|
8314
|
+
'gamutboundarydescription3' => 1,
|
|
8225
8315
|
'gapless' => 1,
|
|
8226
8316
|
'gaudio' => 1,
|
|
8227
8317
|
'gaussianweights' => 1,
|
|
@@ -8286,6 +8376,7 @@ my %tagExists = (
|
|
|
8286
8376
|
'gopro' => 1,
|
|
8287
8377
|
'goprogpmf' => 1,
|
|
8288
8378
|
'gpano' => 1,
|
|
8379
|
+
'gpmd_fmas' => 1,
|
|
8289
8380
|
'gpmd_gopro' => 1,
|
|
8290
8381
|
'gpmd_kingslim' => 1,
|
|
8291
8382
|
'gpmd_rove' => 1,
|
|
@@ -8586,6 +8677,8 @@ my %tagExists = (
|
|
|
8586
8677
|
'inputdevicename' => 1,
|
|
8587
8678
|
'inputdeviceserialnumber' => 1,
|
|
8588
8679
|
'inputheight' => 1,
|
|
8680
|
+
'inputorientation' => 1,
|
|
8681
|
+
'inputuniformity' => 1,
|
|
8589
8682
|
'inputwidth' => 1,
|
|
8590
8683
|
'insertmode' => 1,
|
|
8591
8684
|
'insetnwpixelx' => 1,
|
|
@@ -8729,10 +8822,10 @@ my %tagExists = (
|
|
|
8729
8822
|
'jumbf' => 1,
|
|
8730
8823
|
'jumbfbox' => 1,
|
|
8731
8824
|
'jumbfdescr' => 1,
|
|
8732
|
-
'jumdflags' => 1,
|
|
8733
8825
|
'jumdid' => 1,
|
|
8734
8826
|
'jumdlabel' => 1,
|
|
8735
8827
|
'jumdsignature' => 1,
|
|
8828
|
+
'jumdtoggles' => 1,
|
|
8736
8829
|
'jumdtype' => 1,
|
|
8737
8830
|
'jumptoxpep' => 1,
|
|
8738
8831
|
'junk' => 1,
|
|
@@ -8743,6 +8836,7 @@ my %tagExists = (
|
|
|
8743
8836
|
'k4' => 1,
|
|
8744
8837
|
'kbytesize' => 1,
|
|
8745
8838
|
'kdc_ifd' => 1,
|
|
8839
|
+
'keepexposurewithteleconverter' => 1,
|
|
8746
8840
|
'keepuntil' => 1,
|
|
8747
8841
|
'kelvinwb' => 1,
|
|
8748
8842
|
'keycode' => 1,
|
|
@@ -9022,6 +9116,7 @@ my %tagExists = (
|
|
|
9022
9116
|
'makernotes' => 1,
|
|
9023
9117
|
'mandatorybackground' => 1,
|
|
9024
9118
|
'manualfocuspointillumination' => 1,
|
|
9119
|
+
'manualfocusringinafmode' => 1,
|
|
9025
9120
|
'manufacturecode' => 1,
|
|
9026
9121
|
'manufactureindex' => 1,
|
|
9027
9122
|
'manufacturername' => 1,
|
|
@@ -9036,6 +9131,7 @@ my %tagExists = (
|
|
|
9036
9131
|
'markerid' => 1,
|
|
9037
9132
|
'markinfo' => 1,
|
|
9038
9133
|
'marl' => 1,
|
|
9134
|
+
'masksubarea' => 1,
|
|
9039
9135
|
'mastergainadjustment' => 1,
|
|
9040
9136
|
'matrixworldtocamera' => 1,
|
|
9041
9137
|
'matrixworldtoscreen' => 1,
|
|
@@ -9050,6 +9146,7 @@ my %tagExists = (
|
|
|
9050
9146
|
'maximumimageindex' => 1,
|
|
9051
9147
|
'maximumobjectsize' => 1,
|
|
9052
9148
|
'maximumoperationindex' => 1,
|
|
9149
|
+
'maximumshutterangle' => 1,
|
|
9053
9150
|
'maximumtransformindex' => 1,
|
|
9054
9151
|
'maxjpegtableindex' => 1,
|
|
9055
9152
|
'maxpacketsize' => 1,
|
|
@@ -9060,6 +9157,7 @@ my %tagExists = (
|
|
|
9060
9157
|
'maxval' => 1,
|
|
9061
9158
|
'maxwidth' => 1,
|
|
9062
9159
|
'mc' => 1,
|
|
9160
|
+
'mccdata' => 1,
|
|
9063
9161
|
'mcdi' => 1,
|
|
9064
9162
|
'md5signature' => 1,
|
|
9065
9163
|
'md5sum' => 1,
|
|
@@ -9203,6 +9301,7 @@ my %tagExists = (
|
|
|
9203
9301
|
'measurementgeometry' => 1,
|
|
9204
9302
|
'measurementilluminant' => 1,
|
|
9205
9303
|
'measurementinfo' => 1,
|
|
9304
|
+
'measurementinputinfo' => 1,
|
|
9206
9305
|
'measurementobserver' => 1,
|
|
9207
9306
|
'measurementscale' => 1,
|
|
9208
9307
|
'mebx' => 1,
|
|
@@ -9254,6 +9353,7 @@ my %tagExists = (
|
|
|
9254
9353
|
'mediathumbwidth' => 1,
|
|
9255
9354
|
'mediatimescale' => 1,
|
|
9256
9355
|
'mediatrackbytes' => 1,
|
|
9356
|
+
'mediauniqueid' => 1,
|
|
9257
9357
|
'mediaweight' => 1,
|
|
9258
9358
|
'mediawhitepoint' => 1,
|
|
9259
9359
|
'medium' => 1,
|
|
@@ -9383,9 +9483,20 @@ my %tagExists = (
|
|
|
9383
9483
|
'msdocumenttextposition' => 1,
|
|
9384
9484
|
'mspropertysetstorage' => 1,
|
|
9385
9485
|
'msstereo' => 1,
|
|
9486
|
+
'mtoa0' => 1,
|
|
9487
|
+
'mtob0' => 1,
|
|
9488
|
+
'mtob1' => 1,
|
|
9489
|
+
'mtob2' => 1,
|
|
9490
|
+
'mtob3' => 1,
|
|
9491
|
+
'mtos0' => 1,
|
|
9492
|
+
'mtos1' => 1,
|
|
9493
|
+
'mtos2' => 1,
|
|
9494
|
+
'mtos3' => 1,
|
|
9386
9495
|
'multiexp' => 1,
|
|
9387
9496
|
'multiexposureversion' => 1,
|
|
9388
9497
|
'multimediatype' => 1,
|
|
9498
|
+
'multiplexdefaultvalues' => 1,
|
|
9499
|
+
'multiplixtypearray' => 1,
|
|
9389
9500
|
'multiprofiles' => 1,
|
|
9390
9501
|
'multiquality' => 1,
|
|
9391
9502
|
'multishoton' => 1,
|
|
@@ -9606,6 +9717,7 @@ my %tagExists = (
|
|
|
9606
9717
|
'organizername' => 1,
|
|
9607
9718
|
'orientationinfo' => 1,
|
|
9608
9719
|
'originalalbum' => 1,
|
|
9720
|
+
'originaldate' => 1,
|
|
9609
9721
|
'originaldocumentsize' => 1,
|
|
9610
9722
|
'originalfilesize' => 1,
|
|
9611
9723
|
'originalfiletype' => 1,
|
|
@@ -9627,6 +9739,7 @@ my %tagExists = (
|
|
|
9627
9739
|
'originalthmfiletype' => 1,
|
|
9628
9740
|
'originalthmimage' => 1,
|
|
9629
9741
|
'originalthmresource' => 1,
|
|
9742
|
+
'originalyear' => 1,
|
|
9630
9743
|
'originator' => 1,
|
|
9631
9744
|
'originatorreference' => 1,
|
|
9632
9745
|
'originpathinfo' => 1,
|
|
@@ -9653,6 +9766,7 @@ my %tagExists = (
|
|
|
9653
9766
|
'outputdataobjectlist' => 1,
|
|
9654
9767
|
'outputgain' => 1,
|
|
9655
9768
|
'outputheight' => 1,
|
|
9769
|
+
'outputorientation' => 1,
|
|
9656
9770
|
'outputresponse' => 1,
|
|
9657
9771
|
'outputwidth' => 1,
|
|
9658
9772
|
'overclockcolsright' => 1,
|
|
@@ -9737,6 +9851,8 @@ my %tagExists = (
|
|
|
9737
9851
|
'pdf' => 1,
|
|
9738
9852
|
'pdfx' => 1,
|
|
9739
9853
|
'peakbitrate' => 1,
|
|
9854
|
+
'peaklevelr128' => 1,
|
|
9855
|
+
'peaklevelsample' => 1,
|
|
9740
9856
|
'peakspectralsensitivity' => 1,
|
|
9741
9857
|
'peakvalue' => 1,
|
|
9742
9858
|
'pefversion' => 1,
|
|
@@ -9949,6 +10065,7 @@ my %tagExists = (
|
|
|
9949
10065
|
'profileifd' => 1,
|
|
9950
10066
|
'profilesequencedesc' => 1,
|
|
9951
10067
|
'profilesequenceidentifier' => 1,
|
|
10068
|
+
'profilesequenceinfo' => 1,
|
|
9952
10069
|
'profilesize' => 1,
|
|
9953
10070
|
'profileversion' => 1,
|
|
9954
10071
|
'progid' => 1,
|
|
@@ -10153,6 +10270,7 @@ my %tagExists = (
|
|
|
10153
10270
|
'reelnumber' => 1,
|
|
10154
10271
|
'reeltimecode' => 1,
|
|
10155
10272
|
'reference' => 1,
|
|
10273
|
+
'referencename' => 1,
|
|
10156
10274
|
'referencetemperature' => 1,
|
|
10157
10275
|
'reflectedapparenttemperature' => 1,
|
|
10158
10276
|
'reflection' => 1,
|
|
@@ -10162,6 +10280,7 @@ my %tagExists = (
|
|
|
10162
10280
|
'regionxformtackpoint' => 1,
|
|
10163
10281
|
'registerreadtiming' => 1,
|
|
10164
10282
|
'relatedimagefile' => 1,
|
|
10283
|
+
'relationship' => 1,
|
|
10165
10284
|
'relativeexposure' => 1,
|
|
10166
10285
|
'relativehumidity' => 1,
|
|
10167
10286
|
'relativelocation' => 1,
|
|
@@ -10187,6 +10306,9 @@ my %tagExists = (
|
|
|
10187
10306
|
'replaygainalbumpeak' => 1,
|
|
10188
10307
|
'replaygaintrackgain' => 1,
|
|
10189
10308
|
'replaygaintrackpeak' => 1,
|
|
10309
|
+
'replaytrackgain' => 1,
|
|
10310
|
+
'replaytrackpeak' => 1,
|
|
10311
|
+
'replayvolumelevel' => 1,
|
|
10190
10312
|
'replyto' => 1,
|
|
10191
10313
|
'representativedisparityfar' => 1,
|
|
10192
10314
|
'representativedisparitynear' => 1,
|
|
@@ -10326,6 +10448,7 @@ my %tagExists = (
|
|
|
10326
10448
|
'samsungsmta' => 1,
|
|
10327
10449
|
'samsungsvss' => 1,
|
|
10328
10450
|
'samsungtags' => 1,
|
|
10451
|
+
'samsungtrailer' => 1,
|
|
10329
10452
|
'samsunguniqueid' => 1,
|
|
10330
10453
|
'sanyomov' => 1,
|
|
10331
10454
|
'sanyomp4' => 1,
|
|
@@ -10392,6 +10515,7 @@ my %tagExists = (
|
|
|
10392
10515
|
'screenwindowcenter' => 1,
|
|
10393
10516
|
'screenwindowwidth' => 1,
|
|
10394
10517
|
'screenwriters' => 1,
|
|
10518
|
+
'script' => 1,
|
|
10395
10519
|
'scriptcommand' => 1,
|
|
10396
10520
|
'searchranking' => 1,
|
|
10397
10521
|
'secondarygenre' => 1,
|
|
@@ -10409,6 +10533,8 @@ my %tagExists = (
|
|
|
10409
10533
|
'selobjname' => 1,
|
|
10410
10534
|
'selobjtype' => 1,
|
|
10411
10535
|
'selobjversion' => 1,
|
|
10536
|
+
'semanticinstanceifd' => 1,
|
|
10537
|
+
'semanticname' => 1,
|
|
10412
10538
|
'sendduration' => 1,
|
|
10413
10539
|
'senderaddress' => 1,
|
|
10414
10540
|
'sendername' => 1,
|
|
@@ -10419,6 +10545,7 @@ my %tagExists = (
|
|
|
10419
10545
|
'sensordefects' => 1,
|
|
10420
10546
|
'sensorid' => 1,
|
|
10421
10547
|
'sensorinfo' => 1,
|
|
10548
|
+
'sensorreadouttime' => 1,
|
|
10422
10549
|
'sensorrightborder' => 1,
|
|
10423
10550
|
'seqlevelidx0' => 1,
|
|
10424
10551
|
'seqprofile' => 1,
|
|
@@ -10581,6 +10708,8 @@ my %tagExists = (
|
|
|
10581
10708
|
'specialeffectsopticalfilter' => 1,
|
|
10582
10709
|
'specialfolderdata' => 1,
|
|
10583
10710
|
'specificationversion' => 1,
|
|
10711
|
+
'spectralviewingconditions' => 1,
|
|
10712
|
+
'spectralwhitepoint' => 1,
|
|
10584
10713
|
'speed' => 1,
|
|
10585
10714
|
'sphericalvideo' => 1,
|
|
10586
10715
|
'sphericalvideoxml' => 1,
|
|
@@ -10601,6 +10730,7 @@ my %tagExists = (
|
|
|
10601
10730
|
'srgbrendering' => 1,
|
|
10602
10731
|
'stampinfo' => 1,
|
|
10603
10732
|
'stamptoolcount' => 1,
|
|
10733
|
+
'standardtocustompcc' => 1,
|
|
10604
10734
|
'standbymonitorofftime' => 1,
|
|
10605
10735
|
'starring' => 1,
|
|
10606
10736
|
'startdate' => 1,
|
|
@@ -10724,6 +10854,7 @@ my %tagExists = (
|
|
|
10724
10854
|
'suggestedpalette' => 1,
|
|
10725
10855
|
'summary' => 1,
|
|
10726
10856
|
'summaryinfo' => 1,
|
|
10857
|
+
'surfacemap' => 1,
|
|
10727
10858
|
'surroundmode' => 1,
|
|
10728
10859
|
'surroundshotvideo' => 1,
|
|
10729
10860
|
'surroundshotvideoname' => 1,
|
|
@@ -10844,9 +10975,11 @@ my %tagExists = (
|
|
|
10844
10975
|
'thumbnailclip' => 1,
|
|
10845
10976
|
'thumbnailcompressiontable' => 1,
|
|
10846
10977
|
'thumbnailexpansiontable' => 1,
|
|
10978
|
+
'thumbnailhash' => 1,
|
|
10847
10979
|
'thumbnailref' => 1,
|
|
10848
10980
|
'thumbnailresizeratio' => 1,
|
|
10849
10981
|
'thumbnailtiff' => 1,
|
|
10982
|
+
'thumbnailurl' => 1,
|
|
10850
10983
|
'tickspersecond' => 1,
|
|
10851
10984
|
'tiff' => 1,
|
|
10852
10985
|
'tiff-epstandardid' => 1,
|
|
@@ -11077,6 +11210,7 @@ my %tagExists = (
|
|
|
11077
11210
|
'usptomiscellaneous' => 1,
|
|
11078
11211
|
'usptooriginalcontenttype' => 1,
|
|
11079
11212
|
'utm' => 1,
|
|
11213
|
+
'uuid-c2paclaimsignature' => 1,
|
|
11080
11214
|
'uuid-canon' => 1,
|
|
11081
11215
|
'uuid-canon2' => 1,
|
|
11082
11216
|
'uuid-exif' => 1,
|
|
@@ -11193,6 +11327,7 @@ my %tagExists = (
|
|
|
11193
11327
|
'volumeexpirationdate' => 1,
|
|
11194
11328
|
'volumeid' => 1,
|
|
11195
11329
|
'volumelabel' => 1,
|
|
11330
|
+
'volumelevelr128' => 1,
|
|
11196
11331
|
'volumemodifydate' => 1,
|
|
11197
11332
|
'volumename' => 1,
|
|
11198
11333
|
'volumenormalization' => 1,
|