exiftool-vendored.pl 12.31.0 → 12.39.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.
Files changed (201) hide show
  1. package/LICENSE +10 -3
  2. package/bin/Changes +130 -4
  3. package/bin/MANIFEST +3 -0
  4. package/bin/META.json +1 -1
  5. package/bin/META.yml +1 -1
  6. package/bin/README +45 -45
  7. package/bin/arg_files/xmp2exif.args +2 -1
  8. package/bin/exiftool +128 -96
  9. package/bin/lib/File/RandomAccess.pm +1 -1
  10. package/bin/lib/File/RandomAccess.pod +2 -2
  11. package/bin/lib/Image/ExifTool/AES.pm +1 -1
  12. package/bin/lib/Image/ExifTool/AFCP.pm +1 -1
  13. package/bin/lib/Image/ExifTool/AIFF.pm +1 -1
  14. package/bin/lib/Image/ExifTool/APE.pm +1 -1
  15. package/bin/lib/Image/ExifTool/APP12.pm +1 -1
  16. package/bin/lib/Image/ExifTool/ASF.pm +1 -1
  17. package/bin/lib/Image/ExifTool/Apple.pm +1 -1
  18. package/bin/lib/Image/ExifTool/Audible.pm +1 -1
  19. package/bin/lib/Image/ExifTool/BMP.pm +1 -1
  20. package/bin/lib/Image/ExifTool/BPG.pm +1 -1
  21. package/bin/lib/Image/ExifTool/BZZ.pm +1 -1
  22. package/bin/lib/Image/ExifTool/BigTIFF.pm +1 -1
  23. package/bin/lib/Image/ExifTool/BuildTagLookup.pm +17 -5
  24. package/bin/lib/Image/ExifTool/CBOR.pm +331 -0
  25. package/bin/lib/Image/ExifTool/Canon.pm +171 -13
  26. package/bin/lib/Image/ExifTool/CanonCustom.pm +13 -3
  27. package/bin/lib/Image/ExifTool/CanonRaw.pm +1 -1
  28. package/bin/lib/Image/ExifTool/CanonVRD.pm +1 -1
  29. package/bin/lib/Image/ExifTool/CaptureOne.pm +1 -1
  30. package/bin/lib/Image/ExifTool/Casio.pm +1 -1
  31. package/bin/lib/Image/ExifTool/Charset.pm +3 -1
  32. package/bin/lib/Image/ExifTool/DICOM.pm +1 -1
  33. package/bin/lib/Image/ExifTool/DJI.pm +1 -1
  34. package/bin/lib/Image/ExifTool/DNG.pm +1 -1
  35. package/bin/lib/Image/ExifTool/DPX.pm +1 -1
  36. package/bin/lib/Image/ExifTool/DV.pm +1 -1
  37. package/bin/lib/Image/ExifTool/DarwinCore.pm +3 -3
  38. package/bin/lib/Image/ExifTool/DjVu.pm +1 -1
  39. package/bin/lib/Image/ExifTool/EXE.pm +1 -1
  40. package/bin/lib/Image/ExifTool/Exif.pm +118 -4
  41. package/bin/lib/Image/ExifTool/FITS.pm +1 -1
  42. package/bin/lib/Image/ExifTool/FLAC.pm +1 -1
  43. package/bin/lib/Image/ExifTool/FLIF.pm +1 -1
  44. package/bin/lib/Image/ExifTool/FLIR.pm +48 -11
  45. package/bin/lib/Image/ExifTool/Fixup.pm +1 -1
  46. package/bin/lib/Image/ExifTool/Flash.pm +1 -1
  47. package/bin/lib/Image/ExifTool/FlashPix.pm +1 -1
  48. package/bin/lib/Image/ExifTool/Font.pm +1 -1
  49. package/bin/lib/Image/ExifTool/FotoStation.pm +1 -1
  50. package/bin/lib/Image/ExifTool/FujiFilm.pm +1 -1
  51. package/bin/lib/Image/ExifTool/GE.pm +1 -1
  52. package/bin/lib/Image/ExifTool/GIF.pm +6 -2
  53. package/bin/lib/Image/ExifTool/GIMP.pm +1 -1
  54. package/bin/lib/Image/ExifTool/GPS.pm +15 -11
  55. package/bin/lib/Image/ExifTool/GeoTiff.pm +1 -1
  56. package/bin/lib/Image/ExifTool/Geotag.pm +14 -3
  57. package/bin/lib/Image/ExifTool/GoPro.pm +1 -1
  58. package/bin/lib/Image/ExifTool/H264.pm +1 -1
  59. package/bin/lib/Image/ExifTool/HP.pm +1 -1
  60. package/bin/lib/Image/ExifTool/HTML.pm +1 -1
  61. package/bin/lib/Image/ExifTool/HtmlDump.pm +1 -1
  62. package/bin/lib/Image/ExifTool/ICC_Profile.pm +97 -5
  63. package/bin/lib/Image/ExifTool/ID3.pm +1 -1
  64. package/bin/lib/Image/ExifTool/IPTC.pm +1 -1
  65. package/bin/lib/Image/ExifTool/ISO.pm +1 -1
  66. package/bin/lib/Image/ExifTool/ITC.pm +1 -1
  67. package/bin/lib/Image/ExifTool/Import.pm +1 -1
  68. package/bin/lib/Image/ExifTool/InDesign.pm +1 -1
  69. package/bin/lib/Image/ExifTool/JPEG.pm +6 -2
  70. package/bin/lib/Image/ExifTool/JPEGDigest.pm +1 -1
  71. package/bin/lib/Image/ExifTool/JSON.pm +8 -4
  72. package/bin/lib/Image/ExifTool/JVC.pm +1 -1
  73. package/bin/lib/Image/ExifTool/Jpeg2000.pm +155 -25
  74. package/bin/lib/Image/ExifTool/Kodak.pm +1 -1
  75. package/bin/lib/Image/ExifTool/KyoceraRaw.pm +1 -1
  76. package/bin/lib/Image/ExifTool/LIF.pm +1 -1
  77. package/bin/lib/Image/ExifTool/LNK.pm +1 -1
  78. package/bin/lib/Image/ExifTool/Lang/cs.pm +1 -1
  79. package/bin/lib/Image/ExifTool/Lang/de.pm +1 -1
  80. package/bin/lib/Image/ExifTool/Lang/en_ca.pm +1 -1
  81. package/bin/lib/Image/ExifTool/Lang/en_gb.pm +1 -1
  82. package/bin/lib/Image/ExifTool/Lang/es.pm +1 -1
  83. package/bin/lib/Image/ExifTool/Lang/fi.pm +1 -1
  84. package/bin/lib/Image/ExifTool/Lang/fr.pm +1 -1
  85. package/bin/lib/Image/ExifTool/Lang/it.pm +1 -1
  86. package/bin/lib/Image/ExifTool/Lang/ja.pm +1 -1
  87. package/bin/lib/Image/ExifTool/Lang/ko.pm +1 -1
  88. package/bin/lib/Image/ExifTool/Lang/nl.pm +1 -1
  89. package/bin/lib/Image/ExifTool/Lang/pl.pm +1 -1
  90. package/bin/lib/Image/ExifTool/Lang/ru.pm +1 -1
  91. package/bin/lib/Image/ExifTool/Lang/sv.pm +1 -1
  92. package/bin/lib/Image/ExifTool/Lang/tr.pm +1 -1
  93. package/bin/lib/Image/ExifTool/Lang/zh_cn.pm +1 -1
  94. package/bin/lib/Image/ExifTool/Lang/zh_tw.pm +1 -1
  95. package/bin/lib/Image/ExifTool/Leaf.pm +1 -1
  96. package/bin/lib/Image/ExifTool/Lytro.pm +1 -1
  97. package/bin/lib/Image/ExifTool/M2TS.pm +1 -1
  98. package/bin/lib/Image/ExifTool/MIE.pm +1 -1
  99. package/bin/lib/Image/ExifTool/MIEUnits.pod +1 -1
  100. package/bin/lib/Image/ExifTool/MIFF.pm +1 -1
  101. package/bin/lib/Image/ExifTool/MNG.pm +1 -1
  102. package/bin/lib/Image/ExifTool/MOI.pm +1 -1
  103. package/bin/lib/Image/ExifTool/MPC.pm +1 -1
  104. package/bin/lib/Image/ExifTool/MPEG.pm +1 -1
  105. package/bin/lib/Image/ExifTool/MPF.pm +1 -1
  106. package/bin/lib/Image/ExifTool/MRC.pm +1 -1
  107. package/bin/lib/Image/ExifTool/MWG.pm +1 -1
  108. package/bin/lib/Image/ExifTool/MXF.pm +1 -1
  109. package/bin/lib/Image/ExifTool/MacOS.pm +3 -3
  110. package/bin/lib/Image/ExifTool/MakerNotes.pm +1 -1
  111. package/bin/lib/Image/ExifTool/Matroska.pm +9 -5
  112. package/bin/lib/Image/ExifTool/Microsoft.pm +1 -1
  113. package/bin/lib/Image/ExifTool/Minolta.pm +1 -1
  114. package/bin/lib/Image/ExifTool/MinoltaRaw.pm +1 -1
  115. package/bin/lib/Image/ExifTool/Motorola.pm +1 -1
  116. package/bin/lib/Image/ExifTool/Nikon.pm +1895 -74
  117. package/bin/lib/Image/ExifTool/NikonCapture.pm +1 -1
  118. package/bin/lib/Image/ExifTool/NikonCustom.pm +523 -6
  119. package/bin/lib/Image/ExifTool/NikonSettings.pm +150 -87
  120. package/bin/lib/Image/ExifTool/Nintendo.pm +1 -1
  121. package/bin/lib/Image/ExifTool/OOXML.pm +1 -1
  122. package/bin/lib/Image/ExifTool/Ogg.pm +1 -1
  123. package/bin/lib/Image/ExifTool/Olympus.pm +6 -2
  124. package/bin/lib/Image/ExifTool/OpenEXR.pm +5 -3
  125. package/bin/lib/Image/ExifTool/Opus.pm +1 -1
  126. package/bin/lib/Image/ExifTool/Other.pm +1 -1
  127. package/bin/lib/Image/ExifTool/PCX.pm +1 -1
  128. package/bin/lib/Image/ExifTool/PDF.pm +6 -4
  129. package/bin/lib/Image/ExifTool/PGF.pm +1 -1
  130. package/bin/lib/Image/ExifTool/PICT.pm +1 -1
  131. package/bin/lib/Image/ExifTool/PLIST.pm +1 -1
  132. package/bin/lib/Image/ExifTool/PLUS.pm +1 -1
  133. package/bin/lib/Image/ExifTool/PNG.pm +29 -8
  134. package/bin/lib/Image/ExifTool/PPM.pm +1 -1
  135. package/bin/lib/Image/ExifTool/PSP.pm +1 -1
  136. package/bin/lib/Image/ExifTool/Palm.pm +1 -1
  137. package/bin/lib/Image/ExifTool/Panasonic.pm +3 -3
  138. package/bin/lib/Image/ExifTool/PanasonicRaw.pm +1 -1
  139. package/bin/lib/Image/ExifTool/Parrot.pm +1 -1
  140. package/bin/lib/Image/ExifTool/Pentax.pm +4 -2
  141. package/bin/lib/Image/ExifTool/PhaseOne.pm +1 -1
  142. package/bin/lib/Image/ExifTool/PhotoCD.pm +1 -1
  143. package/bin/lib/Image/ExifTool/PhotoMechanic.pm +1 -1
  144. package/bin/lib/Image/ExifTool/Photoshop.pm +1 -1
  145. package/bin/lib/Image/ExifTool/PostScript.pm +1 -1
  146. package/bin/lib/Image/ExifTool/PrintIM.pm +1 -1
  147. package/bin/lib/Image/ExifTool/Qualcomm.pm +1 -1
  148. package/bin/lib/Image/ExifTool/QuickTime.pm +25 -4
  149. package/bin/lib/Image/ExifTool/QuickTimeStream.pl +125 -81
  150. package/bin/lib/Image/ExifTool/README +9 -2
  151. package/bin/lib/Image/ExifTool/RIFF.pm +1 -1
  152. package/bin/lib/Image/ExifTool/RSRC.pm +1 -1
  153. package/bin/lib/Image/ExifTool/RTF.pm +1 -1
  154. package/bin/lib/Image/ExifTool/Radiance.pm +1 -1
  155. package/bin/lib/Image/ExifTool/Rawzor.pm +1 -1
  156. package/bin/lib/Image/ExifTool/Real.pm +1 -1
  157. package/bin/lib/Image/ExifTool/Reconyx.pm +1 -1
  158. package/bin/lib/Image/ExifTool/Red.pm +1 -1
  159. package/bin/lib/Image/ExifTool/Ricoh.pm +1 -1
  160. package/bin/lib/Image/ExifTool/Samsung.pm +1 -1
  161. package/bin/lib/Image/ExifTool/Sanyo.pm +1 -1
  162. package/bin/lib/Image/ExifTool/Scalado.pm +1 -1
  163. package/bin/lib/Image/ExifTool/Shift.pl +3 -1
  164. package/bin/lib/Image/ExifTool/Shortcuts.pm +1 -1
  165. package/bin/lib/Image/ExifTool/Sigma.pm +1 -1
  166. package/bin/lib/Image/ExifTool/SigmaRaw.pm +1 -1
  167. package/bin/lib/Image/ExifTool/Sony.pm +34 -14
  168. package/bin/lib/Image/ExifTool/SonyIDC.pm +1 -1
  169. package/bin/lib/Image/ExifTool/Stim.pm +1 -1
  170. package/bin/lib/Image/ExifTool/TagInfoXML.pm +11 -6
  171. package/bin/lib/Image/ExifTool/TagLookup.pm +6589 -5877
  172. package/bin/lib/Image/ExifTool/TagNames.pod +1681 -65
  173. package/bin/lib/Image/ExifTool/Text.pm +1 -1
  174. package/bin/lib/Image/ExifTool/Theora.pm +1 -1
  175. package/bin/lib/Image/ExifTool/Torrent.pm +1 -1
  176. package/bin/lib/Image/ExifTool/Unknown.pm +1 -1
  177. package/bin/lib/Image/ExifTool/VCard.pm +1 -1
  178. package/bin/lib/Image/ExifTool/Validate.pm +1 -1
  179. package/bin/lib/Image/ExifTool/Vorbis.pm +1 -1
  180. package/bin/lib/Image/ExifTool/WTV.pm +1 -1
  181. package/bin/lib/Image/ExifTool/WriteCanonRaw.pl +1 -1
  182. package/bin/lib/Image/ExifTool/WriteExif.pl +1 -1
  183. package/bin/lib/Image/ExifTool/WriteIPTC.pl +1 -1
  184. package/bin/lib/Image/ExifTool/WritePDF.pl +1 -1
  185. package/bin/lib/Image/ExifTool/WritePNG.pl +30 -10
  186. package/bin/lib/Image/ExifTool/WritePhotoshop.pl +1 -1
  187. package/bin/lib/Image/ExifTool/WritePostScript.pl +1 -1
  188. package/bin/lib/Image/ExifTool/WriteQuickTime.pl +12 -1
  189. package/bin/lib/Image/ExifTool/WriteXMP.pl +11 -12
  190. package/bin/lib/Image/ExifTool/Writer.pl +56 -10
  191. package/bin/lib/Image/ExifTool/XMP.pm +164 -52
  192. package/bin/lib/Image/ExifTool/XMP2.pl +6 -3
  193. package/bin/lib/Image/ExifTool/XMPStruct.pl +4 -2
  194. package/bin/lib/Image/ExifTool/ZIP.pm +10 -2
  195. package/bin/lib/Image/ExifTool/ZISRAW.pm +1 -1
  196. package/bin/lib/Image/ExifTool/iWork.pm +1 -1
  197. package/bin/lib/Image/ExifTool.pm +98 -23
  198. package/bin/lib/Image/ExifTool.pod +76 -67
  199. package/bin/perl-Image-ExifTool.spec +43 -43
  200. package/bin/pp_build_exe.args +6 -5
  201. package/package.json +3 -3
@@ -12,7 +12,7 @@ meta information extracted from or written to a file.
12
12
  =head1 TAG TABLES
13
13
 
14
14
  The tables listed below give the names of all tags recognized by ExifTool.
15
- They contain a total of 24327 tags, with 15772 unique tag names.
15
+ They contain a total of 25764 tags, with 16462 unique tag names.
16
16
 
17
17
  B<Tag ID>, B<Index#> or B<Sequence> is given in the first column of each
18
18
  table. A B<Tag ID> is the computer-readable equivalent of a tag name, and
@@ -156,6 +156,7 @@ L<https://www.w3.org/Graphics/JPEG/jfif3.pdf> for the JPEG specification.
156
156
  Samsung Samsung Trailer
157
157
  EmbeddedVideo no
158
158
  Insta360 no
159
+ NikonApp no
159
160
  PreviewImage yes
160
161
 
161
162
  =head3 JPEG AVI1 Tags
@@ -925,6 +926,20 @@ for the official EXIF 2.32 specification.
925
926
  0xc7ec DepthUnits IFD0 int16u!
926
927
  0xc7ed DepthMeasureType IFD0 int16u!
927
928
  0xc7ee EnhanceParams IFD0 string!
929
+ 0xcd2d ProfileGainTableMap SubIFD undef!
930
+ 0xcd2e SemanticName SubIFD no
931
+ 0xcd30 SemanticInstanceIFD SubIFD no
932
+ 0xcd31 CalibrationIlluminant3 IFD0 int16u!
933
+ 0xcd32 CameraCalibration3 IFD0 rational64s[n]!
934
+ 0xcd33 ColorMatrix3 IFD0 rational64s[n]!
935
+ 0xcd34 ForwardMatrix3 IFD0 rational64s[n]!
936
+ 0xcd35 IlluminantData1 IFD0 undef!
937
+ 0xcd36 IlluminantData2 IFD0 undef!
938
+ 0xcd37 IlluminantData3 IFD0 undef!
939
+ 0xcd38 MaskSubArea SubIFD no
940
+ 0xcd39 ProfileHueSatMapData3 IFD0 float[n]!
941
+ 0xcd3a ReductionMatrix3 IFD0 rational64s[n]!
942
+ 0xcd3b RGBTables IFD0 undef!
928
943
  0xea1c Padding ExifIFD undef!
929
944
  0xea1d OffsetSchema ExifIFD int32s!
930
945
  0xfde8 OwnerName ExifIFD string/
@@ -1237,6 +1252,7 @@ L<http://www.adobe.com/devnet/xmp/> for the official XMP specification.
1237
1252
  acdsee XMP acdsee
1238
1253
  album XMP Album
1239
1254
  apple-fi XMP apple_fi
1255
+ ast Nikon ast
1240
1256
  aux XMP aux
1241
1257
  cc XMP cc
1242
1258
  cell XMP cell
@@ -1276,6 +1292,7 @@ L<http://www.adobe.com/devnet/xmp/> for the official XMP specification.
1276
1292
  mwg-coll MWG Collections
1277
1293
  mwg-kw MWG Keywords
1278
1294
  mwg-rs MWG Regions
1295
+ nine Nikon nine
1279
1296
  pdf XMP pdf
1280
1297
  pdfx XMP pdfx
1281
1298
  photomech PhotoMechanic XMP
@@ -1288,6 +1305,7 @@ L<http://www.adobe.com/devnet/xmp/> for the official XMP specification.
1288
1305
  prm XMP prm
1289
1306
  pur XMP pur
1290
1307
  rdf XMP rdf
1308
+ sdc Nikon sdc
1291
1309
  swf XMP swf
1292
1310
  tiff XMP tiff
1293
1311
  x XMP x
@@ -1420,6 +1438,7 @@ These tags belong to the ExifTool XMP-aux family 1 group.
1420
1438
  LensID string
1421
1439
  LensInfo string/
1422
1440
  LensSerialNumber string/
1441
+ NeutralDensityFactor string
1423
1442
  OwnerName string/
1424
1443
  SerialNumber string/
1425
1444
  VignetteCorrectionAlreadyApplied boolean
@@ -1497,17 +1516,85 @@ These tags belong to the ExifTool XMP-crd family 1 group.
1497
1516
  CircGradBasedCorrMaskBottom real/_
1498
1517
  CircGradBasedCorrMaskCenterValue real/_
1499
1518
  CircGradBasedCorrMaskCenterWeight real/_
1519
+ CircGradBasedCorrMaskRange CorrRangeMask Struct_+
1520
+ CircGradBasedCorrMaskRangeAreaModels AreaModels Struct_+
1521
+ CircGradBasedCorrMaskRangeAreaModelsComponents string/_+
1522
+ CircGradBasedCorrMaskRangeAreaModelsColorSampleInfo string/_+
1523
+ CircGradBasedCorrMaskRangeColorAmount real/_+
1524
+ CircGradBasedCorrMaskRangeDepthFeather real/_+
1525
+ CircGradBasedCorrMaskRangeDepthMax real/_+
1526
+ CircGradBasedCorrMaskRangeDepthMin real/_+
1527
+ CircGradBasedCorrMaskRangeInvert boolean/_+
1528
+ CircGradBasedCorrMaskRangeLumFeather real/_+
1529
+ CircGradBasedCorrMaskRangeLuminanceDepthSampleInfo string/_+
1530
+ CircGradBasedCorrMaskRangeLumMax real/_+
1531
+ CircGradBasedCorrMaskRangeLumMin real/_+
1532
+ CircGradBasedCorrMaskRangeLumRange string/_+
1533
+ CircGradBasedCorrMaskRangeSampleType integer/_+
1534
+ CircGradBasedCorrMaskRangeType string/_+
1535
+ CircGradBasedCorrMaskRangeVersion string/_+
1500
1536
  CircGradBasedCorrMaskDabs string/_
1501
1537
  CircGradBasedCorrMaskFeather real/_
1502
1538
  CircGradBasedCorrMaskFlipped boolean/_
1503
1539
  CircGradBasedCorrMaskFlow real/_
1504
1540
  CircGradBasedCorrMaskFullX real/_
1505
1541
  CircGradBasedCorrMaskFullY real/_
1542
+ CircGradBasedCorrMaskInputDigest string/_
1506
1543
  CircGradBasedCorrMaskLeft real/_
1544
+ CircGradBasedCorrMaskMaskActive boolean/_
1545
+ CircGradBasedCorrMaskMaskBlendMode integer/_
1546
+ CircGradBasedCorrMaskMaskDigest string/_
1547
+ CircGradBasedCorrMaskMaskInverted boolean/_
1548
+ CircGradBasedCorrMaskMaskName string/_
1549
+ CircGradBasedCorrMaskMasks CorrectionMask Struct_+
1550
+ CircGradBasedCorrMaskMasksAlpha real/_
1551
+ CircGradBasedCorrMaskMasksAngle real/_
1552
+ CircGradBasedCorrMaskMasksBottom real/_
1553
+ CircGradBasedCorrMaskMasksCenterValue real/_
1554
+ CircGradBasedCorrMaskMasksCenterWeight real/_
1555
+ CircGradBasedCorrMaskMasksDabs string/_+
1556
+ CircGradBasedCorrMaskMasksFeather real/_
1557
+ CircGradBasedCorrMaskMasksFlipped boolean/_
1558
+ CircGradBasedCorrMaskMasksFlow real/_
1559
+ CircGradBasedCorrMaskMasksFullX real/_
1560
+ CircGradBasedCorrMaskMasksFullY real/_
1561
+ CircGradBasedCorrMaskMasksInputDigest string/_
1562
+ CircGradBasedCorrMaskMasksLeft real/_
1563
+ CircGradBasedCorrMaskMasksMaskActive boolean/_
1564
+ CircGradBasedCorrMaskMasksMaskBlendMode integer/_
1565
+ CircGradBasedCorrMaskMasksMaskDigest string/_
1566
+ CircGradBasedCorrMaskMasksMaskInverted boolean/_
1567
+ CircGradBasedCorrMaskMasksMaskName string/_
1568
+ CircGradBasedCorrMaskMasksMaskSubType string/_
1569
+ CircGradBasedCorrMaskMasksMaskSyncID string/_
1570
+ CircGradBasedCorrMaskMasksValue real/_
1571
+ CircGradBasedCorrMaskMasksMaskVersion string/_
1572
+ CircGradBasedCorrMaskMasksMidpoint real/_
1573
+ CircGradBasedCorrMaskMasksOrigin string/_
1574
+ CircGradBasedCorrMaskMasksPerimeterValue real/_
1575
+ CircGradBasedCorrMaskMasksRadius real/_
1576
+ CircGradBasedCorrMaskMasksReferencePoint string/_
1577
+ CircGradBasedCorrMaskMasksRight real/_
1578
+ CircGradBasedCorrMaskMasksRoundness real/_
1579
+ CircGradBasedCorrMaskMasksSizeX real/_
1580
+ CircGradBasedCorrMaskMasksSizeY real/_
1581
+ CircGradBasedCorrMaskMasksTop real/_
1582
+ CircGradBasedCorrMaskMaskSubType string/_
1583
+ CircGradBasedCorrMaskMasksVersion integer/_
1584
+ CircGradBasedCorrMaskMasksWhat string/_
1585
+ CircGradBasedCorrMaskMasksWholeImageArea string/_
1586
+ CircGradBasedCorrMaskMasksX real/_
1587
+ CircGradBasedCorrMaskMasksY real/_
1588
+ CircGradBasedCorrMaskMaskSyncID string/_
1589
+ CircGradBasedCorrMaskMasksZeroX real/_
1590
+ CircGradBasedCorrMaskMasksZeroY real/_
1507
1591
  CircGradBasedCorrMaskValue real/_
1592
+ CircGradBasedCorrMaskMaskVersion string/_
1508
1593
  CircGradBasedCorrMaskMidpoint real/_
1594
+ CircGradBasedCorrMaskOrigin string/_
1509
1595
  CircGradBasedCorrMaskPerimeterValue real/_
1510
1596
  CircGradBasedCorrMaskRadius real/_
1597
+ CircGradBasedCorrMaskReferencePoint string/_
1511
1598
  CircGradBasedCorrMaskRight real/_
1512
1599
  CircGradBasedCorrMaskRoundness real/_
1513
1600
  CircGradBasedCorrMaskSizeX real/_
@@ -1515,20 +1602,30 @@ These tags belong to the ExifTool XMP-crd family 1 group.
1515
1602
  CircGradBasedCorrMaskTop real/_
1516
1603
  CircGradBasedCorrMaskVersion integer/_
1517
1604
  CircGradBasedCorrMaskWhat string/_
1605
+ CircGradBasedCorrMaskWholeImageArea string/_
1518
1606
  CircGradBasedCorrMaskX real/_
1519
1607
  CircGradBasedCorrMaskY real/_
1520
1608
  CircGradBasedCorrMaskZeroX real/_
1521
1609
  CircGradBasedCorrMaskZeroY real/_
1522
- CircGradBasedCorrRangeMask CorrectionRangeMask Struct_+
1610
+ CircGradBasedCorrCorrectionName string/_+
1611
+ CircGradBasedCorrRangeMask CorrRangeMask Struct_+
1612
+ CircGradBasedCorrRangeMaskAreaModels AreaModels Struct_+
1613
+ CircGradBasedCorrRangeMaskAreaModelsComponents string/_+
1614
+ CircGradBasedCorrRangeMaskAreaModelsColorSampleInfo string/_+
1523
1615
  CircGradBasedCorrRangeMaskColorAmount real/_+
1524
1616
  CircGradBasedCorrRangeMaskDepthFeather real/_+
1525
1617
  CircGradBasedCorrRangeMaskDepthMax real/_+
1526
1618
  CircGradBasedCorrRangeMaskDepthMin real/_+
1619
+ CircGradBasedCorrRangeMaskInvert boolean/_+
1527
1620
  CircGradBasedCorrRangeMaskLumFeather real/_+
1621
+ CircGradBasedCorrRangeMaskLuminanceDepthSampleInfo string/_+
1528
1622
  CircGradBasedCorrRangeMaskLumMax real/_+
1529
1623
  CircGradBasedCorrRangeMaskLumMin real/_+
1624
+ CircGradBasedCorrRangeMaskLumRange string/_+
1625
+ CircGradBasedCorrRangeMaskSampleType integer/_+
1530
1626
  CircGradBasedCorrRangeMaskType string/_+
1531
1627
  CircGradBasedCorrRangeMaskVersion string/_+
1628
+ CircGradBasedCorrCorrectionSyncID string/_+
1532
1629
  CircGradBasedCorrBlacks2012 real/_
1533
1630
  CircGradBasedCorrBrightness real/_
1534
1631
  CircGradBasedCorrClarity real/_
@@ -1549,8 +1646,8 @@ These tags belong to the ExifTool XMP-crd family 1 group.
1549
1646
  CircGradBasedCorrTemperature real/_
1550
1647
  CircGradBasedCorrTexture real/_
1551
1648
  CircGradBasedCorrTint real/_
1552
- CircGradBasedCorrHue real/_
1553
- CircGradBasedCorrSaturation real/_
1649
+ CircGradBasedCorrToningHue real/_
1650
+ CircGradBasedCorrToningSaturation real/_
1554
1651
  CircGradBasedCorrWhites2012 real/_
1555
1652
  CircGradBasedCorrWhat string/_
1556
1653
  Clarity integer/
@@ -1570,6 +1667,7 @@ These tags belong to the ExifTool XMP-crd family 1 group.
1570
1667
  ColorNoiseReduction integer/
1571
1668
  ColorNoiseReductionDetail integer/
1572
1669
  ColorNoiseReductionSmoothness integer/
1670
+ CompatibleVersion string/
1573
1671
  ContactInfo string/
1574
1672
  Contrast integer/
1575
1673
  Contrast2012 integer/
@@ -1612,17 +1710,85 @@ These tags belong to the ExifTool XMP-crd family 1 group.
1612
1710
  GradientBasedCorrMaskBottom real/_
1613
1711
  GradientBasedCorrMaskCenterValue real/_
1614
1712
  GradientBasedCorrMaskCenterWeight real/_
1713
+ GradientBasedCorrMaskRange CorrRangeMask Struct_+
1714
+ GradientBasedCorrMaskRangeAreaModels AreaModels Struct_+
1715
+ GradientBasedCorrMaskRangeAreaModelsComponents string/_+
1716
+ GradientBasedCorrMaskRangeAreaModelsColorSampleInfo string/_+
1717
+ GradientBasedCorrMaskRangeColorAmount real/_+
1718
+ GradientBasedCorrMaskRangeDepthFeather real/_+
1719
+ GradientBasedCorrMaskRangeDepthMax real/_+
1720
+ GradientBasedCorrMaskRangeDepthMin real/_+
1721
+ GradientBasedCorrMaskRangeInvert boolean/_+
1722
+ GradientBasedCorrMaskRangeLumFeather real/_+
1723
+ GradientBasedCorrMaskRangeLuminanceDepthSampleInfo string/_+
1724
+ GradientBasedCorrMaskRangeLumMax real/_+
1725
+ GradientBasedCorrMaskRangeLumMin real/_+
1726
+ GradientBasedCorrMaskRangeLumRange string/_+
1727
+ GradientBasedCorrMaskRangeSampleType integer/_+
1728
+ GradientBasedCorrMaskRangeType string/_+
1729
+ GradientBasedCorrMaskRangeVersion string/_+
1615
1730
  GradientBasedCorrMaskDabs string/_
1616
1731
  GradientBasedCorrMaskFeather real/_
1617
1732
  GradientBasedCorrMaskFlipped boolean/_
1618
1733
  GradientBasedCorrMaskFlow real/_
1619
1734
  GradientBasedCorrMaskFullX real/_
1620
1735
  GradientBasedCorrMaskFullY real/_
1736
+ GradientBasedCorrMaskInputDigest string/_
1621
1737
  GradientBasedCorrMaskLeft real/_
1738
+ GradientBasedCorrMaskMaskActive boolean/_
1739
+ GradientBasedCorrMaskMaskBlendMode integer/_
1740
+ GradientBasedCorrMaskMaskDigest string/_
1741
+ GradientBasedCorrMaskMaskInverted boolean/_
1742
+ GradientBasedCorrMaskMaskName string/_
1743
+ GradientBasedCorrMaskMasks CorrectionMask Struct_+
1744
+ GradientBasedCorrMaskMasksAlpha real/_
1745
+ GradientBasedCorrMaskMasksAngle real/_
1746
+ GradientBasedCorrMaskMasksBottom real/_
1747
+ GradientBasedCorrMaskMasksCenterValue real/_
1748
+ GradientBasedCorrMaskMasksCenterWeight real/_
1749
+ GradientBasedCorrMaskMasksDabs string/_+
1750
+ GradientBasedCorrMaskMasksFeather real/_
1751
+ GradientBasedCorrMaskMasksFlipped boolean/_
1752
+ GradientBasedCorrMaskMasksFlow real/_
1753
+ GradientBasedCorrMaskMasksFullX real/_
1754
+ GradientBasedCorrMaskMasksFullY real/_
1755
+ GradientBasedCorrMaskMasksInputDigest string/_
1756
+ GradientBasedCorrMaskMasksLeft real/_
1757
+ GradientBasedCorrMaskMasksMaskActive boolean/_
1758
+ GradientBasedCorrMaskMasksMaskBlendMode integer/_
1759
+ GradientBasedCorrMaskMasksMaskDigest string/_
1760
+ GradientBasedCorrMaskMasksMaskInverted boolean/_
1761
+ GradientBasedCorrMaskMasksMaskName string/_
1762
+ GradientBasedCorrMaskMasksMaskSubType string/_
1763
+ GradientBasedCorrMaskMasksMaskSyncID string/_
1764
+ GradientBasedCorrMaskMasksValue real/_
1765
+ GradientBasedCorrMaskMasksMaskVersion string/_
1766
+ GradientBasedCorrMaskMasksMidpoint real/_
1767
+ GradientBasedCorrMaskMasksOrigin string/_
1768
+ GradientBasedCorrMaskMasksPerimeterValue real/_
1769
+ GradientBasedCorrMaskMasksRadius real/_
1770
+ GradientBasedCorrMaskMasksReferencePoint string/_
1771
+ GradientBasedCorrMaskMasksRight real/_
1772
+ GradientBasedCorrMaskMasksRoundness real/_
1773
+ GradientBasedCorrMaskMasksSizeX real/_
1774
+ GradientBasedCorrMaskMasksSizeY real/_
1775
+ GradientBasedCorrMaskMasksTop real/_
1776
+ GradientBasedCorrMaskMaskSubType string/_
1777
+ GradientBasedCorrMaskMasksVersion integer/_
1778
+ GradientBasedCorrMaskMasksWhat string/_
1779
+ GradientBasedCorrMaskMasksWholeImageArea string/_
1780
+ GradientBasedCorrMaskMasksX real/_
1781
+ GradientBasedCorrMaskMasksY real/_
1782
+ GradientBasedCorrMaskMaskSyncID string/_
1783
+ GradientBasedCorrMaskMasksZeroX real/_
1784
+ GradientBasedCorrMaskMasksZeroY real/_
1622
1785
  GradientBasedCorrMaskValue real/_
1786
+ GradientBasedCorrMaskMaskVersion string/_
1623
1787
  GradientBasedCorrMaskMidpoint real/_
1788
+ GradientBasedCorrMaskOrigin string/_
1624
1789
  GradientBasedCorrMaskPerimeterValue real/_
1625
1790
  GradientBasedCorrMaskRadius real/_
1791
+ GradientBasedCorrMaskReferencePoint string/_
1626
1792
  GradientBasedCorrMaskRight real/_
1627
1793
  GradientBasedCorrMaskRoundness real/_
1628
1794
  GradientBasedCorrMaskSizeX real/_
@@ -1630,20 +1796,30 @@ These tags belong to the ExifTool XMP-crd family 1 group.
1630
1796
  GradientBasedCorrMaskTop real/_
1631
1797
  GradientBasedCorrMaskVersion integer/_
1632
1798
  GradientBasedCorrMaskWhat string/_
1799
+ GradientBasedCorrMaskWholeImageArea string/_
1633
1800
  GradientBasedCorrMaskX real/_
1634
1801
  GradientBasedCorrMaskY real/_
1635
1802
  GradientBasedCorrMaskZeroX real/_
1636
1803
  GradientBasedCorrMaskZeroY real/_
1637
- GradientBasedCorrRangeMask CorrectionRangeMask Struct_+
1804
+ GradientBasedCorrCorrectionName string/_+
1805
+ GradientBasedCorrRangeMask CorrRangeMask Struct_+
1806
+ GradientBasedCorrRangeMaskAreaModels AreaModels Struct_+
1807
+ GradientBasedCorrRangeMaskAreaModelsComponents string/_+
1808
+ GradientBasedCorrRangeMaskAreaModelsColorSampleInfo string/_+
1638
1809
  GradientBasedCorrRangeMaskColorAmount real/_+
1639
1810
  GradientBasedCorrRangeMaskDepthFeather real/_+
1640
1811
  GradientBasedCorrRangeMaskDepthMax real/_+
1641
1812
  GradientBasedCorrRangeMaskDepthMin real/_+
1813
+ GradientBasedCorrRangeMaskInvert boolean/_+
1642
1814
  GradientBasedCorrRangeMaskLumFeather real/_+
1815
+ GradientBasedCorrRangeMaskLuminanceDepthSampleInfo string/_+
1643
1816
  GradientBasedCorrRangeMaskLumMax real/_+
1644
1817
  GradientBasedCorrRangeMaskLumMin real/_+
1818
+ GradientBasedCorrRangeMaskLumRange string/_+
1819
+ GradientBasedCorrRangeMaskSampleType integer/_+
1645
1820
  GradientBasedCorrRangeMaskType string/_+
1646
1821
  GradientBasedCorrRangeMaskVersion string/_+
1822
+ GradientBasedCorrCorrectionSyncID string/_+
1647
1823
  GradientBasedCorrBlacks2012 real/_
1648
1824
  GradientBasedCorrBrightness real/_
1649
1825
  GradientBasedCorrClarity real/_
@@ -1664,8 +1840,8 @@ These tags belong to the ExifTool XMP-crd family 1 group.
1664
1840
  GradientBasedCorrTemperature real/_
1665
1841
  GradientBasedCorrTexture real/_
1666
1842
  GradientBasedCorrTint real/_
1667
- GradientBasedCorrHue real/_
1668
- GradientBasedCorrSaturation real/_
1843
+ GradientBasedCorrToningHue real/_
1844
+ GradientBasedCorrToningSaturation real/_
1669
1845
  GradientBasedCorrWhites2012 real/_
1670
1846
  GradientBasedCorrWhat string/_
1671
1847
  GrainAmount integer/
@@ -1730,6 +1906,9 @@ These tags belong to the ExifTool XMP-crd family 1 group.
1730
1906
  LookParametersLookTable string/_
1731
1907
  LookParametersProcessVersion string/_
1732
1908
  LookParametersToneCurvePV2012 string/_+
1909
+ LookParametersToneCurvePV2012Blue string/_+
1910
+ LookParametersToneCurvePV2012Green string/_+
1911
+ LookParametersToneCurvePV2012Red string/_+
1733
1912
  LookParametersVersion string/_
1734
1913
  LookSupportsAmount string/_
1735
1914
  LookSupportsMonochrome string/_
@@ -1746,6 +1925,149 @@ These tags belong to the ExifTool XMP-crd family 1 group.
1746
1925
  LuminanceNoiseReductionContrast integer/
1747
1926
  LuminanceNoiseReductionDetail integer/
1748
1927
  LuminanceSmoothing integer/
1928
+ MaskGroupBasedCorrections Correction Struct+
1929
+ MaskGroupBasedCorrActive boolean/_
1930
+ MaskGroupBasedCorrAmount real/_
1931
+ MaskGroupBasedCorrMask CorrectionMask Struct_+
1932
+ MaskGroupBasedCorrMaskAlpha real/_
1933
+ MaskGroupBasedCorrMaskAngle real/_
1934
+ MaskGroupBasedCorrMaskBottom real/_
1935
+ MaskGroupBasedCorrMaskCenterValue real/_
1936
+ MaskGroupBasedCorrMaskCenterWeight real/_
1937
+ MaskGroupBasedCorrMaskRange CorrRangeMask Struct_+
1938
+ MaskGroupBasedCorrMaskRangeAreaModels AreaModels Struct_+
1939
+ MaskGroupBasedCorrMaskRangeAreaModelsComponents string/_+
1940
+ MaskGroupBasedCorrMaskRangeAreaModelsColorSampleInfo string/_+
1941
+ MaskGroupBasedCorrMaskRangeColorAmount real/_+
1942
+ MaskGroupBasedCorrMaskRangeDepthFeather real/_+
1943
+ MaskGroupBasedCorrMaskRangeDepthMax real/_+
1944
+ MaskGroupBasedCorrMaskRangeDepthMin real/_+
1945
+ MaskGroupBasedCorrMaskRangeInvert boolean/_+
1946
+ MaskGroupBasedCorrMaskRangeLumFeather real/_+
1947
+ MaskGroupBasedCorrMaskRangeLuminanceDepthSampleInfo string/_+
1948
+ MaskGroupBasedCorrMaskRangeLumMax real/_+
1949
+ MaskGroupBasedCorrMaskRangeLumMin real/_+
1950
+ MaskGroupBasedCorrMaskRangeLumRange string/_+
1951
+ MaskGroupBasedCorrMaskRangeSampleType integer/_+
1952
+ MaskGroupBasedCorrMaskRangeType string/_+
1953
+ MaskGroupBasedCorrMaskRangeVersion string/_+
1954
+ MaskGroupBasedCorrMaskDabs string/_+
1955
+ MaskGroupBasedCorrMaskFeather real/_
1956
+ MaskGroupBasedCorrMaskFlipped boolean/_
1957
+ MaskGroupBasedCorrMaskFlow real/_
1958
+ MaskGroupBasedCorrMaskFullX real/_
1959
+ MaskGroupBasedCorrMaskFullY real/_
1960
+ MaskGroupBasedCorrMaskInputDigest string/_
1961
+ MaskGroupBasedCorrMaskLeft real/_
1962
+ MaskGroupBasedCorrMaskMaskActive boolean/_
1963
+ MaskGroupBasedCorrMaskMaskBlendMode integer/_
1964
+ MaskGroupBasedCorrMaskMaskDigest string/_
1965
+ MaskGroupBasedCorrMaskMaskInverted boolean/_
1966
+ MaskGroupBasedCorrMaskMaskName string/_
1967
+ MaskGroupBasedCorrMaskMasks CorrectionMask Struct_+
1968
+ MaskGroupBasedCorrMaskMasksAlpha real/_
1969
+ MaskGroupBasedCorrMaskMasksAngle real/_
1970
+ MaskGroupBasedCorrMaskMasksBottom real/_
1971
+ MaskGroupBasedCorrMaskMasksCenterValue real/_
1972
+ MaskGroupBasedCorrMaskMasksCenterWeight real/_
1973
+ MaskGroupBasedCorrMaskMasksDabs string/_+
1974
+ MaskGroupBasedCorrMaskMasksFeather real/_
1975
+ MaskGroupBasedCorrMaskMasksFlipped boolean/_
1976
+ MaskGroupBasedCorrMaskMasksFlow real/_
1977
+ MaskGroupBasedCorrMaskMasksFullX real/_
1978
+ MaskGroupBasedCorrMaskMasksFullY real/_
1979
+ MaskGroupBasedCorrMaskMasksInputDigest string/_
1980
+ MaskGroupBasedCorrMaskMasksLeft real/_
1981
+ MaskGroupBasedCorrMaskMasksMaskActive boolean/_
1982
+ MaskGroupBasedCorrMaskMasksMaskBlendMode integer/_
1983
+ MaskGroupBasedCorrMaskMasksMaskDigest string/_
1984
+ MaskGroupBasedCorrMaskMasksMaskInverted boolean/_
1985
+ MaskGroupBasedCorrMaskMasksMaskName string/_
1986
+ MaskGroupBasedCorrMaskMasksMaskSubType string/_
1987
+ MaskGroupBasedCorrMaskMasksMaskSyncID string/_
1988
+ MaskGroupBasedCorrMaskMasksValue real/_
1989
+ MaskGroupBasedCorrMaskMasksMaskVersion string/_
1990
+ MaskGroupBasedCorrMaskMasksMidpoint real/_
1991
+ MaskGroupBasedCorrMaskMasksOrigin string/_
1992
+ MaskGroupBasedCorrMaskMasksPerimeterValue real/_
1993
+ MaskGroupBasedCorrMaskMasksRadius real/_
1994
+ MaskGroupBasedCorrMaskMasksReferencePoint string/_
1995
+ MaskGroupBasedCorrMaskMasksRight real/_
1996
+ MaskGroupBasedCorrMaskMasksRoundness real/_
1997
+ MaskGroupBasedCorrMaskMasksSizeX real/_
1998
+ MaskGroupBasedCorrMaskMasksSizeY real/_
1999
+ MaskGroupBasedCorrMaskMasksTop real/_
2000
+ MaskGroupBasedCorrMaskMaskSubType string/_
2001
+ MaskGroupBasedCorrMaskMasksVersion integer/_
2002
+ MaskGroupBasedCorrMaskMasksWhat string/_
2003
+ MaskGroupBasedCorrMaskMasksWholeImageArea string/_
2004
+ MaskGroupBasedCorrMaskMasksX real/_
2005
+ MaskGroupBasedCorrMaskMasksY real/_
2006
+ MaskGroupBasedCorrMaskMaskSyncID string/_
2007
+ MaskGroupBasedCorrMaskMasksZeroX real/_
2008
+ MaskGroupBasedCorrMaskMasksZeroY real/_
2009
+ MaskGroupBasedCorrMaskValue real/_
2010
+ MaskGroupBasedCorrMaskMaskVersion string/_
2011
+ MaskGroupBasedCorrMaskMidpoint real/_
2012
+ MaskGroupBasedCorrMaskOrigin string/_
2013
+ MaskGroupBasedCorrMaskPerimeterValue real/_
2014
+ MaskGroupBasedCorrMaskRadius real/_
2015
+ MaskGroupBasedCorrMaskReferencePoint string/_
2016
+ MaskGroupBasedCorrMaskRight real/_
2017
+ MaskGroupBasedCorrMaskRoundness real/_
2018
+ MaskGroupBasedCorrMaskSizeX real/_
2019
+ MaskGroupBasedCorrMaskSizeY real/_
2020
+ MaskGroupBasedCorrMaskTop real/_
2021
+ MaskGroupBasedCorrMaskVersion integer/_
2022
+ MaskGroupBasedCorrMaskWhat string/_
2023
+ MaskGroupBasedCorrMaskWholeImageArea string/_
2024
+ MaskGroupBasedCorrMaskX real/_
2025
+ MaskGroupBasedCorrMaskY real/_
2026
+ MaskGroupBasedCorrMaskZeroX real/_
2027
+ MaskGroupBasedCorrMaskZeroY real/_
2028
+ MaskGroupBasedCorrCorrectionName string/_+
2029
+ MaskGroupBasedCorrRangeMask CorrRangeMask Struct_+
2030
+ MaskGroupBasedCorrRangeMaskAreaModels AreaModels Struct_+
2031
+ MaskGroupBasedCorrRangeMaskAreaModelsComponents string/_+
2032
+ MaskGroupBasedCorrRangeMaskAreaModelsColorSampleInfo string/_+
2033
+ MaskGroupBasedCorrRangeMaskColorAmount real/_+
2034
+ MaskGroupBasedCorrRangeMaskDepthFeather real/_+
2035
+ MaskGroupBasedCorrRangeMaskDepthMax real/_+
2036
+ MaskGroupBasedCorrRangeMaskDepthMin real/_+
2037
+ MaskGroupBasedCorrRangeMaskInvert boolean/_+
2038
+ MaskGroupBasedCorrRangeMaskLumFeather real/_+
2039
+ MaskGroupBasedCorrRangeMaskLuminanceDepthSampleInfo string/_+
2040
+ MaskGroupBasedCorrRangeMaskLumMax real/_+
2041
+ MaskGroupBasedCorrRangeMaskLumMin real/_+
2042
+ MaskGroupBasedCorrRangeMaskLumRange string/_+
2043
+ MaskGroupBasedCorrRangeMaskSampleType integer/_+
2044
+ MaskGroupBasedCorrRangeMaskType string/_+
2045
+ MaskGroupBasedCorrRangeMaskVersion string/_+
2046
+ MaskGroupBasedCorrCorrectionSyncID string/_+
2047
+ MaskGroupBasedCorrBlacks2012 real/_
2048
+ MaskGroupBasedCorrBrightness real/_
2049
+ MaskGroupBasedCorrClarity real/_
2050
+ MaskGroupBasedCorrClarity2012 real/_
2051
+ MaskGroupBasedCorrContrast real/_
2052
+ MaskGroupBasedCorrContrast2012 real/_
2053
+ MaskGroupBasedCorrDefringe real/_
2054
+ MaskGroupBasedCorrDehaze real/_
2055
+ MaskGroupBasedCorrExposure real/_
2056
+ MaskGroupBasedCorrExposure2012 real/_
2057
+ MaskGroupBasedCorrHighlights2012 real/_
2058
+ MaskGroupBasedCorrHue real/_
2059
+ MaskGroupBasedCorrLuminanceNoise real/_
2060
+ MaskGroupBasedCorrMoire real/_
2061
+ MaskGroupBasedCorrSaturation real/_
2062
+ MaskGroupBasedCorrShadows2012 real/_
2063
+ MaskGroupBasedCorrSharpness real/_
2064
+ MaskGroupBasedCorrTemperature real/_
2065
+ MaskGroupBasedCorrTexture real/_
2066
+ MaskGroupBasedCorrTint real/_
2067
+ MaskGroupBasedCorrToningHue real/_
2068
+ MaskGroupBasedCorrToningSaturation real/_
2069
+ MaskGroupBasedCorrWhites2012 real/_
2070
+ MaskGroupBasedCorrWhat string/_
1749
2071
  MoireFilter string/
1750
2072
  Name lang-alt/
1751
2073
  NegativeCacheLargePreviewSize integer/
@@ -1761,17 +2083,85 @@ These tags belong to the ExifTool XMP-crd family 1 group.
1761
2083
  PaintCorrectionMaskBottom real/_
1762
2084
  PaintCorrectionMaskCenterValue real/_
1763
2085
  PaintCorrectionMaskCenterWeight real/_
2086
+ PaintCorrectionMaskRange CorrRangeMask Struct_+
2087
+ PaintCorrectionMaskRangeAreaModels AreaModels Struct_+
2088
+ PaintCorrectionMaskRangeAreaModelsComponents string/_+
2089
+ PaintCorrectionMaskRangeAreaModelsColorSampleInfo string/_+
2090
+ PaintCorrectionMaskRangeColorAmount real/_+
2091
+ PaintCorrectionMaskRangeDepthFeather real/_+
2092
+ PaintCorrectionMaskRangeDepthMax real/_+
2093
+ PaintCorrectionMaskRangeDepthMin real/_+
2094
+ PaintCorrectionMaskRangeInvert boolean/_+
2095
+ PaintCorrectionMaskRangeLumFeather real/_+
2096
+ PaintCorrectionMaskRangeLuminanceDepthSampleInfo string/_+
2097
+ PaintCorrectionMaskRangeLumMax real/_+
2098
+ PaintCorrectionMaskRangeLumMin real/_+
2099
+ PaintCorrectionMaskRangeLumRange string/_+
2100
+ PaintCorrectionMaskRangeSampleType integer/_+
2101
+ PaintCorrectionMaskRangeType string/_+
2102
+ PaintCorrectionMaskRangeVersion string/_+
1764
2103
  PaintCorrectionMaskDabs string/_
1765
2104
  PaintCorrectionMaskFeather real/_
1766
2105
  PaintCorrectionMaskFlipped boolean/_
1767
2106
  PaintCorrectionMaskFlow real/_
1768
2107
  PaintCorrectionMaskFullX real/_
1769
2108
  PaintCorrectionMaskFullY real/_
2109
+ PaintCorrectionMaskInputDigest string/_
1770
2110
  PaintCorrectionMaskLeft real/_
2111
+ PaintCorrectionMaskMaskActive boolean/_
2112
+ PaintCorrectionMaskMaskBlendMode integer/_
2113
+ PaintCorrectionMaskMaskDigest string/_
2114
+ PaintCorrectionMaskMaskInverted boolean/_
2115
+ PaintCorrectionMaskMaskName string/_
2116
+ PaintCorrectionMaskMasks CorrectionMask Struct_+
2117
+ PaintCorrectionMaskMasksAlpha real/_
2118
+ PaintCorrectionMaskMasksAngle real/_
2119
+ PaintCorrectionMaskMasksBottom real/_
2120
+ PaintCorrectionMaskMasksCenterValue real/_
2121
+ PaintCorrectionMaskMasksCenterWeight real/_
2122
+ PaintCorrectionMaskMasksDabs string/_+
2123
+ PaintCorrectionMaskMasksFeather real/_
2124
+ PaintCorrectionMaskMasksFlipped boolean/_
2125
+ PaintCorrectionMaskMasksFlow real/_
2126
+ PaintCorrectionMaskMasksFullX real/_
2127
+ PaintCorrectionMaskMasksFullY real/_
2128
+ PaintCorrectionMaskMasksInputDigest string/_
2129
+ PaintCorrectionMaskMasksLeft real/_
2130
+ PaintCorrectionMaskMasksMaskActive boolean/_
2131
+ PaintCorrectionMaskMasksMaskBlendMode integer/_
2132
+ PaintCorrectionMaskMasksMaskDigest string/_
2133
+ PaintCorrectionMaskMasksMaskInverted boolean/_
2134
+ PaintCorrectionMaskMasksMaskName string/_
2135
+ PaintCorrectionMaskMasksMaskSubType string/_
2136
+ PaintCorrectionMaskMasksMaskSyncID string/_
2137
+ PaintCorrectionMaskMasksValue real/_
2138
+ PaintCorrectionMaskMasksMaskVersion string/_
2139
+ PaintCorrectionMaskMasksMidpoint real/_
2140
+ PaintCorrectionMaskMasksOrigin string/_
2141
+ PaintCorrectionMaskMasksPerimeterValue real/_
2142
+ PaintCorrectionMaskMasksRadius real/_
2143
+ PaintCorrectionMaskMasksReferencePoint string/_
2144
+ PaintCorrectionMaskMasksRight real/_
2145
+ PaintCorrectionMaskMasksRoundness real/_
2146
+ PaintCorrectionMaskMasksSizeX real/_
2147
+ PaintCorrectionMaskMasksSizeY real/_
2148
+ PaintCorrectionMaskMasksTop real/_
2149
+ PaintCorrectionMaskMaskSubType string/_
2150
+ PaintCorrectionMaskMasksVersion integer/_
2151
+ PaintCorrectionMaskMasksWhat string/_
2152
+ PaintCorrectionMaskMasksWholeImageArea string/_
2153
+ PaintCorrectionMaskMasksX real/_
2154
+ PaintCorrectionMaskMasksY real/_
2155
+ PaintCorrectionMaskMaskSyncID string/_
2156
+ PaintCorrectionMaskMasksZeroX real/_
2157
+ PaintCorrectionMaskMasksZeroY real/_
1771
2158
  PaintCorrectionMaskValue real/_
2159
+ PaintCorrectionMaskMaskVersion string/_
1772
2160
  PaintCorrectionMaskMidpoint real/_
2161
+ PaintCorrectionMaskOrigin string/_
1773
2162
  PaintCorrectionMaskPerimeterValue real/_
1774
2163
  PaintCorrectionMaskRadius real/_
2164
+ PaintCorrectionMaskReferencePoint string/_
1775
2165
  PaintCorrectionMaskRight real/_
1776
2166
  PaintCorrectionMaskRoundness real/_
1777
2167
  PaintCorrectionMaskSizeX real/_
@@ -1779,20 +2169,30 @@ These tags belong to the ExifTool XMP-crd family 1 group.
1779
2169
  PaintCorrectionMaskTop real/_
1780
2170
  PaintCorrectionMaskVersion integer/_
1781
2171
  PaintCorrectionMaskWhat string/_
2172
+ PaintCorrectionMaskWholeImageArea string/_
1782
2173
  PaintCorrectionMaskX real/_
1783
2174
  PaintCorrectionMaskY real/_
1784
2175
  PaintCorrectionMaskZeroX real/_
1785
2176
  PaintCorrectionMaskZeroY real/_
1786
- PaintCorrectionRangeMask CorrectionRangeMask Struct_+
2177
+ PaintCorrectionCorrectionName string/_+
2178
+ PaintCorrectionRangeMask CorrRangeMask Struct_+
2179
+ PaintCorrectionRangeMaskAreaModels AreaModels Struct_+
2180
+ PaintCorrectionRangeMaskAreaModelsComponents string/_+
2181
+ PaintCorrectionRangeMaskAreaModelsColorSampleInfo string/_+
1787
2182
  PaintCorrectionRangeMaskColorAmount real/_+
1788
2183
  PaintCorrectionRangeMaskDepthFeather real/_+
1789
2184
  PaintCorrectionRangeMaskDepthMax real/_+
1790
2185
  PaintCorrectionRangeMaskDepthMin real/_+
2186
+ PaintCorrectionRangeMaskInvert boolean/_+
1791
2187
  PaintCorrectionRangeMaskLumFeather real/_+
2188
+ PaintCorrectionRangeMaskLuminanceDepthSampleInfo string/_+
1792
2189
  PaintCorrectionRangeMaskLumMax real/_+
1793
2190
  PaintCorrectionRangeMaskLumMin real/_+
2191
+ PaintCorrectionRangeMaskLumRange string/_+
2192
+ PaintCorrectionRangeMaskSampleType integer/_+
1794
2193
  PaintCorrectionRangeMaskType string/_+
1795
2194
  PaintCorrectionRangeMaskVersion string/_+
2195
+ PaintCorrectionCorrectionSyncID string/_+
1796
2196
  PaintCorrectionBlacks2012 real/_
1797
2197
  PaintCorrectionBrightness real/_
1798
2198
  PaintCorrectionClarity real/_
@@ -1813,8 +2213,8 @@ These tags belong to the ExifTool XMP-crd family 1 group.
1813
2213
  PaintCorrectionTemperature real/_
1814
2214
  PaintCorrectionTexture real/_
1815
2215
  PaintCorrectionTint real/_
1816
- PaintCorrectionHue real/_
1817
- PaintCorrectionSaturation real/_
2216
+ PaintCorrectionToningHue real/_
2217
+ PaintCorrectionToningSaturation real/_
1818
2218
  PaintCorrectionWhites2012 real/_
1819
2219
  PaintCorrectionWhat string/_
1820
2220
  ParametricDarks integer/
@@ -1840,6 +2240,13 @@ These tags belong to the ExifTool XMP-crd family 1 group.
1840
2240
  PostCropVignetteStyle integer/
1841
2241
  PresetType string/
1842
2242
  ProcessVersion string/
2243
+ RangeMask RangeMask Struct
2244
+ RangeMaskMapInfo MapInfo Struct_
2245
+ RangeMaskMapInfoLabMax string/_
2246
+ RangeMaskMapInfoLabMin string/_
2247
+ RangeMaskMapInfoLumEq string/_+
2248
+ RangeMaskMapInfoRGBMax string/_
2249
+ RangeMaskMapInfoRGBMin string/_
1843
2250
  RawFileName string/
1844
2251
  RedEyeInfo string/+
1845
2252
  RedHue integer/
@@ -1852,17 +2259,85 @@ These tags belong to the ExifTool XMP-crd family 1 group.
1852
2259
  RetouchAreaMaskBottom real/_
1853
2260
  RetouchAreaMaskCenterValue real/_
1854
2261
  RetouchAreaMaskCenterWeight real/_
2262
+ RetouchAreaMaskRange CorrRangeMask Struct_+
2263
+ RetouchAreaMaskRangeAreaModels AreaModels Struct_+
2264
+ RetouchAreaMaskRangeAreaModelsComponents string/_+
2265
+ RetouchAreaMaskRangeAreaModelsColorSampleInfo string/_+
2266
+ RetouchAreaMaskRangeColorAmount real/_+
2267
+ RetouchAreaMaskRangeDepthFeather real/_+
2268
+ RetouchAreaMaskRangeDepthMax real/_+
2269
+ RetouchAreaMaskRangeDepthMin real/_+
2270
+ RetouchAreaMaskRangeInvert boolean/_+
2271
+ RetouchAreaMaskRangeLumFeather real/_+
2272
+ RetouchAreaMaskRangeLuminanceDepthSampleInfo string/_+
2273
+ RetouchAreaMaskRangeLumMax real/_+
2274
+ RetouchAreaMaskRangeLumMin real/_+
2275
+ RetouchAreaMaskRangeLumRange string/_+
2276
+ RetouchAreaMaskRangeSampleType integer/_+
2277
+ RetouchAreaMaskRangeType string/_+
2278
+ RetouchAreaMaskRangeVersion string/_+
1855
2279
  RetouchAreaMaskDabs string/_
1856
2280
  RetouchAreaMaskFeather real/_
1857
2281
  RetouchAreaMaskFlipped boolean/_
1858
2282
  RetouchAreaMaskFlow real/_
1859
2283
  RetouchAreaMaskFullX real/_
1860
2284
  RetouchAreaMaskFullY real/_
2285
+ RetouchAreaMaskInputDigest string/_
1861
2286
  RetouchAreaMaskLeft real/_
2287
+ RetouchAreaMaskMaskActive boolean/_
2288
+ RetouchAreaMaskMaskBlendMode integer/_
2289
+ RetouchAreaMaskMaskDigest string/_
2290
+ RetouchAreaMaskMaskInverted boolean/_
2291
+ RetouchAreaMaskMaskName string/_
2292
+ RetouchAreaMaskMasks CorrectionMask Struct_+
2293
+ RetouchAreaMaskMasksAlpha real/_
2294
+ RetouchAreaMaskMasksAngle real/_
2295
+ RetouchAreaMaskMasksBottom real/_
2296
+ RetouchAreaMaskMasksCenterValue real/_
2297
+ RetouchAreaMaskMasksCenterWeight real/_
2298
+ RetouchAreaMaskMasksDabs string/_+
2299
+ RetouchAreaMaskMasksFeather real/_
2300
+ RetouchAreaMaskMasksFlipped boolean/_
2301
+ RetouchAreaMaskMasksFlow real/_
2302
+ RetouchAreaMaskMasksFullX real/_
2303
+ RetouchAreaMaskMasksFullY real/_
2304
+ RetouchAreaMaskMasksInputDigest string/_
2305
+ RetouchAreaMaskMasksLeft real/_
2306
+ RetouchAreaMaskMasksMaskActive boolean/_
2307
+ RetouchAreaMaskMasksMaskBlendMode integer/_
2308
+ RetouchAreaMaskMasksMaskDigest string/_
2309
+ RetouchAreaMaskMasksMaskInverted boolean/_
2310
+ RetouchAreaMaskMasksMaskName string/_
2311
+ RetouchAreaMaskMasksMaskSubType string/_
2312
+ RetouchAreaMaskMasksMaskSyncID string/_
2313
+ RetouchAreaMaskMasksValue real/_
2314
+ RetouchAreaMaskMasksMaskVersion string/_
2315
+ RetouchAreaMaskMasksMidpoint real/_
2316
+ RetouchAreaMaskMasksOrigin string/_
2317
+ RetouchAreaMaskMasksPerimeterValue real/_
2318
+ RetouchAreaMaskMasksRadius real/_
2319
+ RetouchAreaMaskMasksReferencePoint string/_
2320
+ RetouchAreaMaskMasksRight real/_
2321
+ RetouchAreaMaskMasksRoundness real/_
2322
+ RetouchAreaMaskMasksSizeX real/_
2323
+ RetouchAreaMaskMasksSizeY real/_
2324
+ RetouchAreaMaskMasksTop real/_
2325
+ RetouchAreaMaskMaskSubType string/_
2326
+ RetouchAreaMaskMasksVersion integer/_
2327
+ RetouchAreaMaskMasksWhat string/_
2328
+ RetouchAreaMaskMasksWholeImageArea string/_
2329
+ RetouchAreaMaskMasksX real/_
2330
+ RetouchAreaMaskMasksY real/_
2331
+ RetouchAreaMaskMaskSyncID string/_
2332
+ RetouchAreaMaskMasksZeroX real/_
2333
+ RetouchAreaMaskMasksZeroY real/_
1862
2334
  RetouchAreaMaskValue real/_
2335
+ RetouchAreaMaskMaskVersion string/_
1863
2336
  RetouchAreaMaskMidpoint real/_
2337
+ RetouchAreaMaskOrigin string/_
1864
2338
  RetouchAreaMaskPerimeterValue real/_
1865
2339
  RetouchAreaMaskRadius real/_
2340
+ RetouchAreaMaskReferencePoint string/_
1866
2341
  RetouchAreaMaskRight real/_
1867
2342
  RetouchAreaMaskRoundness real/_
1868
2343
  RetouchAreaMaskSizeX real/_
@@ -1870,6 +2345,7 @@ These tags belong to the ExifTool XMP-crd family 1 group.
1870
2345
  RetouchAreaMaskTop real/_
1871
2346
  RetouchAreaMaskVersion integer/_
1872
2347
  RetouchAreaMaskWhat string/_
2348
+ RetouchAreaMaskWholeImageArea string/_
1873
2349
  RetouchAreaMaskX real/_
1874
2350
  RetouchAreaMaskY real/_
1875
2351
  RetouchAreaMaskZeroX real/_
@@ -1962,7 +2438,10 @@ These tags belong to the ExifTool XMP-crd family 1 group.
1962
2438
  CorrectionActive boolean
1963
2439
  CorrectionAmount real
1964
2440
  CorrectionMasks CorrectionMask Struct+
1965
- CorrectionRangeMask CorrectionRangeMask Struct
2441
+ CorrectionName string
2442
+ CorrRangeMask CorrRangeMask Struct
2443
+ -
2444
+ CorrectionSyncID string
1966
2445
  LocalBlacks2012 real
1967
2446
  LocalBrightness real
1968
2447
  LocalClarity real
@@ -1997,17 +2476,31 @@ These tags belong to the ExifTool XMP-crd family 1 group.
1997
2476
  Bottom real
1998
2477
  CenterValue real
1999
2478
  CenterWeight real
2479
+ CorrRangeMask CorrRangeMask Struct
2480
+ -
2000
2481
  Dabs string+
2001
2482
  Feather real
2002
2483
  Flipped boolean
2003
2484
  Flow real
2004
2485
  FullX real
2005
2486
  FullY real
2487
+ InputDigest string
2006
2488
  Left real
2489
+ MaskActive boolean
2490
+ MaskBlendMode integer
2491
+ MaskDigest string
2492
+ MaskInverted boolean
2493
+ MaskName string
2494
+ MaskSubType string
2495
+ MaskSyncID string
2007
2496
  MaskValue real
2497
+ MaskVersion string
2498
+ Masks CorrectionMask Struct
2008
2499
  Midpoint real
2500
+ Origin string
2009
2501
  PerimeterValue real
2010
2502
  Radius real
2503
+ ReferencePoint string
2011
2504
  Right real
2012
2505
  Roundness real
2013
2506
  SizeX real
@@ -2015,25 +2508,40 @@ These tags belong to the ExifTool XMP-crd family 1 group.
2015
2508
  Top real
2016
2509
  Version integer
2017
2510
  What string
2511
+ WholeImageArea string
2018
2512
  X real
2019
2513
  Y real
2020
2514
  ZeroX real
2021
2515
  ZeroY real
2022
2516
 
2023
- =head3 XMP CorrectionRangeMask Struct
2517
+ =head3 XMP CorrRangeMask Struct
2518
+
2519
+ Called CorrectionRangeMask by the spec.
2024
2520
 
2025
2521
  Field Name Writable
2026
2522
  ---------- --------
2523
+ AreaModels AreaModels Struct+
2027
2524
  ColorAmount real
2028
2525
  DepthFeather real
2029
2526
  DepthMax real
2030
2527
  DepthMin real
2528
+ Invert boolean
2031
2529
  LumFeather real
2032
2530
  LumMax real
2033
2531
  LumMin real
2532
+ LumRange string
2533
+ LuminanceDepthSampleInfo string
2534
+ SampleType integer
2034
2535
  Type string
2035
2536
  Version string
2036
2537
 
2538
+ =head3 XMP AreaModels Struct
2539
+
2540
+ Field Name Writable
2541
+ ---------- --------
2542
+ AreaComponents string+
2543
+ ColorRangeMaskAreaSampleInfo string
2544
+
2037
2545
  =head3 XMP Look Struct
2038
2546
 
2039
2547
  Field Name Writable
@@ -2059,8 +2567,35 @@ These tags belong to the ExifTool XMP-crd family 1 group.
2059
2567
  LookTable string
2060
2568
  ProcessVersion string
2061
2569
  ToneCurvePV2012 string+
2570
+ ToneCurvePV2012Blue string+
2571
+ ToneCurvePV2012Green string+
2572
+ ToneCurvePV2012Red string+
2062
2573
  Version string
2063
2574
 
2575
+ =head3 XMP RangeMask Struct
2576
+
2577
+ This structure is actually called RangeMaskMapInfo, but it only contains one
2578
+ element which is a RangeMaskMapInfo structure (Yes, really!). So these are
2579
+ renamed to RangeMask and MapInfo respectively to avoid confusion and
2580
+ redundancy in the tag names.
2581
+
2582
+ Field Name Writable
2583
+ ---------- --------
2584
+ RangeMaskMapInfo MapInfo Struct
2585
+
2586
+ =head3 XMP MapInfo Struct
2587
+
2588
+ Called RangeMaskMapInfo by the specification, the same as the containing
2589
+ structure.
2590
+
2591
+ Field Name Writable
2592
+ ---------- --------
2593
+ LabMax string
2594
+ LabMin string
2595
+ LumEq string+
2596
+ RGBMax string
2597
+ RGBMin string
2598
+
2064
2599
  =head3 XMP RetouchArea Struct
2065
2600
 
2066
2601
  Field Name Writable
@@ -2161,17 +2696,85 @@ These tags belong to the ExifTool XMP-crs family 1 group.
2161
2696
  CircGradBasedCorrMaskBottom real_
2162
2697
  CircGradBasedCorrMaskCenterValue real_
2163
2698
  CircGradBasedCorrMaskCenterWeight real_
2699
+ CircGradBasedCorrMaskRange CorrRangeMask Struct_+
2700
+ CircGradBasedCorrMaskRangeAreaModels AreaModels Struct_+
2701
+ CircGradBasedCorrMaskRangeAreaModelsComponents string_+
2702
+ CircGradBasedCorrMaskRangeAreaModelsColorSampleInfo string_+
2703
+ CircGradBasedCorrMaskRangeColorAmount real_+
2704
+ CircGradBasedCorrMaskRangeDepthFeather real_+
2705
+ CircGradBasedCorrMaskRangeDepthMax real_+
2706
+ CircGradBasedCorrMaskRangeDepthMin real_+
2707
+ CircGradBasedCorrMaskRangeInvert boolean_+
2708
+ CircGradBasedCorrMaskRangeLumFeather real_+
2709
+ CircGradBasedCorrMaskRangeLuminanceDepthSampleInfo string_+
2710
+ CircGradBasedCorrMaskRangeLumMax real_+
2711
+ CircGradBasedCorrMaskRangeLumMin real_+
2712
+ CircGradBasedCorrMaskRangeLumRange string_+
2713
+ CircGradBasedCorrMaskRangeSampleType integer_+
2714
+ CircGradBasedCorrMaskRangeType string_+
2715
+ CircGradBasedCorrMaskRangeVersion string_+
2164
2716
  CircGradBasedCorrMaskDabs string_
2165
2717
  CircGradBasedCorrMaskFeather real_
2166
2718
  CircGradBasedCorrMaskFlipped boolean_
2167
2719
  CircGradBasedCorrMaskFlow real_
2168
2720
  CircGradBasedCorrMaskFullX real_
2169
2721
  CircGradBasedCorrMaskFullY real_
2722
+ CircGradBasedCorrMaskInputDigest string_
2170
2723
  CircGradBasedCorrMaskLeft real_
2724
+ CircGradBasedCorrMaskMaskActive boolean_
2725
+ CircGradBasedCorrMaskMaskBlendMode integer_
2726
+ CircGradBasedCorrMaskMaskDigest string_
2727
+ CircGradBasedCorrMaskMaskInverted boolean_
2728
+ CircGradBasedCorrMaskMaskName string_
2729
+ CircGradBasedCorrMaskMasks CorrectionMask Struct_+
2730
+ CircGradBasedCorrMaskMasksAlpha real_
2731
+ CircGradBasedCorrMaskMasksAngle real_
2732
+ CircGradBasedCorrMaskMasksBottom real_
2733
+ CircGradBasedCorrMaskMasksCenterValue real_
2734
+ CircGradBasedCorrMaskMasksCenterWeight real_
2735
+ CircGradBasedCorrMaskMasksDabs string_+
2736
+ CircGradBasedCorrMaskMasksFeather real_
2737
+ CircGradBasedCorrMaskMasksFlipped boolean_
2738
+ CircGradBasedCorrMaskMasksFlow real_
2739
+ CircGradBasedCorrMaskMasksFullX real_
2740
+ CircGradBasedCorrMaskMasksFullY real_
2741
+ CircGradBasedCorrMaskMasksInputDigest string_
2742
+ CircGradBasedCorrMaskMasksLeft real_
2743
+ CircGradBasedCorrMaskMasksMaskActive boolean_
2744
+ CircGradBasedCorrMaskMasksMaskBlendMode integer_
2745
+ CircGradBasedCorrMaskMasksMaskDigest string_
2746
+ CircGradBasedCorrMaskMasksMaskInverted boolean_
2747
+ CircGradBasedCorrMaskMasksMaskName string_
2748
+ CircGradBasedCorrMaskMasksMaskSubType string_
2749
+ CircGradBasedCorrMaskMasksMaskSyncID string_
2750
+ CircGradBasedCorrMaskMasksValue real_
2751
+ CircGradBasedCorrMaskMasksMaskVersion string_
2752
+ CircGradBasedCorrMaskMasksMidpoint real_
2753
+ CircGradBasedCorrMaskMasksOrigin string_
2754
+ CircGradBasedCorrMaskMasksPerimeterValue real_
2755
+ CircGradBasedCorrMaskMasksRadius real_
2756
+ CircGradBasedCorrMaskMasksReferencePoint string_
2757
+ CircGradBasedCorrMaskMasksRight real_
2758
+ CircGradBasedCorrMaskMasksRoundness real_
2759
+ CircGradBasedCorrMaskMasksSizeX real_
2760
+ CircGradBasedCorrMaskMasksSizeY real_
2761
+ CircGradBasedCorrMaskMasksTop real_
2762
+ CircGradBasedCorrMaskMaskSubType string_
2763
+ CircGradBasedCorrMaskMasksVersion integer_
2764
+ CircGradBasedCorrMaskMasksWhat string_
2765
+ CircGradBasedCorrMaskMasksWholeImageArea string_
2766
+ CircGradBasedCorrMaskMasksX real_
2767
+ CircGradBasedCorrMaskMasksY real_
2768
+ CircGradBasedCorrMaskMaskSyncID string_
2769
+ CircGradBasedCorrMaskMasksZeroX real_
2770
+ CircGradBasedCorrMaskMasksZeroY real_
2171
2771
  CircGradBasedCorrMaskValue real_
2772
+ CircGradBasedCorrMaskMaskVersion string_
2172
2773
  CircGradBasedCorrMaskMidpoint real_
2774
+ CircGradBasedCorrMaskOrigin string_
2173
2775
  CircGradBasedCorrMaskPerimeterValue real_
2174
2776
  CircGradBasedCorrMaskRadius real_
2777
+ CircGradBasedCorrMaskReferencePoint string_
2175
2778
  CircGradBasedCorrMaskRight real_
2176
2779
  CircGradBasedCorrMaskRoundness real_
2177
2780
  CircGradBasedCorrMaskSizeX real_
@@ -2179,20 +2782,30 @@ These tags belong to the ExifTool XMP-crs family 1 group.
2179
2782
  CircGradBasedCorrMaskTop real_
2180
2783
  CircGradBasedCorrMaskVersion integer_
2181
2784
  CircGradBasedCorrMaskWhat string_
2785
+ CircGradBasedCorrMaskWholeImageArea string_
2182
2786
  CircGradBasedCorrMaskX real_
2183
2787
  CircGradBasedCorrMaskY real_
2184
2788
  CircGradBasedCorrMaskZeroX real_
2185
2789
  CircGradBasedCorrMaskZeroY real_
2186
- CircGradBasedCorrRangeMask CorrectionRangeMask Struct_+
2790
+ CircGradBasedCorrCorrectionName string_+
2791
+ CircGradBasedCorrRangeMask CorrRangeMask Struct_+
2792
+ CircGradBasedCorrRangeMaskAreaModels AreaModels Struct_+
2793
+ CircGradBasedCorrRangeMaskAreaModelsComponents string_+
2794
+ CircGradBasedCorrRangeMaskAreaModelsColorSampleInfo string_+
2187
2795
  CircGradBasedCorrRangeMaskColorAmount real_+
2188
2796
  CircGradBasedCorrRangeMaskDepthFeather real_+
2189
2797
  CircGradBasedCorrRangeMaskDepthMax real_+
2190
2798
  CircGradBasedCorrRangeMaskDepthMin real_+
2799
+ CircGradBasedCorrRangeMaskInvert boolean_+
2191
2800
  CircGradBasedCorrRangeMaskLumFeather real_+
2801
+ CircGradBasedCorrRangeMaskLuminanceDepthSampleInfo string_+
2192
2802
  CircGradBasedCorrRangeMaskLumMax real_+
2193
2803
  CircGradBasedCorrRangeMaskLumMin real_+
2804
+ CircGradBasedCorrRangeMaskLumRange string_+
2805
+ CircGradBasedCorrRangeMaskSampleType integer_+
2194
2806
  CircGradBasedCorrRangeMaskType string_+
2195
2807
  CircGradBasedCorrRangeMaskVersion string_+
2808
+ CircGradBasedCorrCorrectionSyncID string_+
2196
2809
  CircGradBasedCorrBlacks2012 real_
2197
2810
  CircGradBasedCorrBrightness real_
2198
2811
  CircGradBasedCorrClarity real_
@@ -2213,8 +2826,8 @@ These tags belong to the ExifTool XMP-crs family 1 group.
2213
2826
  CircGradBasedCorrTemperature real_
2214
2827
  CircGradBasedCorrTexture real_
2215
2828
  CircGradBasedCorrTint real_
2216
- CircGradBasedCorrHue real_
2217
- CircGradBasedCorrSaturation real_
2829
+ CircGradBasedCorrToningHue real_
2830
+ CircGradBasedCorrToningSaturation real_
2218
2831
  CircGradBasedCorrWhites2012 real_
2219
2832
  CircGradBasedCorrWhat string_
2220
2833
  Clarity integer
@@ -2234,6 +2847,7 @@ These tags belong to the ExifTool XMP-crs family 1 group.
2234
2847
  ColorNoiseReduction integer
2235
2848
  ColorNoiseReductionDetail integer
2236
2849
  ColorNoiseReductionSmoothness integer
2850
+ CompatibleVersion string
2237
2851
  ContactInfo string
2238
2852
  Contrast integer/
2239
2853
  Contrast2012 integer
@@ -2276,17 +2890,85 @@ These tags belong to the ExifTool XMP-crs family 1 group.
2276
2890
  GradientBasedCorrMaskBottom real_
2277
2891
  GradientBasedCorrMaskCenterValue real_
2278
2892
  GradientBasedCorrMaskCenterWeight real_
2893
+ GradientBasedCorrMaskRange CorrRangeMask Struct_+
2894
+ GradientBasedCorrMaskRangeAreaModels AreaModels Struct_+
2895
+ GradientBasedCorrMaskRangeAreaModelsComponents string_+
2896
+ GradientBasedCorrMaskRangeAreaModelsColorSampleInfo string_+
2897
+ GradientBasedCorrMaskRangeColorAmount real_+
2898
+ GradientBasedCorrMaskRangeDepthFeather real_+
2899
+ GradientBasedCorrMaskRangeDepthMax real_+
2900
+ GradientBasedCorrMaskRangeDepthMin real_+
2901
+ GradientBasedCorrMaskRangeInvert boolean_+
2902
+ GradientBasedCorrMaskRangeLumFeather real_+
2903
+ GradientBasedCorrMaskRangeLuminanceDepthSampleInfo string_+
2904
+ GradientBasedCorrMaskRangeLumMax real_+
2905
+ GradientBasedCorrMaskRangeLumMin real_+
2906
+ GradientBasedCorrMaskRangeLumRange string_+
2907
+ GradientBasedCorrMaskRangeSampleType integer_+
2908
+ GradientBasedCorrMaskRangeType string_+
2909
+ GradientBasedCorrMaskRangeVersion string_+
2279
2910
  GradientBasedCorrMaskDabs string_
2280
2911
  GradientBasedCorrMaskFeather real_
2281
2912
  GradientBasedCorrMaskFlipped boolean_
2282
2913
  GradientBasedCorrMaskFlow real_
2283
2914
  GradientBasedCorrMaskFullX real_
2284
2915
  GradientBasedCorrMaskFullY real_
2916
+ GradientBasedCorrMaskInputDigest string_
2285
2917
  GradientBasedCorrMaskLeft real_
2918
+ GradientBasedCorrMaskMaskActive boolean_
2919
+ GradientBasedCorrMaskMaskBlendMode integer_
2920
+ GradientBasedCorrMaskMaskDigest string_
2921
+ GradientBasedCorrMaskMaskInverted boolean_
2922
+ GradientBasedCorrMaskMaskName string_
2923
+ GradientBasedCorrMaskMasks CorrectionMask Struct_+
2924
+ GradientBasedCorrMaskMasksAlpha real_
2925
+ GradientBasedCorrMaskMasksAngle real_
2926
+ GradientBasedCorrMaskMasksBottom real_
2927
+ GradientBasedCorrMaskMasksCenterValue real_
2928
+ GradientBasedCorrMaskMasksCenterWeight real_
2929
+ GradientBasedCorrMaskMasksDabs string_+
2930
+ GradientBasedCorrMaskMasksFeather real_
2931
+ GradientBasedCorrMaskMasksFlipped boolean_
2932
+ GradientBasedCorrMaskMasksFlow real_
2933
+ GradientBasedCorrMaskMasksFullX real_
2934
+ GradientBasedCorrMaskMasksFullY real_
2935
+ GradientBasedCorrMaskMasksInputDigest string_
2936
+ GradientBasedCorrMaskMasksLeft real_
2937
+ GradientBasedCorrMaskMasksMaskActive boolean_
2938
+ GradientBasedCorrMaskMasksMaskBlendMode integer_
2939
+ GradientBasedCorrMaskMasksMaskDigest string_
2940
+ GradientBasedCorrMaskMasksMaskInverted boolean_
2941
+ GradientBasedCorrMaskMasksMaskName string_
2942
+ GradientBasedCorrMaskMasksMaskSubType string_
2943
+ GradientBasedCorrMaskMasksMaskSyncID string_
2944
+ GradientBasedCorrMaskMasksValue real_
2945
+ GradientBasedCorrMaskMasksMaskVersion string_
2946
+ GradientBasedCorrMaskMasksMidpoint real_
2947
+ GradientBasedCorrMaskMasksOrigin string_
2948
+ GradientBasedCorrMaskMasksPerimeterValue real_
2949
+ GradientBasedCorrMaskMasksRadius real_
2950
+ GradientBasedCorrMaskMasksReferencePoint string_
2951
+ GradientBasedCorrMaskMasksRight real_
2952
+ GradientBasedCorrMaskMasksRoundness real_
2953
+ GradientBasedCorrMaskMasksSizeX real_
2954
+ GradientBasedCorrMaskMasksSizeY real_
2955
+ GradientBasedCorrMaskMasksTop real_
2956
+ GradientBasedCorrMaskMaskSubType string_
2957
+ GradientBasedCorrMaskMasksVersion integer_
2958
+ GradientBasedCorrMaskMasksWhat string_
2959
+ GradientBasedCorrMaskMasksWholeImageArea string_
2960
+ GradientBasedCorrMaskMasksX real_
2961
+ GradientBasedCorrMaskMasksY real_
2962
+ GradientBasedCorrMaskMaskSyncID string_
2963
+ GradientBasedCorrMaskMasksZeroX real_
2964
+ GradientBasedCorrMaskMasksZeroY real_
2286
2965
  GradientBasedCorrMaskValue real_
2966
+ GradientBasedCorrMaskMaskVersion string_
2287
2967
  GradientBasedCorrMaskMidpoint real_
2968
+ GradientBasedCorrMaskOrigin string_
2288
2969
  GradientBasedCorrMaskPerimeterValue real_
2289
2970
  GradientBasedCorrMaskRadius real_
2971
+ GradientBasedCorrMaskReferencePoint string_
2290
2972
  GradientBasedCorrMaskRight real_
2291
2973
  GradientBasedCorrMaskRoundness real_
2292
2974
  GradientBasedCorrMaskSizeX real_
@@ -2294,20 +2976,30 @@ These tags belong to the ExifTool XMP-crs family 1 group.
2294
2976
  GradientBasedCorrMaskTop real_
2295
2977
  GradientBasedCorrMaskVersion integer_
2296
2978
  GradientBasedCorrMaskWhat string_
2979
+ GradientBasedCorrMaskWholeImageArea string_
2297
2980
  GradientBasedCorrMaskX real_
2298
2981
  GradientBasedCorrMaskY real_
2299
2982
  GradientBasedCorrMaskZeroX real_
2300
2983
  GradientBasedCorrMaskZeroY real_
2301
- GradientBasedCorrRangeMask CorrectionRangeMask Struct_+
2984
+ GradientBasedCorrCorrectionName string_+
2985
+ GradientBasedCorrRangeMask CorrRangeMask Struct_+
2986
+ GradientBasedCorrRangeMaskAreaModels AreaModels Struct_+
2987
+ GradientBasedCorrRangeMaskAreaModelsComponents string_+
2988
+ GradientBasedCorrRangeMaskAreaModelsColorSampleInfo string_+
2302
2989
  GradientBasedCorrRangeMaskColorAmount real_+
2303
2990
  GradientBasedCorrRangeMaskDepthFeather real_+
2304
2991
  GradientBasedCorrRangeMaskDepthMax real_+
2305
2992
  GradientBasedCorrRangeMaskDepthMin real_+
2993
+ GradientBasedCorrRangeMaskInvert boolean_+
2306
2994
  GradientBasedCorrRangeMaskLumFeather real_+
2995
+ GradientBasedCorrRangeMaskLuminanceDepthSampleInfo string_+
2307
2996
  GradientBasedCorrRangeMaskLumMax real_+
2308
2997
  GradientBasedCorrRangeMaskLumMin real_+
2998
+ GradientBasedCorrRangeMaskLumRange string_+
2999
+ GradientBasedCorrRangeMaskSampleType integer_+
2309
3000
  GradientBasedCorrRangeMaskType string_+
2310
3001
  GradientBasedCorrRangeMaskVersion string_+
3002
+ GradientBasedCorrCorrectionSyncID string_+
2311
3003
  GradientBasedCorrBlacks2012 real_
2312
3004
  GradientBasedCorrBrightness real_
2313
3005
  GradientBasedCorrClarity real_
@@ -2328,8 +3020,8 @@ These tags belong to the ExifTool XMP-crs family 1 group.
2328
3020
  GradientBasedCorrTemperature real_
2329
3021
  GradientBasedCorrTexture real_
2330
3022
  GradientBasedCorrTint real_
2331
- GradientBasedCorrHue real_
2332
- GradientBasedCorrSaturation real_
3023
+ GradientBasedCorrToningHue real_
3024
+ GradientBasedCorrToningSaturation real_
2333
3025
  GradientBasedCorrWhites2012 real_
2334
3026
  GradientBasedCorrWhat string_
2335
3027
  GrainAmount integer
@@ -2394,6 +3086,9 @@ These tags belong to the ExifTool XMP-crs family 1 group.
2394
3086
  LookParametersLookTable string_
2395
3087
  LookParametersProcessVersion string_
2396
3088
  LookParametersToneCurvePV2012 string_+
3089
+ LookParametersToneCurvePV2012Blue string_+
3090
+ LookParametersToneCurvePV2012Green string_+
3091
+ LookParametersToneCurvePV2012Red string_+
2397
3092
  LookParametersVersion string_
2398
3093
  LookSupportsAmount string_
2399
3094
  LookSupportsMonochrome string_
@@ -2410,6 +3105,149 @@ These tags belong to the ExifTool XMP-crs family 1 group.
2410
3105
  LuminanceNoiseReductionContrast integer
2411
3106
  LuminanceNoiseReductionDetail integer
2412
3107
  LuminanceSmoothing integer
3108
+ MaskGroupBasedCorrections Correction Struct+
3109
+ MaskGroupBasedCorrActive boolean_
3110
+ MaskGroupBasedCorrAmount real_
3111
+ MaskGroupBasedCorrMask CorrectionMask Struct_+
3112
+ MaskGroupBasedCorrMaskAlpha real_
3113
+ MaskGroupBasedCorrMaskAngle real_
3114
+ MaskGroupBasedCorrMaskBottom real_
3115
+ MaskGroupBasedCorrMaskCenterValue real_
3116
+ MaskGroupBasedCorrMaskCenterWeight real_
3117
+ MaskGroupBasedCorrMaskRange CorrRangeMask Struct_+
3118
+ MaskGroupBasedCorrMaskRangeAreaModels AreaModels Struct_+
3119
+ MaskGroupBasedCorrMaskRangeAreaModelsComponents string_+
3120
+ MaskGroupBasedCorrMaskRangeAreaModelsColorSampleInfo string_+
3121
+ MaskGroupBasedCorrMaskRangeColorAmount real_+
3122
+ MaskGroupBasedCorrMaskRangeDepthFeather real_+
3123
+ MaskGroupBasedCorrMaskRangeDepthMax real_+
3124
+ MaskGroupBasedCorrMaskRangeDepthMin real_+
3125
+ MaskGroupBasedCorrMaskRangeInvert boolean_+
3126
+ MaskGroupBasedCorrMaskRangeLumFeather real_+
3127
+ MaskGroupBasedCorrMaskRangeLuminanceDepthSampleInfo string_+
3128
+ MaskGroupBasedCorrMaskRangeLumMax real_+
3129
+ MaskGroupBasedCorrMaskRangeLumMin real_+
3130
+ MaskGroupBasedCorrMaskRangeLumRange string_+
3131
+ MaskGroupBasedCorrMaskRangeSampleType integer_+
3132
+ MaskGroupBasedCorrMaskRangeType string_+
3133
+ MaskGroupBasedCorrMaskRangeVersion string_+
3134
+ MaskGroupBasedCorrMaskDabs string_+
3135
+ MaskGroupBasedCorrMaskFeather real_
3136
+ MaskGroupBasedCorrMaskFlipped boolean_
3137
+ MaskGroupBasedCorrMaskFlow real_
3138
+ MaskGroupBasedCorrMaskFullX real_
3139
+ MaskGroupBasedCorrMaskFullY real_
3140
+ MaskGroupBasedCorrMaskInputDigest string_
3141
+ MaskGroupBasedCorrMaskLeft real_
3142
+ MaskGroupBasedCorrMaskMaskActive boolean_
3143
+ MaskGroupBasedCorrMaskMaskBlendMode integer_
3144
+ MaskGroupBasedCorrMaskMaskDigest string_
3145
+ MaskGroupBasedCorrMaskMaskInverted boolean_
3146
+ MaskGroupBasedCorrMaskMaskName string_
3147
+ MaskGroupBasedCorrMaskMasks CorrectionMask Struct_+
3148
+ MaskGroupBasedCorrMaskMasksAlpha real_
3149
+ MaskGroupBasedCorrMaskMasksAngle real_
3150
+ MaskGroupBasedCorrMaskMasksBottom real_
3151
+ MaskGroupBasedCorrMaskMasksCenterValue real_
3152
+ MaskGroupBasedCorrMaskMasksCenterWeight real_
3153
+ MaskGroupBasedCorrMaskMasksDabs string_+
3154
+ MaskGroupBasedCorrMaskMasksFeather real_
3155
+ MaskGroupBasedCorrMaskMasksFlipped boolean_
3156
+ MaskGroupBasedCorrMaskMasksFlow real_
3157
+ MaskGroupBasedCorrMaskMasksFullX real_
3158
+ MaskGroupBasedCorrMaskMasksFullY real_
3159
+ MaskGroupBasedCorrMaskMasksInputDigest string_
3160
+ MaskGroupBasedCorrMaskMasksLeft real_
3161
+ MaskGroupBasedCorrMaskMasksMaskActive boolean_
3162
+ MaskGroupBasedCorrMaskMasksMaskBlendMode integer_
3163
+ MaskGroupBasedCorrMaskMasksMaskDigest string_
3164
+ MaskGroupBasedCorrMaskMasksMaskInverted boolean_
3165
+ MaskGroupBasedCorrMaskMasksMaskName string_
3166
+ MaskGroupBasedCorrMaskMasksMaskSubType string_
3167
+ MaskGroupBasedCorrMaskMasksMaskSyncID string_
3168
+ MaskGroupBasedCorrMaskMasksValue real_
3169
+ MaskGroupBasedCorrMaskMasksMaskVersion string_
3170
+ MaskGroupBasedCorrMaskMasksMidpoint real_
3171
+ MaskGroupBasedCorrMaskMasksOrigin string_
3172
+ MaskGroupBasedCorrMaskMasksPerimeterValue real_
3173
+ MaskGroupBasedCorrMaskMasksRadius real_
3174
+ MaskGroupBasedCorrMaskMasksReferencePoint string_
3175
+ MaskGroupBasedCorrMaskMasksRight real_
3176
+ MaskGroupBasedCorrMaskMasksRoundness real_
3177
+ MaskGroupBasedCorrMaskMasksSizeX real_
3178
+ MaskGroupBasedCorrMaskMasksSizeY real_
3179
+ MaskGroupBasedCorrMaskMasksTop real_
3180
+ MaskGroupBasedCorrMaskMaskSubType string_
3181
+ MaskGroupBasedCorrMaskMasksVersion integer_
3182
+ MaskGroupBasedCorrMaskMasksWhat string_
3183
+ MaskGroupBasedCorrMaskMasksWholeImageArea string_
3184
+ MaskGroupBasedCorrMaskMasksX real_
3185
+ MaskGroupBasedCorrMaskMasksY real_
3186
+ MaskGroupBasedCorrMaskMaskSyncID string_
3187
+ MaskGroupBasedCorrMaskMasksZeroX real_
3188
+ MaskGroupBasedCorrMaskMasksZeroY real_
3189
+ MaskGroupBasedCorrMaskValue real_
3190
+ MaskGroupBasedCorrMaskMaskVersion string_
3191
+ MaskGroupBasedCorrMaskMidpoint real_
3192
+ MaskGroupBasedCorrMaskOrigin string_
3193
+ MaskGroupBasedCorrMaskPerimeterValue real_
3194
+ MaskGroupBasedCorrMaskRadius real_
3195
+ MaskGroupBasedCorrMaskReferencePoint string_
3196
+ MaskGroupBasedCorrMaskRight real_
3197
+ MaskGroupBasedCorrMaskRoundness real_
3198
+ MaskGroupBasedCorrMaskSizeX real_
3199
+ MaskGroupBasedCorrMaskSizeY real_
3200
+ MaskGroupBasedCorrMaskTop real_
3201
+ MaskGroupBasedCorrMaskVersion integer_
3202
+ MaskGroupBasedCorrMaskWhat string_
3203
+ MaskGroupBasedCorrMaskWholeImageArea string_
3204
+ MaskGroupBasedCorrMaskX real_
3205
+ MaskGroupBasedCorrMaskY real_
3206
+ MaskGroupBasedCorrMaskZeroX real_
3207
+ MaskGroupBasedCorrMaskZeroY real_
3208
+ MaskGroupBasedCorrCorrectionName string_+
3209
+ MaskGroupBasedCorrRangeMask CorrRangeMask Struct_+
3210
+ MaskGroupBasedCorrRangeMaskAreaModels AreaModels Struct_+
3211
+ MaskGroupBasedCorrRangeMaskAreaModelsComponents string_+
3212
+ MaskGroupBasedCorrRangeMaskAreaModelsColorSampleInfo string_+
3213
+ MaskGroupBasedCorrRangeMaskColorAmount real_+
3214
+ MaskGroupBasedCorrRangeMaskDepthFeather real_+
3215
+ MaskGroupBasedCorrRangeMaskDepthMax real_+
3216
+ MaskGroupBasedCorrRangeMaskDepthMin real_+
3217
+ MaskGroupBasedCorrRangeMaskInvert boolean_+
3218
+ MaskGroupBasedCorrRangeMaskLumFeather real_+
3219
+ MaskGroupBasedCorrRangeMaskLuminanceDepthSampleInfo string_+
3220
+ MaskGroupBasedCorrRangeMaskLumMax real_+
3221
+ MaskGroupBasedCorrRangeMaskLumMin real_+
3222
+ MaskGroupBasedCorrRangeMaskLumRange string_+
3223
+ MaskGroupBasedCorrRangeMaskSampleType integer_+
3224
+ MaskGroupBasedCorrRangeMaskType string_+
3225
+ MaskGroupBasedCorrRangeMaskVersion string_+
3226
+ MaskGroupBasedCorrCorrectionSyncID string_+
3227
+ MaskGroupBasedCorrBlacks2012 real_
3228
+ MaskGroupBasedCorrBrightness real_
3229
+ MaskGroupBasedCorrClarity real_
3230
+ MaskGroupBasedCorrClarity2012 real_
3231
+ MaskGroupBasedCorrContrast real_
3232
+ MaskGroupBasedCorrContrast2012 real_
3233
+ MaskGroupBasedCorrDefringe real_
3234
+ MaskGroupBasedCorrDehaze real_
3235
+ MaskGroupBasedCorrExposure real_
3236
+ MaskGroupBasedCorrExposure2012 real_
3237
+ MaskGroupBasedCorrHighlights2012 real_
3238
+ MaskGroupBasedCorrHue real_
3239
+ MaskGroupBasedCorrLuminanceNoise real_
3240
+ MaskGroupBasedCorrMoire real_
3241
+ MaskGroupBasedCorrSaturation real_
3242
+ MaskGroupBasedCorrShadows2012 real_
3243
+ MaskGroupBasedCorrSharpness real_
3244
+ MaskGroupBasedCorrTemperature real_
3245
+ MaskGroupBasedCorrTexture real_
3246
+ MaskGroupBasedCorrTint real_
3247
+ MaskGroupBasedCorrToningHue real_
3248
+ MaskGroupBasedCorrToningSaturation real_
3249
+ MaskGroupBasedCorrWhites2012 real_
3250
+ MaskGroupBasedCorrWhat string_
2413
3251
  MoireFilter string
2414
3252
  Name lang-alt/
2415
3253
  NegativeCacheLargePreviewSize integer
@@ -2425,17 +3263,85 @@ These tags belong to the ExifTool XMP-crs family 1 group.
2425
3263
  PaintCorrectionMaskBottom real_
2426
3264
  PaintCorrectionMaskCenterValue real_
2427
3265
  PaintCorrectionMaskCenterWeight real_
3266
+ PaintCorrectionMaskRange CorrRangeMask Struct_+
3267
+ PaintCorrectionMaskRangeAreaModels AreaModels Struct_+
3268
+ PaintCorrectionMaskRangeAreaModelsComponents string_+
3269
+ PaintCorrectionMaskRangeAreaModelsColorSampleInfo string_+
3270
+ PaintCorrectionMaskRangeColorAmount real_+
3271
+ PaintCorrectionMaskRangeDepthFeather real_+
3272
+ PaintCorrectionMaskRangeDepthMax real_+
3273
+ PaintCorrectionMaskRangeDepthMin real_+
3274
+ PaintCorrectionMaskRangeInvert boolean_+
3275
+ PaintCorrectionMaskRangeLumFeather real_+
3276
+ PaintCorrectionMaskRangeLuminanceDepthSampleInfo string_+
3277
+ PaintCorrectionMaskRangeLumMax real_+
3278
+ PaintCorrectionMaskRangeLumMin real_+
3279
+ PaintCorrectionMaskRangeLumRange string_+
3280
+ PaintCorrectionMaskRangeSampleType integer_+
3281
+ PaintCorrectionMaskRangeType string_+
3282
+ PaintCorrectionMaskRangeVersion string_+
2428
3283
  PaintCorrectionMaskDabs string_
2429
3284
  PaintCorrectionMaskFeather real_
2430
3285
  PaintCorrectionMaskFlipped boolean_
2431
3286
  PaintCorrectionMaskFlow real_
2432
3287
  PaintCorrectionMaskFullX real_
2433
3288
  PaintCorrectionMaskFullY real_
3289
+ PaintCorrectionMaskInputDigest string_
2434
3290
  PaintCorrectionMaskLeft real_
3291
+ PaintCorrectionMaskMaskActive boolean_
3292
+ PaintCorrectionMaskMaskBlendMode integer_
3293
+ PaintCorrectionMaskMaskDigest string_
3294
+ PaintCorrectionMaskMaskInverted boolean_
3295
+ PaintCorrectionMaskMaskName string_
3296
+ PaintCorrectionMaskMasks CorrectionMask Struct_+
3297
+ PaintCorrectionMaskMasksAlpha real_
3298
+ PaintCorrectionMaskMasksAngle real_
3299
+ PaintCorrectionMaskMasksBottom real_
3300
+ PaintCorrectionMaskMasksCenterValue real_
3301
+ PaintCorrectionMaskMasksCenterWeight real_
3302
+ PaintCorrectionMaskMasksDabs string_+
3303
+ PaintCorrectionMaskMasksFeather real_
3304
+ PaintCorrectionMaskMasksFlipped boolean_
3305
+ PaintCorrectionMaskMasksFlow real_
3306
+ PaintCorrectionMaskMasksFullX real_
3307
+ PaintCorrectionMaskMasksFullY real_
3308
+ PaintCorrectionMaskMasksInputDigest string_
3309
+ PaintCorrectionMaskMasksLeft real_
3310
+ PaintCorrectionMaskMasksMaskActive boolean_
3311
+ PaintCorrectionMaskMasksMaskBlendMode integer_
3312
+ PaintCorrectionMaskMasksMaskDigest string_
3313
+ PaintCorrectionMaskMasksMaskInverted boolean_
3314
+ PaintCorrectionMaskMasksMaskName string_
3315
+ PaintCorrectionMaskMasksMaskSubType string_
3316
+ PaintCorrectionMaskMasksMaskSyncID string_
3317
+ PaintCorrectionMaskMasksValue real_
3318
+ PaintCorrectionMaskMasksMaskVersion string_
3319
+ PaintCorrectionMaskMasksMidpoint real_
3320
+ PaintCorrectionMaskMasksOrigin string_
3321
+ PaintCorrectionMaskMasksPerimeterValue real_
3322
+ PaintCorrectionMaskMasksRadius real_
3323
+ PaintCorrectionMaskMasksReferencePoint string_
3324
+ PaintCorrectionMaskMasksRight real_
3325
+ PaintCorrectionMaskMasksRoundness real_
3326
+ PaintCorrectionMaskMasksSizeX real_
3327
+ PaintCorrectionMaskMasksSizeY real_
3328
+ PaintCorrectionMaskMasksTop real_
3329
+ PaintCorrectionMaskMaskSubType string_
3330
+ PaintCorrectionMaskMasksVersion integer_
3331
+ PaintCorrectionMaskMasksWhat string_
3332
+ PaintCorrectionMaskMasksWholeImageArea string_
3333
+ PaintCorrectionMaskMasksX real_
3334
+ PaintCorrectionMaskMasksY real_
3335
+ PaintCorrectionMaskMaskSyncID string_
3336
+ PaintCorrectionMaskMasksZeroX real_
3337
+ PaintCorrectionMaskMasksZeroY real_
2435
3338
  PaintCorrectionMaskValue real_
3339
+ PaintCorrectionMaskMaskVersion string_
2436
3340
  PaintCorrectionMaskMidpoint real_
3341
+ PaintCorrectionMaskOrigin string_
2437
3342
  PaintCorrectionMaskPerimeterValue real_
2438
3343
  PaintCorrectionMaskRadius real_
3344
+ PaintCorrectionMaskReferencePoint string_
2439
3345
  PaintCorrectionMaskRight real_
2440
3346
  PaintCorrectionMaskRoundness real_
2441
3347
  PaintCorrectionMaskSizeX real_
@@ -2443,20 +3349,30 @@ These tags belong to the ExifTool XMP-crs family 1 group.
2443
3349
  PaintCorrectionMaskTop real_
2444
3350
  PaintCorrectionMaskVersion integer_
2445
3351
  PaintCorrectionMaskWhat string_
3352
+ PaintCorrectionMaskWholeImageArea string_
2446
3353
  PaintCorrectionMaskX real_
2447
3354
  PaintCorrectionMaskY real_
2448
3355
  PaintCorrectionMaskZeroX real_
2449
3356
  PaintCorrectionMaskZeroY real_
2450
- PaintCorrectionRangeMask CorrectionRangeMask Struct_+
3357
+ PaintCorrectionCorrectionName string_+
3358
+ PaintCorrectionRangeMask CorrRangeMask Struct_+
3359
+ PaintCorrectionRangeMaskAreaModels AreaModels Struct_+
3360
+ PaintCorrectionRangeMaskAreaModelsComponents string_+
3361
+ PaintCorrectionRangeMaskAreaModelsColorSampleInfo string_+
2451
3362
  PaintCorrectionRangeMaskColorAmount real_+
2452
3363
  PaintCorrectionRangeMaskDepthFeather real_+
2453
3364
  PaintCorrectionRangeMaskDepthMax real_+
2454
3365
  PaintCorrectionRangeMaskDepthMin real_+
3366
+ PaintCorrectionRangeMaskInvert boolean_+
2455
3367
  PaintCorrectionRangeMaskLumFeather real_+
3368
+ PaintCorrectionRangeMaskLuminanceDepthSampleInfo string_+
2456
3369
  PaintCorrectionRangeMaskLumMax real_+
2457
3370
  PaintCorrectionRangeMaskLumMin real_+
3371
+ PaintCorrectionRangeMaskLumRange string_+
3372
+ PaintCorrectionRangeMaskSampleType integer_+
2458
3373
  PaintCorrectionRangeMaskType string_+
2459
3374
  PaintCorrectionRangeMaskVersion string_+
3375
+ PaintCorrectionCorrectionSyncID string_+
2460
3376
  PaintCorrectionBlacks2012 real_
2461
3377
  PaintCorrectionBrightness real_
2462
3378
  PaintCorrectionClarity real_
@@ -2477,8 +3393,8 @@ These tags belong to the ExifTool XMP-crs family 1 group.
2477
3393
  PaintCorrectionTemperature real_
2478
3394
  PaintCorrectionTexture real_
2479
3395
  PaintCorrectionTint real_
2480
- PaintCorrectionHue real_
2481
- PaintCorrectionSaturation real_
3396
+ PaintCorrectionToningHue real_
3397
+ PaintCorrectionToningSaturation real_
2482
3398
  PaintCorrectionWhites2012 real_
2483
3399
  PaintCorrectionWhat string_
2484
3400
  ParametricDarks integer
@@ -2504,6 +3420,13 @@ These tags belong to the ExifTool XMP-crs family 1 group.
2504
3420
  PostCropVignetteStyle integer
2505
3421
  PresetType string
2506
3422
  ProcessVersion string
3423
+ RangeMask RangeMask Struct
3424
+ RangeMaskMapInfo MapInfo Struct_
3425
+ RangeMaskMapInfoLabMax string_
3426
+ RangeMaskMapInfoLabMin string_
3427
+ RangeMaskMapInfoLumEq string_+
3428
+ RangeMaskMapInfoRGBMax string_
3429
+ RangeMaskMapInfoRGBMin string_
2507
3430
  RawFileName string
2508
3431
  RedEyeInfo string+
2509
3432
  RedHue integer
@@ -2516,17 +3439,85 @@ These tags belong to the ExifTool XMP-crs family 1 group.
2516
3439
  RetouchAreaMaskBottom real_
2517
3440
  RetouchAreaMaskCenterValue real_
2518
3441
  RetouchAreaMaskCenterWeight real_
3442
+ RetouchAreaMaskRange CorrRangeMask Struct_+
3443
+ RetouchAreaMaskRangeAreaModels AreaModels Struct_+
3444
+ RetouchAreaMaskRangeAreaModelsComponents string_+
3445
+ RetouchAreaMaskRangeAreaModelsColorSampleInfo string_+
3446
+ RetouchAreaMaskRangeColorAmount real_+
3447
+ RetouchAreaMaskRangeDepthFeather real_+
3448
+ RetouchAreaMaskRangeDepthMax real_+
3449
+ RetouchAreaMaskRangeDepthMin real_+
3450
+ RetouchAreaMaskRangeInvert boolean_+
3451
+ RetouchAreaMaskRangeLumFeather real_+
3452
+ RetouchAreaMaskRangeLuminanceDepthSampleInfo string_+
3453
+ RetouchAreaMaskRangeLumMax real_+
3454
+ RetouchAreaMaskRangeLumMin real_+
3455
+ RetouchAreaMaskRangeLumRange string_+
3456
+ RetouchAreaMaskRangeSampleType integer_+
3457
+ RetouchAreaMaskRangeType string_+
3458
+ RetouchAreaMaskRangeVersion string_+
2519
3459
  RetouchAreaMaskDabs string_
2520
3460
  RetouchAreaMaskFeather real_
2521
3461
  RetouchAreaMaskFlipped boolean_
2522
3462
  RetouchAreaMaskFlow real_
2523
3463
  RetouchAreaMaskFullX real_
2524
3464
  RetouchAreaMaskFullY real_
3465
+ RetouchAreaMaskInputDigest string_
2525
3466
  RetouchAreaMaskLeft real_
3467
+ RetouchAreaMaskMaskActive boolean_
3468
+ RetouchAreaMaskMaskBlendMode integer_
3469
+ RetouchAreaMaskMaskDigest string_
3470
+ RetouchAreaMaskMaskInverted boolean_
3471
+ RetouchAreaMaskMaskName string_
3472
+ RetouchAreaMaskMasks CorrectionMask Struct_+
3473
+ RetouchAreaMaskMasksAlpha real_
3474
+ RetouchAreaMaskMasksAngle real_
3475
+ RetouchAreaMaskMasksBottom real_
3476
+ RetouchAreaMaskMasksCenterValue real_
3477
+ RetouchAreaMaskMasksCenterWeight real_
3478
+ RetouchAreaMaskMasksDabs string_+
3479
+ RetouchAreaMaskMasksFeather real_
3480
+ RetouchAreaMaskMasksFlipped boolean_
3481
+ RetouchAreaMaskMasksFlow real_
3482
+ RetouchAreaMaskMasksFullX real_
3483
+ RetouchAreaMaskMasksFullY real_
3484
+ RetouchAreaMaskMasksInputDigest string_
3485
+ RetouchAreaMaskMasksLeft real_
3486
+ RetouchAreaMaskMasksMaskActive boolean_
3487
+ RetouchAreaMaskMasksMaskBlendMode integer_
3488
+ RetouchAreaMaskMasksMaskDigest string_
3489
+ RetouchAreaMaskMasksMaskInverted boolean_
3490
+ RetouchAreaMaskMasksMaskName string_
3491
+ RetouchAreaMaskMasksMaskSubType string_
3492
+ RetouchAreaMaskMasksMaskSyncID string_
3493
+ RetouchAreaMaskMasksValue real_
3494
+ RetouchAreaMaskMasksMaskVersion string_
3495
+ RetouchAreaMaskMasksMidpoint real_
3496
+ RetouchAreaMaskMasksOrigin string_
3497
+ RetouchAreaMaskMasksPerimeterValue real_
3498
+ RetouchAreaMaskMasksRadius real_
3499
+ RetouchAreaMaskMasksReferencePoint string_
3500
+ RetouchAreaMaskMasksRight real_
3501
+ RetouchAreaMaskMasksRoundness real_
3502
+ RetouchAreaMaskMasksSizeX real_
3503
+ RetouchAreaMaskMasksSizeY real_
3504
+ RetouchAreaMaskMasksTop real_
3505
+ RetouchAreaMaskMaskSubType string_
3506
+ RetouchAreaMaskMasksVersion integer_
3507
+ RetouchAreaMaskMasksWhat string_
3508
+ RetouchAreaMaskMasksWholeImageArea string_
3509
+ RetouchAreaMaskMasksX real_
3510
+ RetouchAreaMaskMasksY real_
3511
+ RetouchAreaMaskMaskSyncID string_
3512
+ RetouchAreaMaskMasksZeroX real_
3513
+ RetouchAreaMaskMasksZeroY real_
2526
3514
  RetouchAreaMaskValue real_
3515
+ RetouchAreaMaskMaskVersion string_
2527
3516
  RetouchAreaMaskMidpoint real_
3517
+ RetouchAreaMaskOrigin string_
2528
3518
  RetouchAreaMaskPerimeterValue real_
2529
3519
  RetouchAreaMaskRadius real_
3520
+ RetouchAreaMaskReferencePoint string_
2530
3521
  RetouchAreaMaskRight real_
2531
3522
  RetouchAreaMaskRoundness real_
2532
3523
  RetouchAreaMaskSizeX real_
@@ -2534,6 +3525,7 @@ These tags belong to the ExifTool XMP-crs family 1 group.
2534
3525
  RetouchAreaMaskTop real_
2535
3526
  RetouchAreaMaskVersion integer_
2536
3527
  RetouchAreaMaskWhat string_
3528
+ RetouchAreaMaskWholeImageArea string_
2537
3529
  RetouchAreaMaskX real_
2538
3530
  RetouchAreaMaskY real_
2539
3531
  RetouchAreaMaskZeroX real_
@@ -3138,8 +4130,8 @@ These tags belong to the ExifTool XMP-exif family 1 group.
3138
4130
 
3139
4131
  =head3 XMP exifEX Tags
3140
4132
 
3141
- EXIF tags added by the EXIF 2.31 for XMP specification (see
3142
- L<http://www.cipa.jp/std/documents/e/DC-X010-2017.pdf>).
4133
+ EXIF tags added by the EXIF 2.32 for XMP specification (see
4134
+ L<https://cipa.jp/std/documents/download_e.html?DC-010-2020_E>).
3143
4135
 
3144
4136
  These tags belong to the ExifTool XMP-exifEX family 1 group.
3145
4137
 
@@ -3487,6 +4479,7 @@ These tags belong to the ExifTool XMP-iptcCore family 1 group.
3487
4479
 
3488
4480
  Tag Name Writable
3489
4481
  -------- --------
4482
+ AltTextAccessibility lang-alt
3490
4483
  CountryCode string
3491
4484
  CreatorContactInfo ContactInfo Struct
3492
4485
  CreatorCity string_
@@ -3497,6 +4490,7 @@ These tags belong to the ExifTool XMP-iptcCore family 1 group.
3497
4490
  CreatorWorkEmail string_
3498
4491
  CreatorWorkTelephone string_
3499
4492
  CreatorWorkURL string_
4493
+ ExtDescrAccessibility lang-alt
3500
4494
  IntellectualGenre string
3501
4495
  Location string
3502
4496
  Scene string+
@@ -3517,7 +4511,7 @@ These tags belong to the ExifTool XMP-iptcCore family 1 group.
3517
4511
 
3518
4512
  =head3 XMP iptcExt Tags
3519
4513
 
3520
- This table contains tags defined by the IPTC Extension schema version 1.5.
4514
+ This table contains tags defined by the IPTC Extension schema version 1.6.
3521
4515
  The actual namespace prefix is "Iptc4xmpExt", but ExifTool shortens this for
3522
4516
  the family 1 group name. (see
3523
4517
  L<http://www.iptc.org/standards/photo-metadata/iptc-standard/>)
@@ -3596,6 +4590,7 @@ These tags belong to the ExifTool XMP-iptcExt family 1 group.
3596
4590
  ShownEvent Entity Struct+
3597
4591
  ShownEventIdentifier string_+
3598
4592
  ShownEventName lang-alt_+
4593
+ EventID string+
3599
4594
  ExternalMetadataLink string+
3600
4595
  FeedIdentifier string
3601
4596
  Genre CVTermDetails Struct+
@@ -4018,6 +5013,7 @@ These tags belong to the ExifTool XMP-lr family 1 group.
4018
5013
  -------- --------
4019
5014
  HierarchicalSubject string+
4020
5015
  PrivateRTKInfo string
5016
+ WeightedFlatSubject string+
4021
5017
 
4022
5018
  =head3 XMP MediaPro Tags
4023
5019
 
@@ -4473,7 +5469,7 @@ These tags belong to the ExifTool XMP-tiff family 1 group.
4473
5469
  ImageWidth integer
4474
5470
  Make string
4475
5471
  Model string
4476
- NativeDigest string
5472
+ NativeDigest string/
4477
5473
  Orientation integer
4478
5474
  PhotometricInterpretation integer
4479
5475
  PlanarConfiguration integer
@@ -5543,32 +6539,98 @@ specification.
5543
6539
  'A2B0' AToB0 no
5544
6540
  'A2B1' AToB1 no
5545
6541
  'A2B2' AToB2 no
6542
+ 'A2B3' AToB3 no
6543
+ 'A2M0' AToM0 no
5546
6544
  'B2A0' BToA0 no
5547
6545
  'B2A1' BToA1 no
5548
6546
  'B2A2' BToA2 no
6547
+ 'B2A3' BToA3 no
5549
6548
  'B2D0' BToD0 no
5550
6549
  'B2D1' BToD1 no
5551
6550
  'B2D2' BToD2 no
5552
6551
  'B2D3' BToD3 no
6552
+ 'CxF ' CXF no
5553
6553
  'D2B0' DToB0 no
5554
6554
  'D2B1' DToB1 no
5555
6555
  'D2B2' DToB2 no
5556
6556
  'D2B3' DToB3 no
5557
6557
  'Header' ProfileHeader ICC_Profile Header
6558
+ 'M2A0' MToA0 no
6559
+ 'M2B0' MToB0 no
6560
+ 'M2B1' MToB1 no
6561
+ 'M2B2' MToB2 no
6562
+ 'M2B3' MToB3 no
6563
+ 'M2S0' MToS0 no
6564
+ 'M2S1' MToS1 no
6565
+ 'M2S2' MToS2 no
6566
+ 'M2S3' MToS3 no
5558
6567
  'MS00' WCSProfiles no
6568
+ 'bAB0' BRDFAToB0 no
6569
+ 'bAB1' BRDFAToB1 no
6570
+ 'bAB2' BRDFAToB2 no
6571
+ 'bAB3' BRDFAToB3 no
6572
+ 'bBA0' BRDFBToA0 no
6573
+ 'bBA1' BRDFBToA1 no
6574
+ 'bBA2' BRDFBToA2 no
6575
+ 'bBA3' BRDFBToA3 no
6576
+ 'bBD0' BRDFBToD0 no
6577
+ 'bBD1' BRDFBToD1 no
6578
+ 'bBD2' BRDFBToD2 no
6579
+ 'bBD3' BRDFBToD3 no
6580
+ 'bDB0' BRDFDToB0 no
6581
+ 'bDB1' BRDFDToB1 no
6582
+ 'bDB2' BRDFDToB2 no
6583
+ 'bDB3' BRDFDToB3 no
6584
+ 'bMB0' BRDFMToB0 no
6585
+ 'bMB1' BRDFMToB1 no
6586
+ 'bMB2' BRDFMToB2 no
6587
+ 'bMB3' BRDFMToB3 no
6588
+ 'bMS0' BRDFMToS0 no
6589
+ 'bMS1' BRDFMToS1 no
6590
+ 'bMS2' BRDFMToS2 no
6591
+ 'bMS3' BRDFMToS3 no
5559
6592
  'bTRC' BlueTRC no
5560
6593
  'bXYZ' BlueMatrixColumn no
6594
+ 'bcp0' BRDFColorimetricParam0 no
6595
+ 'bcp1' BRDFColorimetricParam1 no
6596
+ 'bcp2' BRDFColorimetricParam2 no
6597
+ 'bcp3' BRDFColorimetricParam3 no
5561
6598
  'bfd ' UCRBG no
5562
6599
  'bkpt' MediaBlackPoint no
6600
+ 'bsp0' BRDFSpectralParam0 no
6601
+ 'bsp1' BRDFSpectralParam1 no
6602
+ 'bsp2' BRDFSpectralParam2 no
6603
+ 'bsp3' BRDFSpectralParam3 no
6604
+ 'c2sp' CustomToStandardPcc no
5563
6605
  'calt' CalibrationDateTime no
6606
+ 'cept' ColorEncodingParams no
5564
6607
  'chad' ChromaticAdaptation no
5565
6608
  'chrm' Chromaticity ICC_Profile Chromaticity
5566
6609
  'ciis' ColorimetricIntentImageState no
6610
+ 'clio' ColorantInfoOut no
6611
+ 'cloo' ColorantOrderOut no
5567
6612
  'clot' ColorantTableOut no
5568
6613
  'clro' ColorantOrder no
5569
6614
  'clrt' ColorantTable ICC_Profile ColorantTable
5570
6615
  'cprt' ProfileCopyright no
5571
6616
  'crdi' CRDInfo no
6617
+ 'csnm' ColorSpaceName no
6618
+ 'dAB0' DirectionalAToB0 no
6619
+ 'dAB1' DirectionalAToB1 no
6620
+ 'dAB2' DirectionalAToB2 no
6621
+ 'dAB3' DirectionalAToB3 no
6622
+ 'dBA0' DirectionalBToA0 no
6623
+ 'dBA1' DirectionalBToA1 no
6624
+ 'dBA2' DirectionalBToA2 no
6625
+ 'dBA3' DirectionalBToA3 no
6626
+ 'dBD0' DirectionalBToD0 no
6627
+ 'dBD1' DirectionalBToD1 no
6628
+ 'dBD2' DirectionalBToD2 no
6629
+ 'dBD3' DirectionalBToD3 no
6630
+ 'dDB0' DirectionalDToB0 no
6631
+ 'dDB1' DirectionalDToB1 no
6632
+ 'dDB2' DirectionalDToB2 no
6633
+ 'dDB3' DirectionalDToB3 no
5572
6634
  'desc' ProfileDescription no
5573
6635
  'devs' DeviceSettings no
5574
6636
  'dmdd' DeviceModelDesc no
@@ -5578,14 +6640,23 @@ specification.
5578
6640
  'gTRC' GreenTRC no
5579
6641
  'gXYZ' GreenMatrixColumn no
5580
6642
  'gamt' Gamut no
6643
+ 'gdb0' GamutBoundaryDescription0 no
6644
+ 'gdb1' GamutBoundaryDescription1 no
6645
+ 'gdb2' GamutBoundaryDescription2 no
6646
+ 'gdb3' GamutBoundaryDescription3 no
5581
6647
  'kTRC' GrayTRC no
5582
6648
  'lumi' Luminance no
6649
+ 'mcta' MultiplexTypeArray no
6650
+ 'mdv ' MultiplexDefaultValues no
5583
6651
  'meas' Measurement ICC_Profile Measurement
5584
6652
  'meta' Metadata ICC_Profile Metadata
6653
+ 'miin' MeasurementInputInfo no
6654
+ 'minf' MeasurementInfo no
5585
6655
  'mmod' MakeAndModel no
5586
6656
  'ncl2' NamedColor2 no
5587
6657
  'ncol' NamedColor no
5588
6658
  'ndin' NativeDisplayInfo no
6659
+ 'nmcl' NamedColor no
5589
6660
  'pre0' Preview0 no
5590
6661
  'pre1' Preview1 no
5591
6662
  'pre2' Preview2 no
@@ -5597,18 +6668,24 @@ specification.
5597
6668
  'psd3' PostScript2CRD3 no
5598
6669
  'pseq' ProfileSequenceDesc no
5599
6670
  'psid' ProfileSequenceIdentifier no
6671
+ 'psin' ProfileSequenceInfo no
5600
6672
  'psvm' PS2CRDVMSize no
5601
6673
  'rTRC' RedTRC no
5602
6674
  'rXYZ' RedMatrixColumn no
5603
6675
  'resp' OutputResponse no
6676
+ 'rfnm' ReferenceName no
5604
6677
  'rhoc' ReflectionHardcopyOrigColorimetry no
5605
6678
  'rig0' PerceptualRenderingIntentGamut no
5606
6679
  'rig2' SaturationRenderingIntentGamut no
5607
6680
  'rpoc' ReflectionPrintOutputColorimetry no
6681
+ 's2cp' StandardToCustomPcc no
5608
6682
  'sape' SceneAppearanceEstimates no
5609
6683
  'scoe' SceneColorimetryEstimates no
5610
6684
  'scrd' ScreeningDesc no
5611
6685
  'scrn' Screening no
6686
+ 'smap' SurfaceMap no
6687
+ 'svcn' SpectralViewingConditions no
6688
+ 'swpt' SpectralWhitePoint no
5612
6689
  'targ' CharTarget no
5613
6690
  'tech' Technology no
5614
6691
  'vcgt' VideoCardGamma no
@@ -5931,6 +7008,7 @@ Unknown only to reduce the volume of the normal output.
5931
7008
  0x000c FlickerReductionIndicator no
5932
7009
  0x000d MovieISOAutoHiLimit no
5933
7010
  0x000e MovieISOAutoControlManualMode no
7011
+ 0x000f MovieWhiteBalanceSameAsPhoto no
5934
7012
  0x001d AF-CPrioritySel no
5935
7013
  0x001e AF-SPrioritySel no
5936
7014
  0x0020 AFPointSel no
@@ -5986,6 +7064,8 @@ Unknown only to reduce the volume of the normal output.
5986
7064
  0x0063 Language no
5987
7065
  0x006c ShootingInfoDisplay no
5988
7066
  0x0074 FlickAdvanceDirection no
7067
+ 0x0075 HDMIOutputResolution no
7068
+ 0x0077 HDMIOutputRange no
5989
7069
  0x0080 RemoteFuncButton no
5990
7070
  0x008b CmdDialsReverseRotation no
5991
7071
  0x008d FocusPeakingHighlightColor no
@@ -5993,6 +7073,7 @@ Unknown only to reduce the volume of the normal output.
5993
7073
  0x008f ShutterSpeedLock no
5994
7074
  0x0090 ApertureLock no
5995
7075
  0x0091 MovieHighlightDisplayThreshold no
7076
+ 0x0092 HDMIExternalRecorder no
5996
7077
  0x0093 BlockShotAFResponse no
5997
7078
  0x0094 SubjectMotion no
5998
7079
  0x0095 Three-DTrackingFaceDetection no
@@ -6039,7 +7120,7 @@ Unknown only to reduce the volume of the normal output.
6039
7120
  0x00de LimitSelectableImageArea16To9? no
6040
7121
  0x00df ApplySettingsToLiveView no
6041
7122
  0x00e0 FocusPeakingLevel no
6042
- 0x00e9 LensControlRing no
7123
+ 0x00ea LensControlRing no
6043
7124
  0x00ed MovieMultiSelector no
6044
7125
  0x00ee MovieAFSpeed no
6045
7126
  0x00ef MovieAFSpeedApply no
@@ -6055,10 +7136,14 @@ Unknown only to reduce the volume of the normal output.
6055
7136
  0x00fb SecondarySlotFunction no
6056
7137
  0x00fc SilentPhotography no
6057
7138
  0x00fd ExtendedShutterSpeeds no
7139
+ 0x0102 HDMIBitDepth no
7140
+ 0x0103 HDMIOutputHDR no
7141
+ 0x0104 HDMIViewAssist no
6058
7142
  0x0109 BracketSet no
6059
7143
  0x010a BracketProgram no
6060
7144
  0x010b BracketIncrement no
6061
7145
  0x010c BracketIncrement no
7146
+ 0x010e MonitorBrightness no
6062
7147
  0x0116 GroupAreaC1 no
6063
7148
  0x0117 AutoAreaAFStartingPoint no
6064
7149
  0x0118 FocusPointPersistence no
@@ -6102,7 +7187,7 @@ Unknown only to reduce the volume of the normal output.
6102
7187
  0x0150 ShutterType no
6103
7188
  0x0151 LensFunc2Button no
6104
7189
  0x0158 USBPowerDelivery no
6105
- 0x015b GroupAreaC2 no
7190
+ 0x0159 EnergySavingMode no
6106
7191
  0x015c BracketingBurstOptions no
6107
7192
  0x015e PrimarySlot no
6108
7193
  0x015f ReverseFocusRing no
@@ -6115,7 +7200,9 @@ Unknown only to reduce the volume of the normal output.
6115
7200
  0x016a LimitAF-AreaModeSelAutoAnimals? no
6116
7201
  0x016b LimitAF-AreaModeSelWideLPeople? no
6117
7202
  0x016c LimitAF-AreaModeSelWideLAnimals? no
7203
+ 0x016d SaveFocus no
6118
7204
  0x016e AFAreaMode no
7205
+ 0x016f MovieAFAreaMode no
6119
7206
  0x0170 PreferSubSelectorCenter no
6120
7207
  0x0171 KeepExposureWithTeleconverter no
6121
7208
  0x0174 FocusPointSelectionSpeed no
@@ -6238,6 +7325,7 @@ Unknown only to reduce the volume of the normal output.
6238
7325
  ColorData8 Canon ColorData8
6239
7326
  ColorData9 Canon ColorData9
6240
7327
  ColorData10 Canon ColorData10
7328
+ ColorData11 Canon ColorData11
6241
7329
  ColorDataUnknown Canon ColorDataUnknown
6242
7330
  0x4002 CRWParam? no
6243
7331
  0x4003 ColorInfo Canon ColorInfo
@@ -7359,6 +8447,7 @@ WB tags for the Canon G9.
7359
8447
  19 LiveViewShooting int16s
7360
8448
  20 FocusDistanceUpper int16u
7361
8449
  21 FocusDistanceLower int16u
8450
+ 23 ShutterMode int16s
7362
8451
  25 FlashExposureLock int16s
7363
8452
  61 RFLensType int16u
7364
8453
 
@@ -7868,7 +8957,8 @@ These tags are used by the EOS 600D and 1200D.
7868
8957
 
7869
8958
  =head3 Canon ColorData7 Tags
7870
8959
 
7871
- These tags are used by the EOS 1DX, 5DmkIII, 6D, 100D, 650D, 700D, M and 7DmkII.
8960
+ These tags are used by the EOS 1DX, 5DmkIII, 6D, 7DmkII, 100D, 650D, 700D,
8961
+ 8000D, M and M2.
7872
8962
 
7873
8963
  Index2 Tag Name Writable
7874
8964
  ------ -------- --------
@@ -7948,6 +9038,9 @@ These tags are used by the EOS 1DX, 5DmkIII, 6D, 100D, 650D, 700D, M and 7DmkII.
7948
9038
 
7949
9039
  =head3 Canon ColorData8 Tags
7950
9040
 
9041
+ These tags are used by the EOS 1DXmkII, 5DS, 5DSR, 5DmkIV, 6DmkII, 77D, 80D,
9042
+ 200D, 800D, 1300D, 2000D, 4000D and 9000D.
9043
+
7951
9044
  Index2 Tag Name Writable
7952
9045
  ------ -------- --------
7953
9046
  0 ColorDataVersion int16s
@@ -8044,6 +9137,8 @@ These tags are used by the EOS 1DX, 5DmkIII, 6D, 100D, 650D, 700D, M and 7DmkII.
8044
9137
 
8045
9138
  =head3 Canon ColorData9 Tags
8046
9139
 
9140
+ These tags are used by the M6mkII, M50, M200, EOS R, RP, 90D, 250D and 850D
9141
+
8047
9142
  Index2 Tag Name Writable
8048
9143
  ------ -------- --------
8049
9144
  0 ColorDataVersion int16s
@@ -8133,6 +9228,8 @@ These tags are used by the EOS 1DX, 5DmkIII, 6D, 100D, 650D, 700D, M and 7DmkII.
8133
9228
 
8134
9229
  =head3 Canon ColorData10 Tags
8135
9230
 
9231
+ These tags are used by the R5, R5 and EOS 1DXmkIII.
9232
+
8136
9233
  Index2 Tag Name Writable
8137
9234
  ------ -------- --------
8138
9235
  0 ColorDataVersion int16s
@@ -8220,6 +9317,95 @@ These tags are used by the EOS 1DX, 5DmkIII, 6D, 100D, 650D, 700D, M and 7DmkII.
8220
9317
  811 SpecularWhiteLevel int16u
8221
9318
  812 LinearityUpperMargin int16u
8222
9319
 
9320
+ =head3 Canon ColorData11 Tags
9321
+
9322
+ These tags are used by the EOS R3
9323
+
9324
+ Index2 Tag Name Writable
9325
+ ------ -------- --------
9326
+ 0 ColorDataVersion int16s
9327
+ 105 WB_RGGBLevelsAsShot int16s[4]
9328
+ 109 ColorTempAsShot int16s
9329
+ 110 WB_RGGBLevelsAuto int16s[4]
9330
+ 114 ColorTempAuto int16s
9331
+ 115 WB_RGGBLevelsMeasured int16s[4]
9332
+ 119 ColorTempMeasured int16s
9333
+ 120 WB_RGGBLevelsUnknown? int16s[4]
9334
+ 124 ColorTempUnknown? int16s
9335
+ 125 WB_RGGBLevelsUnknown2? int16s[4]
9336
+ 129 ColorTempUnknown2? int16s
9337
+ 130 WB_RGGBLevelsUnknown3? int16s[4]
9338
+ 134 ColorTempUnknown3? int16s
9339
+ 135 WB_RGGBLevelsUnknown4? int16s[4]
9340
+ 139 ColorTempUnknown4? int16s
9341
+ 140 WB_RGGBLevelsUnknown5? int16s[4]
9342
+ 144 ColorTempUnknown5? int16s
9343
+ 145 WB_RGGBLevelsUnknown6? int16s[4]
9344
+ 149 ColorTempUnknown6? int16s
9345
+ 150 WB_RGGBLevelsUnknown7? int16s[4]
9346
+ 154 ColorTempUnknown7? int16s
9347
+ 155 WB_RGGBLevelsUnknown8? int16s[4]
9348
+ 159 ColorTempUnknown8? int16s
9349
+ 160 WB_RGGBLevelsUnknown9? int16s[4]
9350
+ 164 ColorTempUnknown9? int16s
9351
+ 165 WB_RGGBLevelsUnknown10? int16s[4]
9352
+ 169 ColorTempUnknown10? int16s
9353
+ 170 WB_RGGBLevelsUnknown11? int16s[4]
9354
+ 174 ColorTempUnknown11? int16s
9355
+ 175 WB_RGGBLevelsUnknown11? int16s[4]
9356
+ 179 ColorTempUnknown11? int16s
9357
+ 180 WB_RGGBLevelsUnknown12? int16s[4]
9358
+ 184 ColorTempUnknown12? int16s
9359
+ 185 WB_RGGBLevelsUnknown13? int16s[4]
9360
+ 189 ColorTempUnknown13? int16s
9361
+ 190 WB_RGGBLevelsUnknown14? int16s[4]
9362
+ 194 ColorTempUnknown14? int16s
9363
+ 195 WB_RGGBLevelsUnknown15? int16s[4]
9364
+ 199 ColorTempUnknown15? int16s
9365
+ 200 WB_RGGBLevelsUnknown16? int16s[4]
9366
+ 204 ColorTempUnknown16? int16s
9367
+ 205 WB_RGGBLevelsDaylight int16s[4]
9368
+ 209 ColorTempDaylight int16s
9369
+ 210 WB_RGGBLevelsShade int16s[4]
9370
+ 214 ColorTempShade int16s
9371
+ 215 WB_RGGBLevelsCloudy int16s[4]
9372
+ 219 ColorTempCloudy int16s
9373
+ 220 WB_RGGBLevelsTungsten int16s[4]
9374
+ 224 ColorTempTungsten int16s
9375
+ 225 WB_RGGBLevelsFluorescent int16s[4]
9376
+ 229 ColorTempFluorescent int16s
9377
+ 230 WB_RGGBLevelsKelvin int16s[4]
9378
+ 234 ColorTempKelvin int16s
9379
+ 235 WB_RGGBLevelsFlash int16s[4]
9380
+ 239 ColorTempFlash int16s
9381
+ 240 WB_RGGBLevelsUnknown17? int16s[4]
9382
+ 244 ColorTempUnknown17? int16s
9383
+ 245 WB_RGGBLevelsUnknown18? int16s[4]
9384
+ 249 ColorTempUnknown18? int16s
9385
+ 250 WB_RGGBLevelsUnknown19? int16s[4]
9386
+ 254 ColorTempUnknown19? int16s
9387
+ 255 WB_RGGBLevelsUnknown20? int16s[4]
9388
+ 259 ColorTempUnknown20? int16s
9389
+ 260 WB_RGGBLevelsUnknown21? int16s[4]
9390
+ 264 ColorTempUnknown21? int16s
9391
+ 265 WB_RGGBLevelsUnknown22? int16s[4]
9392
+ 269 ColorTempUnknown22? int16s
9393
+ 270 WB_RGGBLevelsUnknown23? int16s[4]
9394
+ 274 ColorTempUnknown23? int16s
9395
+ 275 WB_RGGBLevelsUnknown24? int16s[4]
9396
+ 279 ColorTempUnknown24? int16s
9397
+ 280 WB_RGGBLevelsUnknown25? int16s[4]
9398
+ 284 ColorTempUnknown25? int16s
9399
+ 285 WB_RGGBLevelsUnknown26? int16s[4]
9400
+ 289 ColorTempUnknown26? int16s
9401
+ 290 WB_RGGBLevelsUnknown27? int16s[4]
9402
+ 294 ColorTempUnknown27? int16s
9403
+ 300 ColorCalib? Canon ColorCalib
9404
+ 363 PerChannelBlackLevel int16u[4]
9405
+ 640 NormalWhiteLevel int16u
9406
+ 641 SpecularWhiteLevel int16u
9407
+ 642 LinearityUpperMargin int16u
9408
+
8223
9409
  =head3 Canon ColorDataUnknown Tags
8224
9410
 
8225
9411
  Index2 Tag Name Writable
@@ -9492,7 +10678,7 @@ imaging cameras by FLIR Systems Inc.
9492
10678
 
9493
10679
  Information extracted from FLIR FFF images and the APP1 FLIR segment of JPEG
9494
10680
  images. These tags may also be extracted from the first frame of an FLIR
9495
- SEQ file.
10681
+ SEQ file, or all frames if the ExtractEmbedded option is used.
9496
10682
 
9497
10683
  Tag ID Tag Name Writable
9498
10684
  ------ -------- --------
@@ -9702,8 +10888,10 @@ FLIR Picture in Picture tags.
9702
10888
  64 GPSDOP no
9703
10889
  68 GPSSpeedRef no
9704
10890
  70 GPSTrackRef no
10891
+ 72 GPSImgDirectionRef no
9705
10892
  76 GPSSpeed no
9706
10893
  80 GPSTrack no
10894
+ 84 GPSImgDirection no
9707
10895
  88 GPSMapDatum no
9708
10896
 
9709
10897
  =head3 FLIR MeterLink Tags
@@ -12315,7 +13503,8 @@ DiMAGE X and Xt.
12315
13503
  ShotInfoD500 Nikon ShotInfoD500
12316
13504
  ShotInfoD6 Nikon ShotInfoD6
12317
13505
  ShotInfoD610 Nikon ShotInfoD610
12318
- ShotInfoZ7_2 Nikon ShotInfoZ7_2
13506
+ ShotInfoZ7II Nikon ShotInfoZ7II
13507
+ ShotInfoZ9 Nikon ShotInfoZ9
12319
13508
  ShotInfo02xx Nikon ShotInfo
12320
13509
  ShotInfoUnknown Nikon ShotInfo
12321
13510
  0x0092 HueAdjustment int16s
@@ -12371,12 +13560,14 @@ DiMAGE X and Xt.
12371
13560
  0x00b1 HighISONoiseReduction int16u
12372
13561
  0x00b3 ToningEffect string
12373
13562
  0x00b6 PowerUpTime undef
12374
- 0x00b7 AFInfo2 Nikon AFInfo2
13563
+ 0x00b7 AFInfo2 Nikon AFInfo2V0400
13564
+ Nikon AFInfo2
12375
13565
  0x00b8 FileInfo Nikon FileInfo
12376
13566
  Nikon FileInfo
12377
13567
  0x00b9 AFTune Nikon AFTune
12378
13568
  0x00bb RetouchInfo Nikon RetouchInfo
12379
13569
  0x00bd PictureControlData Nikon PictureControl
13570
+ 0x00bf SilentPhotography yes
12380
13571
  0x00c3 BarometerInfo Nikon BarometerInfo
12381
13572
  0x0e00 PrintIM PrintIM
12382
13573
  0x0e01 NikonCaptureData NikonCapture
@@ -12389,6 +13580,61 @@ DiMAGE X and Xt.
12389
13580
  0x0e1e NikonCaptureOutput Nikon CaptureOutput
12390
13581
  0x0e22 NEFBitDepth int16u[4]!
12391
13582
 
13583
+ =head3 Nikon ast Tags
13584
+
13585
+ Tags used by Nikon NX Studio in Nikon NKSC sidecar files and trailers.
13586
+
13587
+ These tags belong to the ExifTool XMP-ast family 1 group.
13588
+
13589
+ Tag Name Writable
13590
+ -------- --------
13591
+ About no
13592
+ GPSAltitude no
13593
+ GPSAltitudeRef no
13594
+ GPSLatitude no
13595
+ GPSLatitudeRef no
13596
+ GPSLongitude no
13597
+ GPSLongitudeRef no
13598
+ GPSMapDatum no
13599
+ GPSVersionID no
13600
+ IPTC IPTC
13601
+ Version no
13602
+ XMLPackets XMP
13603
+
13604
+ =head3 Nikon nine Tags
13605
+
13606
+ These tags belong to the ExifTool XMP-nine family 1 group.
13607
+
13608
+ Tag Name Writable
13609
+ -------- --------
13610
+ About no
13611
+ Label no
13612
+ NineEdits Nikon NineEdits
13613
+ Rating no
13614
+ Trim no
13615
+ Version no
13616
+
13617
+ =head3 Nikon NineEdits Tags
13618
+
13619
+ XML-based tags used to store editing information.
13620
+
13621
+ Tag Name Writable
13622
+ -------- --------
13623
+ FilterParametersBinary no
13624
+ FilterParametersCustomCustomData no
13625
+ FilterParametersExportExportData no
13626
+
13627
+ =head3 Nikon sdc Tags
13628
+
13629
+ These tags belong to the ExifTool XMP-sdc family 1 group.
13630
+
13631
+ Tag Name Writable
13632
+ -------- --------
13633
+ About no
13634
+ AppName no
13635
+ AppVersion no
13636
+ Version no
13637
+
12392
13638
  =head3 Nikon PreviewIFD Tags
12393
13639
 
12394
13640
  Tag ID Tag Name Writable
@@ -12599,6 +13845,13 @@ Tags written by some Nikon GPS-equipped cameras like the AW100.
12599
13845
  8 POILevel int8u
12600
13846
  9 Location undef[70]
12601
13847
 
13848
+ =head3 Nikon MakerNotes0x51 Tags
13849
+
13850
+ Index1 Tag Name Writable
13851
+ ------ -------- --------
13852
+ 0 FirmwareVersion no
13853
+ 10 NEFCompression int16u[0.5]
13854
+
12602
13855
  =head3 Nikon AFInfo Tags
12603
13856
 
12604
13857
  Index1 Tag Name Writable
@@ -12897,6 +14150,8 @@ These tags are extracted from encrypted data in images from the D5 and D500.
12897
14150
  0 ShotInfoVersion no
12898
14151
  4 FirmwareVersion no
12899
14152
  202 Rotation int8u & 0x03
14153
+ 208 Interval int8u~
14154
+ 212 IntervalFrame int8u~
12900
14155
  1506 FlickerReductionIndicator int8u & 0x01
12901
14156
  2004 JPGCompression int8u & 0x01
12902
14157
  2171 AEBracketingSteps int8u & 0xff
@@ -12923,9 +14178,29 @@ These tags are extracted from encrypted data in images from the D6.
12923
14178
  Index Tag Name Writable
12924
14179
  ----- -------- --------
12925
14180
  0 ShotInfoVersion no
14181
+ 4 FirmwareVersion no
14182
+ 30220 IntervalShooting int16u~
12926
14183
  49690 RollAngle fixed32u
12927
14184
  49694 PitchAngle fixed32u
12928
14185
  49698 YawAngle fixed32u
14186
+ 50190 Intervals int32u
14187
+ 50194 ShotsPerInterval int32u
14188
+ 50198 IntervalExposureSmoothing int8u
14189
+ 50200 IntervalPriority int8u
14190
+ 50234 FocusShiftNumberShots int8u
14191
+ 50238 FocusShiftStepWidth int8u
14192
+ 50242 FocusShiftInterval int8u~
14193
+ 50246 FocusShiftExposureLock int8u
14194
+ 50336 DiffractionCompensation int8u
14195
+ 50342 FlashControlMode int8u
14196
+ 50348 FlashGNDistance? no
14197
+ 50352 FlashOutput? int8u
14198
+ 50362 FlashRemoteControl? int8u
14199
+ 50366 FlashMasterControlMode int8u
14200
+ 50368 FlashMasterCompensation? int8s
14201
+ 50372 FlashMasterOutput? int8u
14202
+ 50374 FlashWirelessOption? int8u
14203
+ 50524 MovieType? int8u
12929
14204
 
12930
14205
  =head3 Nikon ShotInfoD610 Tags
12931
14206
 
@@ -12937,17 +14212,155 @@ These tags are extracted from encrypted data in images from the D610.
12937
14212
  4 FirmwareVersion no
12938
14213
  1999 CustomSettingsD610 NikonCustom SettingsD610
12939
14214
 
12940
- =head3 Nikon ShotInfoZ7_2 Tags
14215
+ =head3 Nikon ShotInfoZ7II Tags
12941
14216
 
12942
- These tags are extracted from encrypted data in images from the Z7_2.
14217
+ These tags are extracted from encrypted data in images from the Z7II.
12943
14218
 
12944
14219
  Index Tag Name Writable
12945
14220
  ----- -------- --------
12946
14221
  0 ShotInfoVersion no
12947
14222
  4 FirmwareVersion no
14223
+ 30220 IntervalShooting int16u~
14224
+ 32672 PortraitImpressionBalance int8u[2]~
12948
14225
  52786 RollAngle fixed32u
12949
14226
  52790 PitchAngle fixed32u
12950
14227
  52794 YawAngle fixed32u
14228
+ 52918 MenuSettingsZ7IIOffset int8u
14229
+ 52920 MenuSettingsZ7II Nikon MenuSettingsZ7II
14230
+
14231
+ =head3 Nikon MenuSettingsZ7II Tags
14232
+
14233
+ These tags are used by the Z5, Z6, Z7, Z6II, Z7II, Z50 and Zfc.
14234
+
14235
+ Index1 Tag Name Writable
14236
+ ------ -------- --------
14237
+ 160 IntervalDurationHours int32u
14238
+ 164 IntervalDurationMinutes int32u
14239
+ 168 IntervalDurationSeconds int32u
14240
+ 176 Intervals int32u
14241
+ 180 ShotsPerInterval int32u
14242
+ 184 IntervalExposureSmoothing int8u
14243
+ 186 IntervalPriority int8u
14244
+ 220 FocusShiftNumberShots int8u
14245
+ 224 FocusShiftStepWidth int8u
14246
+ 228 FocusShiftInterval int8u~
14247
+ 232 FocusShiftExposureLock int8u
14248
+ 322 DiffractionCompensation int8u
14249
+ 323 AutoDistortionControl int8u
14250
+ 326 NikonMeteringMode int8u
14251
+ 328 FlashControlMode int8u
14252
+ 334 FlashGNDistance? no
14253
+ 338 FlashOutput? int8u
14254
+ 346 FlashWirelessOption? int8u
14255
+ 348 FlashRemoteControl? int8u
14256
+ 352 FlashMasterControlMode int8u
14257
+ 354 FlashMasterCompensation? int8s
14258
+ 358 FlashMasterOutput? int8u
14259
+ 502 MovieFrameSize? int8u
14260
+ 504 MovieFrameRate? int8u
14261
+ 506 MovieSlowMotion? int8u
14262
+ 510 MovieType? int8u
14263
+ 516 MovieISOAutoManualMode? int16u
14264
+ 568 MovieActiveD-Lighting? int8u
14265
+ 572 MovieHighISONoiseReduction? int8u
14266
+ 574 MovieVignetteControl? int8u
14267
+ 576 MovieVignetteControlSameAsPhoto? int8u
14268
+ 577 MovieDiffractionCompensation? int8u
14269
+ 578 MovieAutoDistortionControl? int8u
14270
+ 584 MovieFocusMode? int8u
14271
+ 590 MovieVibrationReduction? int8u
14272
+ 591 MovieVibrationReductionSameAsPhoto? int8u
14273
+ 858 HDMIOutputN-Log? int8u
14274
+
14275
+ =head3 Nikon ShotInfoZ9 Tags
14276
+
14277
+ These tags are extracted from encrypted data in images from the Z9.
14278
+
14279
+ Index Tag Name Writable
14280
+ ----- -------- --------
14281
+ 0 ShotInfoVersion no
14282
+ 4 FirmwareVersion no
14283
+ 27800 IntervalShooting int16u~
14284
+ 30788 FocusShiftShooting int8u~
14285
+ 60139 RollAngle fixed32u
14286
+ 60143 PitchAngle fixed32u
14287
+ 60147 YawAngle fixed32u
14288
+ 60491 MenuSettingsZ9 Nikon MenuSettingsZ9
14289
+
14290
+ =head3 Nikon MenuSettingsZ9 Tags
14291
+
14292
+ These tags are used by the Z9.
14293
+
14294
+ Index1 Tag Name Writable
14295
+ ------ -------- --------
14296
+ 140 MultipleExposureMode int8u
14297
+ 142 MultiExposureShots int8u
14298
+ 188 Intervals int32u
14299
+ 192 ShotsPerInterval int32u
14300
+ 232 FocusShiftNumberShots int8u
14301
+ 236 FocusShiftStepWidth int8u
14302
+ 240 FocusShiftInterval int8u~
14303
+ 244 FocusShiftExposureLock? int8u
14304
+ 274 PhotoShootingMenuBank int8u
14305
+ 276 ExtendedMenuBanks int8u
14306
+ 308 PhotoShootingMenuBankImageArea int8u
14307
+ 322 AutoISO int8u
14308
+ 324 ISOAutoHiLimit? int16u
14309
+ 326 ISOAutoFlashLimit? int16u
14310
+ 334 ISOAutoShutterTime no
14311
+ 416 MovieVignetteControl? int8u
14312
+ 418 DiffractionCompensation int8u
14313
+ 420 FlickerReductionShooting int8u
14314
+ 424 FlashControlMode int8u
14315
+ 426 FlashMasterCompensation? int8s
14316
+ 430 FlashGNDistance? no
14317
+ 434 FlashOutput? int8u
14318
+ 444 FlashRemoteControl? int8u
14319
+ 456 FlashWirelessOption? int8u
14320
+ 530 VRMode int8u
14321
+ 534 BracketSet int8u
14322
+ 536 BracketProgram int8u
14323
+ 538 BracketIncrement int8u
14324
+ 556 SecondarySlotFunction int8u
14325
+ 572 DXCropAlert int8u
14326
+ 574 SubjectDetection int8u
14327
+ 604 MovieImageArea? int8u & 0x01
14328
+ 614 MovieType? int8u
14329
+ 616 MovieISOAutoHiLimit? int16u
14330
+ 618 MovieISOAutoControlManualMode? int8u
14331
+ 620 MovieISOAutoManualMode? int16u
14332
+ 696 MovieActiveD-Lighting? int8u
14333
+ 698 MovieHighISONoiseReduction? int8u
14334
+ 704 MovieFlickerReduction int8u
14335
+ 706 MovieMeteringMode? int8u
14336
+ 708 MovieFocusMode? int8u
14337
+ 710 MovieAFAreaMode int8u
14338
+ 712 MovieVRMode? int8u
14339
+ 716 MovieElectronicVR? int8u
14340
+ 718 MovieSoundRecording? int8u
14341
+ 720 MicrophoneSensitivity? int8u
14342
+ 722 MicrophoneAttenuator? int8u
14343
+ 724 MicrophoneFrequencyResponse? int8u
14344
+ 726 WindNoiseReduction? int8u
14345
+ 748 MovieToneMap? int8u
14346
+ 754 MovieFrameSize? int8u
14347
+ 756 MovieFrameRate? int8u
14348
+ 762 MicrophoneJackPower? int8u
14349
+ 763 MovieDXCropAlert? int8u
14350
+ 764 MovieSubjectDetection? int8u
14351
+ 799 CustomSettingsZ9 NikonCustom SettingsZ9
14352
+ 1426 Language? int8u
14353
+ 1428 TimeZone int8u
14354
+ 1434 MonitorBrightness? no
14355
+ 1456 AFFineTune? int8u
14356
+ 1552 HDMIOutputResolution int8u
14357
+ 1565 SetClockFromLocationData? int8u
14358
+ 1572 AirplaneMode? int8u
14359
+ 1573 EmptySlotRelease? int8u
14360
+ 1608 EnergySavingMode? int8u
14361
+ 1632 RecordLocationData? int8u
14362
+ 1636 USBPowerDelivery? int8u
14363
+ 1645 SensorShield? int8u
12951
14364
 
12952
14365
  =head3 Nikon ShotInfo Tags
12953
14366
 
@@ -13273,7 +14686,7 @@ These tags are used by the D4S, D750, D810, D5500, D7200 (FlashInfoVersion
13273
14686
  0 FlashInfoVersion no
13274
14687
  4 FlashSource int8u
13275
14688
  6 ExternalFlashFirmware int8u[2]
13276
- 27 FlashCompensation int8s
14689
+ 10 FlashCompensation int8s
13277
14690
 
13278
14691
  =head3 Nikon FlashInfoUnknown Tags
13279
14692
 
@@ -13290,6 +14703,18 @@ These tags are used by the D4S, D750, D810, D5500, D7200 (FlashInfoVersion
13290
14703
  2 MultiExposureShots int32u
13291
14704
  3 MultiExposureAutoGain int32u
13292
14705
 
14706
+ =head3 Nikon AFInfo2V0400 Tags
14707
+
14708
+ Index1 Tag Name Writable
14709
+ ------ -------- --------
14710
+ 0 AFInfo2Version no
14711
+ 62 AFImageWidth int16u
14712
+ 64 AFImageHeight int16u
14713
+ 67 FocusPositionHoriontal int8u~
14714
+ 69 FocusPositionVertical int8u~
14715
+ 70 AFAreaWidth int16u
14716
+ 72 AFAreaHeight int16u
14717
+
13293
14718
  =head3 Nikon AFInfo2 Tags
13294
14719
 
13295
14720
  These tags are written by Nikon DSLR's which have the live view feature.
@@ -14641,6 +16066,151 @@ Custom settings for the D610.
14641
16066
  21.2 ShootingInfoMonitorOffTime int8u & 0x1c
14642
16067
  35.1 PlaybackMonitorOffTime int8u & 0xe0
14643
16068
 
16069
+ =head3 NikonCustom SettingsZ9 Tags
16070
+
16071
+ Custom settings for the Z9.
16072
+
16073
+ Index1 Tag Name Writable
16074
+ ------ -------- --------
16075
+ 1 CustomSettingsBank int8u
16076
+ 3 AF-CPrioritySelection int8u
16077
+ 5 AF-SPrioritySelection int8u
16078
+ 7 BlockShotAFResponse int8u
16079
+ 11 AFPointSel int8u
16080
+ 13 StoreByOrientation int8u
16081
+ 15 AFActivation int8u
16082
+ 16 AF-OnOutOfFocusRelease? int8u
16083
+ 17 LimitAF-AreaModeSelPinpoint? int8u
16084
+ 19 LimitAF-AreaModeSelWideAF_S? int8u
16085
+ 20 LimitAF-AreaModeSelWideAF_L? int8u
16086
+ 21 LimitAFAreaModeSelAuto? int8u
16087
+ 22 FocusPointWrap? int8u
16088
+ 23 ManualFocusPointIllumination? int8u
16089
+ 24 DynamicAreaAFAssist? int8u
16090
+ 25 AF-AssistIlluminator int8u
16091
+ 26 ManualFocusRingInAFMode int8u
16092
+ 27 ExposureControlStepSize int8u
16093
+ 29 EasyExposureCompensation int8u
16094
+ 31 CenterWeightedAreaSize int8u
16095
+ 33 FineTuneOptMatrixMetering int8s
16096
+ 35 FineTuneOptCenterWeighted int8s
16097
+ 37 FineTuneOptSpotMetering int8s
16098
+ 39 FineTuneOptHighlightWeighted int8s
16099
+ 41 ShutterReleaseButtonAE-L int8u
16100
+ 43 SelfTimerTime int8u
16101
+ 45 SelfTimerShotCount int8u
16102
+ 49 SelfTimerShotInterval int8u
16103
+ 51 PlaybackMonitorOffTime int8u
16104
+ 53 MenuMonitorOffTime int8u
16105
+ 55 ShootingInfoMonitorOffTime int8u
16106
+ 57 ImageReviewMonitorOffTime int8u
16107
+ 59 CLModeShootingSpeed int8u
16108
+ 61 MaxContinuousRelease no
16109
+ 65 SyncReleaseMode? int8u
16110
+ 69 LimitSelectableImageAreaDX? int8u
16111
+ 70 LimitSelectableImageArea1To1? int8u
16112
+ 71 LimitSelectableImageArea16To9? int8u
16113
+ 72 FileNumberSequence int8u
16114
+ 73 FocusPeakingLevel? int8u
16115
+ 75 FocusPeakingHighlightColor? int8u
16116
+ 81 ContinuousModeDisplay int8u
16117
+ 83 FlashSyncSpeed no
16118
+ 85 HighSpeedSync int8u
16119
+ 87 FlashShutterSpeed no
16120
+ 89 FlashExposureCompArea int8u
16121
+ 91 AutoFlashISOSensitivity int8u
16122
+ 93 ModelingFlash int8u
16123
+ 95 AutoBracketModeM int8u
16124
+ 97 AutoBracketOrder int8u
16125
+ 99 Func1Button int8u
16126
+ 115 Func2Button int8u
16127
+ 131 AFOnButton int8u
16128
+ 143 SubSelector? int8u
16129
+ 155 AssignMovieRecordButton? int8u
16130
+ 159 LensFunc1Button int8u
16131
+ 167 LensFunc2Button int8u
16132
+ 173 LensControlRing int8u
16133
+ 175 MultiSelectorShootMode int8u
16134
+ 179 MultiSelectorPlaybackMode int8u
16135
+ 183 ShutterSpeedLock int8u
16136
+ 184 ApertureLock int8u
16137
+ 186 CmdDialsReverseRotation int8u
16138
+ 191 UseDialWithoutHold? int8u
16139
+ 193 ReverseIndicators? int8u
16140
+ 195 MovieFunc1Button int8u
16141
+ 203 MovieAF-OnButton int8u
16142
+ 217 MovieMultiSelector? int8u
16143
+ 221 MovieAFSpeed int8u
16144
+ 223 MovieAFSpeedApply int8u
16145
+ 225 MovieAFTrackingSensitivity int8u
16146
+ 257 LCDIllumination? int8u
16147
+ 258 ExtendedShutterSpeeds int8u
16148
+ 259 SubjectMotion int8u
16149
+ 261 FocusPointPersistence int8u
16150
+ 263 AutoFocusModeRestrictions? int8u
16151
+ 267 CHModeShootingSpeed int8u
16152
+ 269.1 LimitReleaseModeSelCL? int8u & 0x02
16153
+ 269.2 LimitReleaseModeSelCH? int8u & 0x04
16154
+ 269.3 LimitReleaseModeSelC30? int8u & 0x10
16155
+ 269.4 LimitReleaseModeSelC120? int8u & 0x40
16156
+ 269.5 LimitReleaseModeSelSelf? int8u & 0x80
16157
+ 273 FlashBurstPriority? int8u
16158
+ 277 VerticalFuncButton int8u
16159
+ 281 Func3Button int8u
16160
+ 285 VerticalAFOnButton int8u
16161
+ 293 VerticalMultiSelectorPlaybackMode? int8u
16162
+ 295 MovieFunc3Button int8u
16163
+ 335 LimitAF-AreaModeSelDynamic_S? int8u
16164
+ 336 LimitAF-AreaModeSelDynamic_M? int8u
16165
+ 337 LimitAF-AreaModeSelDynamic_L? int8u
16166
+ 339 LimitAF-AreaModeSel3DTracking? int8u
16167
+ 341 PlaybackFlickUp? int8u
16168
+ 345 PlaybackFlickDown? int8u
16169
+ 349 ISOStepSize int8u
16170
+ 355 ReverseFocusRing int8u
16171
+ 356 EVFImageFrame? int8u
16172
+ 357 EVFGrid? int8u
16173
+ 359 VirtualHorizonStyle? int8u
16174
+ 373 Func4Button? int8u
16175
+ 379 AudioButton? int8u
16176
+ 381 QualityButton? int8u
16177
+ 399 VerticalMultiSelector? int8u
16178
+ 421 Func1ButtonPlaybackMode? int8u
16179
+ 423 Func2ButtonPlaybackMode? int8u
16180
+ 425 Func3ButtonPlaybackMode? int8u
16181
+ 431 Func4ButtonPlaybackMode? int8u
16182
+ 437 MovieRecordButtonPlaybackMode? int8u
16183
+ 439 VerticalFuncButtonPlaybackMode? int8u
16184
+ 441 AudioButtonPlaybackMode? int8u
16185
+ 447 QualityButtonPlaybackMode? int8u
16186
+ 453 WhiteBalanceButtonPlaybackMode? int8u
16187
+ 459 CommandDialPlaybackMode? int8u
16188
+ 463 SubCommandDialPlaybackMode? int8u
16189
+ 467 FocusPointLock? int8u
16190
+ 469 ControlRingResponse int8u
16191
+ 481 VerticalMovieFuncButton? int8u
16192
+ 505 VerticalMovieAFOnButton? int8u
16193
+ 515 MovieAFAreaMode? int8u
16194
+ 527 HDMIViewAssist? int8u
16195
+ 529 ZebraPatternToneRange? int8u
16196
+ 531 MovieZebraPattern? int8u
16197
+ 533 MovieHighlightDisplayThreshold? int8u
16198
+ 535 MovieMidtoneDisplayValue? int8u
16199
+ 537 MovieMidtoneDisplayRange? int8u~
16200
+ 541 MovieEVFGrid? int8u
16201
+ 549 MovieShutterSpeedLock? int8u
16202
+ 550 MovieFocusPointLock? int8u
16203
+ 563 MatrixMetering? int8u
16204
+ 564 AF-CFocusDisplay int8u
16205
+ 565 FocusPeakingDisplay? int8u
16206
+ 567 KeepExposure int8u
16207
+ 585 StarlightView? int8u
16208
+ 587 EVFWarmDisplayMode? int8u
16209
+ 589 EVFWarmDisplayBrightness? int8s
16210
+ 591 EVFReleaseIndicator? int8u
16211
+ 601 MovieApertureLock? int8u
16212
+ 607 FlickAdvanceDirection? int8u
16213
+
14644
16214
  =head2 NikonCapture Tags
14645
16215
 
14646
16216
  This information is written by the Nikon Capture software in tag 0x0e01 of
@@ -15412,6 +16982,7 @@ such as the OM E-M5.
15412
16982
  44 Model no
15413
16983
  131 DateTime1 no
15414
16984
  157 DateTime2 no
16985
+ 383 LensModel no
15415
16986
 
15416
16987
  =head3 Olympus scrn2 Tags
15417
16988
 
@@ -18716,6 +20287,7 @@ WX350/WX500, ILCE-1/7/7C/7R/7S/7M2/7M3/7RM2/7RM3/7RM4/7SM2/7SM3/9/9M2/5000/
18716
20287
  Index1 Tag Name Writable
18717
20288
  ------ -------- --------
18718
20289
  1176 ISOInfo Sony ISOInfo
20290
+ 1181 ISOInfo Sony ISOInfo
18719
20291
  1185 ISOInfo Sony ISOInfo
18720
20292
  1186 ISOInfo Sony ISOInfo
18721
20293
  1437 ISOInfo Sony ISOInfo
@@ -19046,7 +20618,7 @@ E-mount models.
19046
20618
 
19047
20619
  =head3 Sony Tag9416 Tags
19048
20620
 
19049
- Valid for the ILCE-1/7SM3, ILME-FX3.
20621
+ Valid for the ILCE-1/7M4/7SM3, ILME-FX3.
19050
20622
 
19051
20623
  Index1 Tag Name Writable
19052
20624
  ------ -------- --------
@@ -19070,7 +20642,9 @@ Valid for the ILCE-1/7SM3, ILME-FX3.
19070
20642
  115 MinFocalLength no
19071
20643
  117 MaxFocalLength no
19072
20644
  2191 VignettingCorrParams no
20645
+ 2193 VignettingCorrParams no
19073
20646
  2324 ChromaticAberrationCorrParams no
20647
+ 2326 ChromaticAberrationCorrParams no
19074
20648
 
19075
20649
  =head3 Sony PIC Tags
19076
20650
 
@@ -21823,16 +23397,19 @@ even if it is not listed in this table.
21823
23397
 
21824
23398
  =head2 Jpeg2000 Tags
21825
23399
 
21826
- The tags below are extracted from JPEG 2000 images and the JUMBF metadata in
21827
- JPEG images. Note that ExifTool currently writes only EXIF, IPTC and XMP
21828
- tags in Jpeg2000 images.
23400
+ The tags below are found in JPEG 2000 images and the JUMBF metadata in JPEG
23401
+ images, but not all of these are extracted. Note that ExifTool currently
23402
+ writes only EXIF, IPTC and XMP tags in Jpeg2000 images.
21829
23403
 
21830
23404
  Tag ID Tag Name Writable
21831
23405
  ------ -------- --------
21832
23406
  'Exif' EXIF EXIF
21833
23407
  'asoc' Association Jpeg2000
23408
+ 'bfdb' BinaryDataType no
21834
23409
  'bfil' BinaryFilter no
23410
+ 'bidb' BinaryData no
21835
23411
  'bpcc' BitsPerComponent no
23412
+ 'cbor' CBORData CBOR
21836
23413
  'cdef' ComponentDefinition no
21837
23414
  'cgrp' ColorGroup no
21838
23415
  'chck' DigitalSignature no
@@ -21886,6 +23463,7 @@ tags in Jpeg2000 images.
21886
23463
  UUID-GeoJP2 EXIF
21887
23464
  UUID-Photoshop Photoshop
21888
23465
  UUID-Signature no
23466
+ UUID-C2PAClaimSignature -
21889
23467
  UUID-Unknown no
21890
23468
  'xml ' XML XMP XML
21891
23469
  XMP -
@@ -21893,14 +23471,23 @@ tags in Jpeg2000 images.
21893
23471
 
21894
23472
  =head3 Jpeg2000 ColorSpec Tags
21895
23473
 
23474
+ The table below contains tags in the color specification (colr) box. This
23475
+ box may be rewritten by writing either ICC_Profile, ColorSpace or
23476
+ ColorSpecData. When writing, any existing colr boxes are replaced with the
23477
+ newly created colr box.
23478
+
23479
+ B<NOTE>: Care must be taken when writing this color specification because
23480
+ writing a specification that is incompatible with the image data may make
23481
+ the image undisplayable.
23482
+
21896
23483
  Index1 Tag Name Writable
21897
23484
  ------ -------- --------
21898
- 0 ColorSpecMethod no
21899
- 1 ColorSpecPrecedence no
21900
- 2 ColorSpecApproximation no
23485
+ 0 ColorSpecMethod int8s!
23486
+ 1 ColorSpecPrecedence int8s!
23487
+ 2 ColorSpecApproximation int8s!
21901
23488
  3 ICC_Profile ICC_Profile
21902
- ColorSpace no
21903
- ColorSpecData no
23489
+ ColorSpace int32u!
23490
+ ColorSpecData undef!
21904
23491
 
21905
23492
  =head3 Jpeg2000 FileType Tags
21906
23493
 
@@ -21967,6 +23554,24 @@ JSON-formatted files.
21967
23554
  ON1_SettingsMetadataUsage no
21968
23555
  ON1_SettingsMetadataVisibleToUser no
21969
23556
 
23557
+ =head2 CBOR Tags
23558
+
23559
+ The tags below are extracted from CBOR (Concise Binary Object
23560
+ Representation) metadata. The C2PA specification uses this format for some
23561
+ metadata. As well as these tags, ExifTool will read any existing tags.
23562
+
23563
+ Tag Name Writable
23564
+ -------- --------
23565
+ AuthorIdentifier no
23566
+ AuthorName no
23567
+ DocumentID no
23568
+ Format no
23569
+ InstanceID no
23570
+ Relationship no
23571
+ ThumbnailHash no+
23572
+ ThumbnailURL no
23573
+ Title no
23574
+
21970
23575
  =head2 PLIST Tags
21971
23576
 
21972
23577
  Apple Property List tags. ExifTool reads both XML and binary-format PLIST
@@ -22123,7 +23728,7 @@ These tags belong to the ExifTool XMP-dwc family 1 group.
22123
23728
  EventEarliestDate date_
22124
23729
  EventEndDayOfYear integer_
22125
23730
  EventDate date_
22126
- EventID string_
23731
+ EventID string/_
22127
23732
  EventRemarks lang-alt_
22128
23733
  EventTime string_
22129
23734
  EventFieldNotes string_
@@ -22165,7 +23770,7 @@ These tags belong to the ExifTool XMP-dwc family 1 group.
22165
23770
  HumanObservationEarliestDate date_
22166
23771
  HumanObservationEndDayOfYear integer_
22167
23772
  HumanObservationEventDate date_
22168
- HumanObservationEventID string_
23773
+ HumanObservationEventID string/_
22169
23774
  HumanObservationEventRemarks lang-alt_
22170
23775
  HumanObservationEventTime string_
22171
23776
  HumanObservationFieldNotes string_
@@ -22197,7 +23802,7 @@ These tags belong to the ExifTool XMP-dwc family 1 group.
22197
23802
  MachineObservationEarliestDate date_
22198
23803
  MachineObservationEndDayOfYear integer_
22199
23804
  MachineObservationEventDate date_
22200
- MachineObservationEventID string_
23805
+ MachineObservationEventID string/_
22201
23806
  MachineObservationEventRemarks lang-alt_
22202
23807
  MachineObservationEventTime string_
22203
23808
  MachineObservationFieldNotes string_
@@ -23564,6 +25169,7 @@ specification.
23564
25169
  GIFVersion no
23565
25170
  ScreenDescriptor GIF Screen
23566
25171
  Text no
25172
+ TransparentColor no
23567
25173
 
23568
25174
  =head3 GIF Extensions Tags
23569
25175
 
@@ -23886,13 +25492,13 @@ check if speed is more of a concern.
23886
25492
  'dSIG' DigitalSignature no
23887
25493
  'eXIf' eXIf EXIF
23888
25494
  'fRAc' FractalParameters no
23889
- 'gAMA' Gamma no
25495
+ 'gAMA' Gamma yes!
23890
25496
  'gIFg' GIFGraphicControlExtension no
23891
25497
  'gIFt' GIFPlainTextExtension no
23892
25498
  'gIFx' GIFApplicationExtension no
23893
25499
  'hIST' PaletteHistogram no
23894
25500
  'iCCP' ICC_Profile ICC_Profile
23895
- 'iCCP-name' ProfileName no
25501
+ 'iCCP-name' ProfileName yes
23896
25502
  'iDOT' AppleDataOffsets no
23897
25503
  'iTXt' InternationalText PNG TextualData
23898
25504
  'oFFs' ImageOffset no
@@ -23901,7 +25507,7 @@ check if speed is more of a concern.
23901
25507
  'sBIT' SignificantBits no
23902
25508
  'sCAL' SubjectScale PNG SubjectScale
23903
25509
  'sPLT' SuggestedPalette no
23904
- 'sRGB' SRGBRendering no
25510
+ 'sRGB' SRGBRendering yes!
23905
25511
  'sTER' StereoImage PNG StereoImage
23906
25512
  'tEXt' TextualData PNG TextualData
23907
25513
  'tIME' ModifyDate yes
@@ -24999,22 +26605,22 @@ This is the PDF document catalog.
24999
26605
 
25000
26606
  Tag ID Tag Name Writable
25001
26607
  ------ -------- --------
25002
- 'CS0' CS0 PDF ICCBased
25003
- 'Cs1' Cs1 PDF ICCBased
26608
+ 'CS0' CS0 PDF DefaultRGB
26609
+ 'Cs1' Cs1 PDF DefaultRGB
25004
26610
  'DefaultCMYK' DefaultCMYK PDF DefaultRGB
25005
26611
  'DefaultRGB' DefaultRGB PDF DefaultRGB
25006
26612
 
25007
- =head3 PDF ICCBased Tags
26613
+ =head3 PDF DefaultRGB Tags
25008
26614
 
25009
26615
  Tag ID Tag Name Writable
25010
26616
  ------ -------- --------
25011
- '_stream' _stream ICC_Profile
26617
+ 'ICCBased' ICCBased PDF ICCBased
25012
26618
 
25013
- =head3 PDF DefaultRGB Tags
26619
+ =head3 PDF ICCBased Tags
25014
26620
 
25015
26621
  Tag ID Tag Name Writable
25016
26622
  ------ -------- --------
25017
- 'ICCBased' ICCBased PDF ICCBased
26623
+ '_stream' _stream ICC_Profile
25018
26624
 
25019
26625
  =head3 PDF Properties Tags
25020
26626
 
@@ -26020,7 +27626,7 @@ According to the specification, integer-format QuickTime date/time tags
26020
27626
  should be stored as UTC. Unfortunately, digital cameras often store local
26021
27627
  time values instead (presumably because they don't know the time zone). For
26022
27628
  this reason, by default ExifTool does not assume a time zone for these
26023
- values. However, if the QuickTimeUTC API option is set, then ExifTool will
27629
+ values. However, if the API QuickTimeUTC option is set, then ExifTool will
26024
27630
  assume these values are properly stored as UTC, and will convert them to
26025
27631
  local time when extracting.
26026
27632
 
@@ -26029,6 +27635,11 @@ the PrintConv option is enabled and no time zone is specified. This is
26029
27635
  because Apple software may display crazy values if the time zone is missing
26030
27636
  for some tags.
26031
27637
 
27638
+ By default ExifTool will remove null padding from some QuickTime containers
27639
+ in Canon CR3 files when writing, but the
27640
+ QuickTimePad option may be used to preserve
27641
+ the original size by padding with nulls if necessary.
27642
+
26032
27643
  See
26033
27644
  L<https://developer.apple.com/library/archive/documentation/QuickTime/QTFF/>
26034
27645
  for the official specification.
@@ -26043,6 +27654,7 @@ for the official specification.
26043
27654
  'frea' Kodak_frea Kodak frea
26044
27655
  'free' KodakFree Kodak Free
26045
27656
  Pittasoft QuickTime Pittasoft
27657
+ ThumbnailImage no
26046
27658
  Free? no
26047
27659
  'ftyp' FileType QuickTime FileType
26048
27660
  'gps0' GPSTrack QuickTime Stream
@@ -26103,7 +27715,7 @@ Tags found in Pittasoft Blackvue dashcam "free" data.
26103
27715
  The tags below are extracted from timed metadata in QuickTime and other
26104
27716
  formats of video files when the ExtractEmbedded option is used. Although
26105
27717
  most of these tags are combined into the single table below, ExifTool
26106
- currently reads 55 different formats of timed GPS metadata from video files.
27718
+ currently reads 59 different formats of timed GPS metadata from video files.
26107
27719
 
26108
27720
  Tag Name Writable
26109
27721
  -------- --------
@@ -26161,6 +27773,7 @@ currently reads 55 different formats of timed GPS metadata from video files.
26161
27773
  fdsc GoPro fdsc
26162
27774
  gpmd_Kingslim QuickTime Stream
26163
27775
  gpmd_Rove QuickTime Stream
27776
+ gpmd_FMAS QuickTime Stream
26164
27777
  gpmd_GoPro GoPro GPMF
26165
27778
  marl QuickTime marl
26166
27779
  mebx QuickTime Keys
@@ -26348,7 +27961,7 @@ changed via the config file.
26348
27961
  'player.movie.audio.gain' AudioGain yes
26349
27962
  'player.movie.audio.mute' Mute int8u
26350
27963
  'player.movie.audio.pitchshift' PitchShift yes
26351
- 'player.movie.audio.treble' Trebel yes
27964
+ 'player.movie.audio.treble' Treble yes
26352
27965
  'player.movie.visual.brightness' Brightness yes
26353
27966
  'player.movie.visual.color' Color yes
26354
27967
  'player.movie.visual.contrast' Contrast yes
@@ -27978,9 +29591,10 @@ for the specification.
27978
29591
  0x7671 ProjectionType no
27979
29592
  0x7672 EquirectangularProj QuickTime equi
27980
29593
  CubemapProj QuickTime cbmp
27981
- 0x7673 ProjectionPosYaw no
27982
- 0x7674 ProjectionPosPitch no
27983
- 0x7675 ProjectionPosRoll no
29594
+ ProjectionPrivate no
29595
+ 0x7673 ProjectionPoseYaw no
29596
+ 0x7674 ProjectionPosePitch no
29597
+ 0x7675 ProjectionPoseRoll no
27984
29598
 
27985
29599
  =head2 MOI Tags
27986
29600
 
@@ -34940,6 +36554,7 @@ document number (ie. the exiftool C<-g3> option).
34940
36554
  9 ZipCompressedSize no
34941
36555
  11 ZipUncompressedSize no
34942
36556
  15 ZipFileName no
36557
+ '_com' ZipFileComment no
34943
36558
 
34944
36559
  =head3 ZIP GZIP Tags
34945
36560
 
@@ -35167,7 +36782,7 @@ options, but these files are not writable directly.
35167
36782
 
35168
36783
  XAttr tags are extracted using the "xattr" utility. They are extracted if
35169
36784
  any "XAttr*" tag or the MacOS group is specifically requested, or by setting
35170
- the XAttrTags API option to 1 or the RequestAll API option to 2 or higher.
36785
+ the API XAttrTags option to 1 or the API RequestAll option to 2 or higher.
35171
36786
  And they are extracted by default from MacOS "._" files when reading
35172
36787
  these files directly.
35173
36788
 
@@ -35189,7 +36804,7 @@ these files directly.
35189
36804
 
35190
36805
  MDItem tags are extracted using the "mdls" utility. They are extracted if
35191
36806
  any "MDItem*" tag or the MacOS group is specifically requested, or by
35192
- setting the MDItemTags API option to 1 or the RequestAll API option to 2 or
36807
+ setting the API MDItemTags option to 1 or the API RequestAll option to 2 or
35193
36808
  higher. Note that these tags do not necessarily reflect the current
35194
36809
  metadata of a file -- it may take some time for the MacOS mdworker daemon to
35195
36810
  index the file after a metadata change.
@@ -35413,6 +37028,7 @@ FileName.
35413
37028
  XMP XMP yes!
35414
37029
  XResolution File no
35415
37030
  YResolution File no
37031
+ ZoneIdentifier System yes!
35416
37032
 
35417
37033
  =head2 Composite Tags
35418
37034
 
@@ -35567,7 +37183,7 @@ values, may created via the ExifTool configuration file.
35567
37183
  GPSLongitude Sony:GPSLongitude no
35568
37184
  Sony:GPSLongitudeRef
35569
37185
  GPSLongitudeRef XMP-exif:GPSLongitude no
35570
- GPSPosition GPSLatitude no
37186
+ GPSPosition GPSLatitude yes!
35571
37187
  GPSLongitude
35572
37188
  HyperfocalDistance FocalLength no
35573
37189
  Aperture
@@ -36247,7 +37863,7 @@ L<Image::ExifTool::BuildTagLookup|Image::ExifTool::BuildTagLookup>.
36247
37863
 
36248
37864
  =head1 AUTHOR
36249
37865
 
36250
- Copyright 2003-2021, Phil Harvey (philharvey66 at gmail.com)
37866
+ Copyright 2003-2022, Phil Harvey (philharvey66 at gmail.com)
36251
37867
 
36252
37868
  This library is free software; you can redistribute it and/or modify it
36253
37869
  under the same terms as Perl itself.