exiftool-vendored 35.1.0 → 35.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -0
- package/dist/DefaultExifToolOptions.js +4 -1
- package/dist/DefaultExifToolOptions.js.map +1 -1
- package/dist/ExifToolOptions.d.ts +8 -0
- package/dist/ExifToolOptions.js.map +1 -1
- package/dist/Tags.d.ts +389 -272
- package/dist/Tags.js +6 -6
- package/dist/Tags.js.map +1 -1
- package/package.json +9 -9
package/dist/Tags.d.ts
CHANGED
|
@@ -26,7 +26,7 @@ export interface ExifToolTags {
|
|
|
26
26
|
/**
|
|
27
27
|
* @frequency 🔥 ★★★★ (100%)
|
|
28
28
|
* @groups ExifTool
|
|
29
|
-
* @example 13.
|
|
29
|
+
* @example 13.46
|
|
30
30
|
*/
|
|
31
31
|
ExifToolVersion?: string;
|
|
32
32
|
/**
|
|
@@ -75,8 +75,10 @@ export interface FileTags {
|
|
|
75
75
|
ColorComponents?: number;
|
|
76
76
|
/**
|
|
77
77
|
* @frequency 🔥 ☆☆☆☆ (2%)
|
|
78
|
-
* @groups File
|
|
78
|
+
* @groups File
|
|
79
79
|
* @example "This is a comment."
|
|
80
|
+
* @remarks Comment text. JPEG COM segment, GIF comment, or other file-level comment.
|
|
81
|
+
* Not an XMP tag despite common confusion.
|
|
80
82
|
*/
|
|
81
83
|
Comment?: string;
|
|
82
84
|
/**
|
|
@@ -112,7 +114,7 @@ export interface FileTags {
|
|
|
112
114
|
/**
|
|
113
115
|
* @frequency 🔥 ★★★★ (100%)
|
|
114
116
|
* @groups File
|
|
115
|
-
* @example "
|
|
117
|
+
* @example "2026:01:25 18:36:13Z"
|
|
116
118
|
* @remarks File system access date/time. Not stored metadata - file system property.
|
|
117
119
|
* Writable on some systems. Changes when file is read.
|
|
118
120
|
* @see https://exiftool.org/TagNames/File.html
|
|
@@ -130,7 +132,7 @@ export interface FileTags {
|
|
|
130
132
|
/**
|
|
131
133
|
* @frequency 🔥 ★★★★ (100%)
|
|
132
134
|
* @groups File
|
|
133
|
-
* @example "
|
|
135
|
+
* @example "2026:01:25 18:36:11Z"
|
|
134
136
|
* @remarks File system inode change date/time (Unix/Linux). Not stored metadata - file system property.
|
|
135
137
|
* Changes when file metadata (permissions, ownership) or content changes. Not available on Windows.
|
|
136
138
|
* @see https://exiftool.org/TagNames/File.html
|
|
@@ -150,7 +152,7 @@ export interface FileTags {
|
|
|
150
152
|
* @groups File
|
|
151
153
|
* @example "zv_e10m2.jpg"
|
|
152
154
|
* @remarks Name of the file. Not stored metadata - intrinsic file property.
|
|
153
|
-
* Writable: can
|
|
155
|
+
* Writable: can rename files. May include full path to set Directory simultaneously.
|
|
154
156
|
* @see https://exiftool.org/TagNames/File.html
|
|
155
157
|
*/
|
|
156
158
|
FileName?: string;
|
|
@@ -165,7 +167,7 @@ export interface FileTags {
|
|
|
165
167
|
* @groups File
|
|
166
168
|
* @example "990 bytes"
|
|
167
169
|
* @remarks Size of the file. Not stored metadata - intrinsic file property.
|
|
168
|
-
* Read-only
|
|
170
|
+
* Read-only. Uses SI prefixes by default (1 kB = 1000 bytes).
|
|
169
171
|
* @see https://exiftool.org/TagNames/File.html
|
|
170
172
|
*/
|
|
171
173
|
FileSize?: string;
|
|
@@ -200,8 +202,8 @@ export interface FileTags {
|
|
|
200
202
|
* @frequency 🔥 ★★★★ (100%)
|
|
201
203
|
* @groups APP, Composite, EXIF, File, MakerNotes, QuickTime, RIFF, XMP
|
|
202
204
|
* @example 960
|
|
203
|
-
* @remarks Image height in pixels.
|
|
204
|
-
* Read-only
|
|
205
|
+
* @remarks Image height in pixels. File-level property derived from file analysis.
|
|
206
|
+
* Read-only.
|
|
205
207
|
* @see https://exiftool.org/TagNames/File.html
|
|
206
208
|
*/
|
|
207
209
|
ImageHeight?: number;
|
|
@@ -215,8 +217,8 @@ export interface FileTags {
|
|
|
215
217
|
* @frequency 🔥 ★★★★ (100%)
|
|
216
218
|
* @groups APP, Composite, EXIF, File, MakerNotes, QuickTime, RIFF, XMP
|
|
217
219
|
* @example 9728
|
|
218
|
-
* @remarks Image width in pixels.
|
|
219
|
-
* Read-only
|
|
220
|
+
* @remarks Image width in pixels. File-level property derived from file analysis.
|
|
221
|
+
* Read-only.
|
|
220
222
|
* @see https://exiftool.org/TagNames/File.html
|
|
221
223
|
*/
|
|
222
224
|
ImageWidth?: number;
|
|
@@ -491,7 +493,7 @@ export interface CompositeTags {
|
|
|
491
493
|
*/
|
|
492
494
|
FOV?: string;
|
|
493
495
|
/**
|
|
494
|
-
* @frequency 🔥 ☆☆☆☆ (
|
|
496
|
+
* @frequency 🔥 ☆☆☆☆ (4%)
|
|
495
497
|
* @groups APP, Composite, EXIF, XMP
|
|
496
498
|
* @example 99.8
|
|
497
499
|
*/
|
|
@@ -501,7 +503,8 @@ export interface CompositeTags {
|
|
|
501
503
|
* @groups Composite, EXIF, XMP
|
|
502
504
|
* @example "Unknown (Sea level reference)"
|
|
503
505
|
* @remarks GPS altitude reference.
|
|
504
|
-
*
|
|
506
|
+
* Values: 0 (Above Sea Level), 1 (Below Sea Level), 2 (Positive Sea Level, sea-level ref), 3 (Negative Sea Level, sea-level ref).
|
|
507
|
+
* Values 2-3 added in EXIF 3.0 for ellipsoidal vs sea-level reference.
|
|
505
508
|
*/
|
|
506
509
|
GPSAltitudeRef?: number;
|
|
507
510
|
/**
|
|
@@ -555,8 +558,12 @@ export interface CompositeTags {
|
|
|
555
558
|
GPSLongitudeRef?: string;
|
|
556
559
|
/**
|
|
557
560
|
* @frequency 🔥 ☆☆☆☆ (4%)
|
|
558
|
-
* @groups Composite
|
|
561
|
+
* @groups Composite
|
|
559
562
|
* @example "7.196465 134.376806666667"
|
|
563
|
+
* @remarks Combined GPS latitude and longitude. Writable composite tag.
|
|
564
|
+
* When written, updates GPSLatitude, GPSLatitudeRef, GPSLongitude, GPSLongitudeRef.
|
|
565
|
+
* Accepts Google Maps coordinates (right-click format).
|
|
566
|
+
* @see https://exiftool.org/TagNames/Composite.html
|
|
560
567
|
*/
|
|
561
568
|
GPSPosition?: string;
|
|
562
569
|
/**
|
|
@@ -569,8 +576,8 @@ export interface CompositeTags {
|
|
|
569
576
|
* @frequency 🔥 ★★★★ (100%)
|
|
570
577
|
* @groups APP, Composite, EXIF, File, MakerNotes, QuickTime, RIFF, XMP
|
|
571
578
|
* @example 960
|
|
572
|
-
* @remarks Image height in pixels.
|
|
573
|
-
* Read-only
|
|
579
|
+
* @remarks Image height in pixels. File-level property derived from file analysis.
|
|
580
|
+
* Read-only.
|
|
574
581
|
* @see https://exiftool.org/TagNames/File.html
|
|
575
582
|
*/
|
|
576
583
|
ImageHeight?: number;
|
|
@@ -587,8 +594,8 @@ export interface CompositeTags {
|
|
|
587
594
|
* @frequency 🔥 ★★★★ (100%)
|
|
588
595
|
* @groups APP, Composite, EXIF, File, MakerNotes, QuickTime, RIFF, XMP
|
|
589
596
|
* @example 9728
|
|
590
|
-
* @remarks Image width in pixels.
|
|
591
|
-
* Read-only
|
|
597
|
+
* @remarks Image width in pixels. File-level property derived from file analysis.
|
|
598
|
+
* Read-only.
|
|
592
599
|
* @see https://exiftool.org/TagNames/File.html
|
|
593
600
|
*/
|
|
594
601
|
ImageWidth?: number;
|
|
@@ -677,10 +684,10 @@ export interface CompositeTags {
|
|
|
677
684
|
* @frequency 🔥 ★★★★ (90%)
|
|
678
685
|
* @groups Composite, EXIF, PanasonicRaw, XMP
|
|
679
686
|
* @example 8
|
|
680
|
-
* @remarks Image orientation.
|
|
681
|
-
* Valid values: 1 (Horizontal/normal), 2 (Mirror horizontal), 3 (Rotate 180°), 4 (Mirror vertical), 5 (Mirror horizontal + rotate 270° CW), 6 (Rotate 90° CW), 7 (Mirror horizontal + rotate 90° CW), 8 (Rotate 270° CW)
|
|
682
|
-
*
|
|
683
|
-
* @see https://exiftool.org/TagNames/
|
|
687
|
+
* @remarks Image orientation. Standard EXIF tag 0x112 in IFD0.
|
|
688
|
+
* Valid values: 1 (Horizontal/normal), 2 (Mirror horizontal), 3 (Rotate 180°), 4 (Mirror vertical), 5 (Mirror horizontal + rotate 270° CW), 6 (Rotate 90° CW), 7 (Mirror horizontal + rotate 90° CW), 8 (Rotate 270° CW).
|
|
689
|
+
* Most images use values 1, 3, 6, and 8.
|
|
690
|
+
* @see https://exiftool.org/TagNames/EXIF.html
|
|
684
691
|
*/
|
|
685
692
|
Orientation?: number;
|
|
686
693
|
/**
|
|
@@ -715,6 +722,9 @@ export interface CompositeTags {
|
|
|
715
722
|
* @frequency 🔥 ★☆☆☆ (9%)
|
|
716
723
|
* @groups Composite, MakerNotes
|
|
717
724
|
* @example "816x459"
|
|
725
|
+
* @remarks Dimensions of the embedded preview image (e.g., '816x459').
|
|
726
|
+
* Read-only composite. Useful for checking preview size without extracting binary data.
|
|
727
|
+
* @see https://exiftool.org/TagNames/Composite.html
|
|
718
728
|
*/
|
|
719
729
|
PreviewImageSize?: string;
|
|
720
730
|
/**
|
|
@@ -827,8 +837,16 @@ export interface CompositeTags {
|
|
|
827
837
|
* @see https://exiftool.org/TagNames/Composite.html
|
|
828
838
|
*/
|
|
829
839
|
SubSecModifyDate?: ExifDateTime | string;
|
|
840
|
+
/**
|
|
841
|
+
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
842
|
+
* @groups Composite, EXIF, JFIF
|
|
843
|
+
* @example "(Binary data 57816 bytes, use -b option to extract)"
|
|
844
|
+
* @remarks Embedded TIFF thumbnail image data. Composite tag rebuilt from component EXIF tags.
|
|
845
|
+
* Read-only - derived from SubfileType, Compression, ImageWidth, ImageHeight, etc.
|
|
846
|
+
*/
|
|
847
|
+
ThumbnailTIFF?: BinaryField;
|
|
830
848
|
}
|
|
831
|
-
export declare const CompositeTagsNames: StrEnum<"Aperture" | "DateTimeOriginal" | "DigitalZoom" | "Flash" | "FocusDistance" | "GPSAltitude" | "GPSLatitude" | "GPSLatitudeRef" | "GPSLongitude" | "GPSLongitudeRef" | "ImageHeight" | "ImageSize" | "ImageWidth" | "AdvancedSceneMode" | "AutoFocus" | "AvgBitrate" | "BlueBalance" | "CFAPattern" | "CircleOfConfusion" | "ConditionalFEC" | "ContrastDetectAF" | "Copyright" | "Country" | "CreateDate" | "Creator" | "DateCreated" | "DateTimeCreated" | "Description" | "DigitalCreationDateTime" | "DOF" | "DriveMode" | "Duration" | "ExtenderStatus" | "FileNumber" | "FlashType" | "FocalLength35efl" | "FOV" | "GPSAltitudeRef" | "GPSDateTime" | "GPSDestLatitude" | "GPSDestLongitude" | "GPSPosition" | "HyperfocalDistance" | "ISO" | "Keywords" | "Lens" | "Lens35efl" | "LensID" | "LensSpec" | "LensType" | "LightValue" | "Megapixels" | "ModifyDate" | "Orientation" | "OriginalDecisionData" | "PeakSpectralSensitivity" | "PhaseDetectAF" | "PreviewImage" | "PreviewImageSize" | "Rating" | "RedBalance" | "RedEyeReduction" | "RicohPitch" | "RicohRoll" | "Rotation" | "RunTimeSincePowerUp" | "ScaleFactor35efl" | "ShootingMode" | "ShutterCurtainHack" | "ShutterSpeed" | "State" | "SubSecCreateDate" | "SubSecDateTimeOriginal" | "SubSecModifyDate">;
|
|
849
|
+
export declare const CompositeTagsNames: StrEnum<"Aperture" | "DateTimeOriginal" | "DigitalZoom" | "Flash" | "FocusDistance" | "GPSAltitude" | "GPSLatitude" | "GPSLatitudeRef" | "GPSLongitude" | "GPSLongitudeRef" | "ImageHeight" | "ImageSize" | "ImageWidth" | "AdvancedSceneMode" | "AutoFocus" | "AvgBitrate" | "BlueBalance" | "CFAPattern" | "CircleOfConfusion" | "ConditionalFEC" | "ContrastDetectAF" | "Copyright" | "Country" | "CreateDate" | "Creator" | "DateCreated" | "DateTimeCreated" | "Description" | "DigitalCreationDateTime" | "DOF" | "DriveMode" | "Duration" | "ExtenderStatus" | "FileNumber" | "FlashType" | "FocalLength35efl" | "FOV" | "GPSAltitudeRef" | "GPSDateTime" | "GPSDestLatitude" | "GPSDestLongitude" | "GPSPosition" | "HyperfocalDistance" | "ISO" | "Keywords" | "Lens" | "Lens35efl" | "LensID" | "LensSpec" | "LensType" | "LightValue" | "Megapixels" | "ModifyDate" | "Orientation" | "OriginalDecisionData" | "PeakSpectralSensitivity" | "PhaseDetectAF" | "PreviewImage" | "PreviewImageSize" | "Rating" | "RedBalance" | "RedEyeReduction" | "RicohPitch" | "RicohRoll" | "Rotation" | "RunTimeSincePowerUp" | "ScaleFactor35efl" | "ShootingMode" | "ShutterCurtainHack" | "ShutterSpeed" | "State" | "SubSecCreateDate" | "SubSecDateTimeOriginal" | "SubSecModifyDate" | "ThumbnailTIFF">;
|
|
832
850
|
export type CompositeTag = StrEnumKeys<typeof CompositeTagsNames>;
|
|
833
851
|
export interface APPTags {
|
|
834
852
|
/**
|
|
@@ -988,8 +1006,9 @@ export interface APPTags {
|
|
|
988
1006
|
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
989
1007
|
* @groups APP, EXIF, XMP
|
|
990
1008
|
* @example 91702442
|
|
1009
|
+
* @remarks Camera serial number. DNG tag 0xc62f, writable string in IFD0.
|
|
991
1010
|
*/
|
|
992
|
-
CameraSerialNumber?:
|
|
1011
|
+
CameraSerialNumber?: string;
|
|
993
1012
|
/**
|
|
994
1013
|
* @frequency 🧊 ☆☆☆☆ (1%)
|
|
995
1014
|
* @groups APP
|
|
@@ -1072,8 +1091,10 @@ export interface APPTags {
|
|
|
1072
1091
|
* @frequency 🧊 ☆☆☆☆ (0%)
|
|
1073
1092
|
* @groups APP, MakerNotes
|
|
1074
1093
|
* @example 45
|
|
1094
|
+
* @remarks Ricoh Theta compass heading direction in degrees.
|
|
1095
|
+
* Camera orientation sensor data.
|
|
1075
1096
|
*/
|
|
1076
|
-
Compass?:
|
|
1097
|
+
Compass?: number;
|
|
1077
1098
|
/**
|
|
1078
1099
|
* @frequency 🔥 ★★★★ (90%)
|
|
1079
1100
|
* @groups APP, EXIF, File, MakerNotes, XMP
|
|
@@ -1357,7 +1378,7 @@ export interface APPTags {
|
|
|
1357
1378
|
*/
|
|
1358
1379
|
GMean?: number;
|
|
1359
1380
|
/**
|
|
1360
|
-
* @frequency 🔥 ☆☆☆☆ (
|
|
1381
|
+
* @frequency 🔥 ☆☆☆☆ (4%)
|
|
1361
1382
|
* @groups APP, Composite, EXIF, XMP
|
|
1362
1383
|
* @example 99.8
|
|
1363
1384
|
*/
|
|
@@ -1479,7 +1500,7 @@ export interface APPTags {
|
|
|
1479
1500
|
/**
|
|
1480
1501
|
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
1481
1502
|
* @groups APP
|
|
1482
|
-
* @example "(Binary data
|
|
1503
|
+
* @example "(Binary data 1417 bytes, use -b option to extract)"
|
|
1483
1504
|
*/
|
|
1484
1505
|
HDRGainCurve?: BinaryField | string;
|
|
1485
1506
|
/**
|
|
@@ -1504,8 +1525,8 @@ export interface APPTags {
|
|
|
1504
1525
|
* @frequency 🔥 ★★★★ (100%)
|
|
1505
1526
|
* @groups APP, Composite, EXIF, File, MakerNotes, QuickTime, RIFF, XMP
|
|
1506
1527
|
* @example 960
|
|
1507
|
-
* @remarks Image height in pixels.
|
|
1508
|
-
* Read-only
|
|
1528
|
+
* @remarks Image height in pixels. File-level property derived from file analysis.
|
|
1529
|
+
* Read-only.
|
|
1509
1530
|
* @see https://exiftool.org/TagNames/File.html
|
|
1510
1531
|
*/
|
|
1511
1532
|
ImageHeight?: number;
|
|
@@ -1522,8 +1543,8 @@ export interface APPTags {
|
|
|
1522
1543
|
* @frequency 🔥 ★★★★ (100%)
|
|
1523
1544
|
* @groups APP, Composite, EXIF, File, MakerNotes, QuickTime, RIFF, XMP
|
|
1524
1545
|
* @example 9728
|
|
1525
|
-
* @remarks Image width in pixels.
|
|
1526
|
-
* Read-only
|
|
1546
|
+
* @remarks Image width in pixels. File-level property derived from file analysis.
|
|
1547
|
+
* Read-only.
|
|
1527
1548
|
* @see https://exiftool.org/TagNames/File.html
|
|
1528
1549
|
*/
|
|
1529
1550
|
ImageWidth?: number;
|
|
@@ -1797,7 +1818,7 @@ export interface APPTags {
|
|
|
1797
1818
|
/**
|
|
1798
1819
|
* @frequency 🧊 ☆☆☆☆ (1%)
|
|
1799
1820
|
* @groups APP
|
|
1800
|
-
* @example "(Binary data
|
|
1821
|
+
* @example "(Binary data 153804 bytes, use -b option to extract)"
|
|
1801
1822
|
*/
|
|
1802
1823
|
RawThermalImage?: BinaryField | string;
|
|
1803
1824
|
/**
|
|
@@ -2294,8 +2315,9 @@ export interface EXIFTags {
|
|
|
2294
2315
|
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
2295
2316
|
* @groups APP, EXIF, XMP
|
|
2296
2317
|
* @example 91702442
|
|
2318
|
+
* @remarks Camera serial number. DNG tag 0xc62f, writable string in IFD0.
|
|
2297
2319
|
*/
|
|
2298
|
-
CameraSerialNumber?:
|
|
2320
|
+
CameraSerialNumber?: string;
|
|
2299
2321
|
/**
|
|
2300
2322
|
* @frequency 🧊 ☆☆☆☆ (0%)
|
|
2301
2323
|
* @groups EXIF
|
|
@@ -2619,7 +2641,7 @@ export interface EXIFTags {
|
|
|
2619
2641
|
*/
|
|
2620
2642
|
Gamma?: number;
|
|
2621
2643
|
/**
|
|
2622
|
-
* @frequency 🔥 ☆☆☆☆ (
|
|
2644
|
+
* @frequency 🔥 ☆☆☆☆ (4%)
|
|
2623
2645
|
* @groups APP, Composite, EXIF, XMP
|
|
2624
2646
|
* @example 99.8
|
|
2625
2647
|
*/
|
|
@@ -2629,7 +2651,8 @@ export interface EXIFTags {
|
|
|
2629
2651
|
* @groups Composite, EXIF, XMP
|
|
2630
2652
|
* @example "Unknown (Sea level reference)"
|
|
2631
2653
|
* @remarks GPS altitude reference.
|
|
2632
|
-
*
|
|
2654
|
+
* Values: 0 (Above Sea Level), 1 (Below Sea Level), 2 (Positive Sea Level, sea-level ref), 3 (Negative Sea Level, sea-level ref).
|
|
2655
|
+
* Values 2-3 added in EXIF 3.0 for ellipsoidal vs sea-level reference.
|
|
2633
2656
|
*/
|
|
2634
2657
|
GPSAltitudeRef?: number;
|
|
2635
2658
|
/**
|
|
@@ -2762,12 +2785,6 @@ export interface EXIFTags {
|
|
|
2762
2785
|
* @example "Unknown ()"
|
|
2763
2786
|
*/
|
|
2764
2787
|
GPSMeasureMode?: string;
|
|
2765
|
-
/**
|
|
2766
|
-
* @frequency 🔥 ☆☆☆☆ (4%)
|
|
2767
|
-
* @groups Composite, EXIF
|
|
2768
|
-
* @example "7.196465 134.376806666667"
|
|
2769
|
-
*/
|
|
2770
|
-
GPSPosition?: string;
|
|
2771
2788
|
/**
|
|
2772
2789
|
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
2773
2790
|
* @groups EXIF, XMP
|
|
@@ -2860,8 +2877,8 @@ export interface EXIFTags {
|
|
|
2860
2877
|
* @frequency 🔥 ★★★★ (100%)
|
|
2861
2878
|
* @groups APP, Composite, EXIF, File, MakerNotes, QuickTime, RIFF, XMP
|
|
2862
2879
|
* @example 960
|
|
2863
|
-
* @remarks Image height in pixels.
|
|
2864
|
-
* Read-only
|
|
2880
|
+
* @remarks Image height in pixels. File-level property derived from file analysis.
|
|
2881
|
+
* Read-only.
|
|
2865
2882
|
* @see https://exiftool.org/TagNames/File.html
|
|
2866
2883
|
*/
|
|
2867
2884
|
ImageHeight?: number;
|
|
@@ -2884,14 +2901,18 @@ export interface EXIFTags {
|
|
|
2884
2901
|
* @frequency 🔥 ★☆☆☆ (9%)
|
|
2885
2902
|
* @groups EXIF, MakerNotes, XMP
|
|
2886
2903
|
* @example "fefafc6093e2c1470ac8dfa06ef26990"
|
|
2904
|
+
* @remarks Unique identifier for the image, typically a 32-character hex string.
|
|
2905
|
+
* Useful for image deduplication, tracking identity across edits, and linking related files (e.g., RAW + JPEG pairs).
|
|
2906
|
+
* May also appear in MakerNotes and XMP.
|
|
2907
|
+
* @see https://exiftool.org/TagNames/EXIF.html
|
|
2887
2908
|
*/
|
|
2888
2909
|
ImageUniqueID?: string;
|
|
2889
2910
|
/**
|
|
2890
2911
|
* @frequency 🔥 ★★★★ (100%)
|
|
2891
2912
|
* @groups APP, Composite, EXIF, File, MakerNotes, QuickTime, RIFF, XMP
|
|
2892
2913
|
* @example 9728
|
|
2893
|
-
* @remarks Image width in pixels.
|
|
2894
|
-
* Read-only
|
|
2914
|
+
* @remarks Image width in pixels. File-level property derived from file analysis.
|
|
2915
|
+
* Read-only.
|
|
2895
2916
|
* @see https://exiftool.org/TagNames/File.html
|
|
2896
2917
|
*/
|
|
2897
2918
|
ImageWidth?: number;
|
|
@@ -2925,7 +2946,7 @@ export interface EXIFTags {
|
|
|
2925
2946
|
/**
|
|
2926
2947
|
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
2927
2948
|
* @groups EXIF, QuickTime
|
|
2928
|
-
* @example "(Binary data
|
|
2949
|
+
* @example "(Binary data 772608 bytes, use -b option to extract)"
|
|
2929
2950
|
* @remarks Embedded JPEG preview extracted from RAW files. Binary data type.
|
|
2930
2951
|
* Access via BinaryField to get raw bytes or base64 encoding.
|
|
2931
2952
|
* @see https://exiftool.org/TagNames/EXIF.html
|
|
@@ -2994,7 +3015,7 @@ export interface EXIFTags {
|
|
|
2994
3015
|
/**
|
|
2995
3016
|
* @frequency 🧊 ☆☆☆☆ (0%)
|
|
2996
3017
|
* @groups EXIF
|
|
2997
|
-
* @example "(Binary data
|
|
3018
|
+
* @example "(Binary data 22629 bytes, use -b option to extract)"
|
|
2998
3019
|
*/
|
|
2999
3020
|
LinearizationTable?: BinaryField | string;
|
|
3000
3021
|
/**
|
|
@@ -3130,10 +3151,10 @@ export interface EXIFTags {
|
|
|
3130
3151
|
* @frequency 🔥 ★★★★ (90%)
|
|
3131
3152
|
* @groups Composite, EXIF, PanasonicRaw, XMP
|
|
3132
3153
|
* @example 8
|
|
3133
|
-
* @remarks Image orientation.
|
|
3134
|
-
* Valid values: 1 (Horizontal/normal), 2 (Mirror horizontal), 3 (Rotate 180°), 4 (Mirror vertical), 5 (Mirror horizontal + rotate 270° CW), 6 (Rotate 90° CW), 7 (Mirror horizontal + rotate 90° CW), 8 (Rotate 270° CW)
|
|
3135
|
-
*
|
|
3136
|
-
* @see https://exiftool.org/TagNames/
|
|
3154
|
+
* @remarks Image orientation. Standard EXIF tag 0x112 in IFD0.
|
|
3155
|
+
* Valid values: 1 (Horizontal/normal), 2 (Mirror horizontal), 3 (Rotate 180°), 4 (Mirror vertical), 5 (Mirror horizontal + rotate 270° CW), 6 (Rotate 90° CW), 7 (Mirror horizontal + rotate 90° CW), 8 (Rotate 270° CW).
|
|
3156
|
+
* Most images use values 1, 3, 6, and 8.
|
|
3157
|
+
* @see https://exiftool.org/TagNames/EXIF.html
|
|
3137
3158
|
*/
|
|
3138
3159
|
Orientation?: number;
|
|
3139
3160
|
/**
|
|
@@ -3587,7 +3608,7 @@ export interface EXIFTags {
|
|
|
3587
3608
|
/**
|
|
3588
3609
|
* @frequency 🔥 ★★★★ (90%)
|
|
3589
3610
|
* @groups EXIF, JFIF, MakerNotes
|
|
3590
|
-
* @example "(Binary data
|
|
3611
|
+
* @example "(Binary data 39781 bytes, use -b option to extract)"
|
|
3591
3612
|
* @remarks Embedded thumbnail image data. Binary data type.
|
|
3592
3613
|
* Writable for updating existing thumbnails, but cannot create or delete thumbnails.
|
|
3593
3614
|
*/
|
|
@@ -3596,20 +3617,24 @@ export interface EXIFTags {
|
|
|
3596
3617
|
* @frequency 🔥 ★★★★ (90%)
|
|
3597
3618
|
* @groups EXIF, MakerNotes
|
|
3598
3619
|
* @example 9998
|
|
3620
|
+
* @remarks Size in bytes of the embedded JPEG thumbnail.
|
|
3621
|
+
* Useful for checking thumbnail availability without extracting binary data.
|
|
3599
3622
|
*/
|
|
3600
3623
|
ThumbnailLength?: number;
|
|
3601
3624
|
/**
|
|
3602
3625
|
* @frequency 🔥 ★★★★ (90%)
|
|
3603
3626
|
* @groups EXIF
|
|
3604
3627
|
* @example 998
|
|
3628
|
+
* @remarks Byte offset of the embedded JPEG thumbnail within the file.
|
|
3629
|
+
* Used with ThumbnailLength to locate thumbnail data.
|
|
3605
3630
|
*/
|
|
3606
3631
|
ThumbnailOffset?: number;
|
|
3607
3632
|
/**
|
|
3608
3633
|
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
3609
|
-
* @groups EXIF, JFIF
|
|
3634
|
+
* @groups Composite, EXIF, JFIF
|
|
3610
3635
|
* @example "(Binary data 57816 bytes, use -b option to extract)"
|
|
3611
|
-
* @remarks Embedded TIFF thumbnail image data.
|
|
3612
|
-
*
|
|
3636
|
+
* @remarks Embedded TIFF thumbnail image data. Composite tag rebuilt from component EXIF tags.
|
|
3637
|
+
* Read-only - derived from SubfileType, Compression, ImageWidth, ImageHeight, etc.
|
|
3613
3638
|
*/
|
|
3614
3639
|
ThumbnailTIFF?: BinaryField;
|
|
3615
3640
|
/**
|
|
@@ -3781,7 +3806,7 @@ export interface EXIFTags {
|
|
|
3781
3806
|
*/
|
|
3782
3807
|
YResolution?: number;
|
|
3783
3808
|
}
|
|
3784
|
-
export declare const EXIFTagsNames: StrEnum<"AmbientTemperature" | "BitsPerSample" | "CameraSerialNumber" | "ColorSpace" | "Compression" | "DateTimeOriginal" | "ExposureCompensation" | "ExposureTime" | "Flash" | "FNumber" | "Gamma" | "GPSAltitude" | "GPSDOP" | "GPSImgDirection" | "GPSImgDirectionRef" | "GPSLatitude" | "GPSLatitudeRef" | "GPSLongitude" | "GPSLongitudeRef" | "GPSMapDatum" | "GPSSpeed" | "GPSSpeedRef" | "GPSTrack" | "GPSTrackRef" | "GPSVersionID" | "ImageHeight" | "ImageWidth" | "LensModel" | "LensSerialNumber" | "Model" | "ResolutionUnit" | "SerialNumber" | "Sharpness" | "WhiteBalance" | "XResolution" | "YResolution" | "CFAPattern" | "Copyright" | "CreateDate" | "GPSAltitudeRef" | "GPSDestLatitude" | "GPSDestLongitude" | "
|
|
3809
|
+
export declare const EXIFTagsNames: StrEnum<"AmbientTemperature" | "BitsPerSample" | "CameraSerialNumber" | "ColorSpace" | "Compression" | "DateTimeOriginal" | "ExposureCompensation" | "ExposureTime" | "Flash" | "FNumber" | "Gamma" | "GPSAltitude" | "GPSDOP" | "GPSImgDirection" | "GPSImgDirectionRef" | "GPSLatitude" | "GPSLatitudeRef" | "GPSLongitude" | "GPSLongitudeRef" | "GPSMapDatum" | "GPSSpeed" | "GPSSpeedRef" | "GPSTrack" | "GPSTrackRef" | "GPSVersionID" | "ImageHeight" | "ImageWidth" | "LensModel" | "LensSerialNumber" | "Model" | "ResolutionUnit" | "SerialNumber" | "Sharpness" | "WhiteBalance" | "XResolution" | "YResolution" | "CFAPattern" | "Copyright" | "CreateDate" | "GPSAltitudeRef" | "GPSDestLatitude" | "GPSDestLongitude" | "ISO" | "ModifyDate" | "Orientation" | "PreviewImage" | "Rating" | "ThumbnailTIFF" | "Acceleration" | "ActiveArea" | "AnalogBalance" | "AntiAliasStrength" | "ApertureValue" | "Artist" | "AsShotNeutral" | "AsShotWhiteXY" | "BaselineExposure" | "BaselineNoise" | "BaselineSharpness" | "BayerGreenSplit" | "BestQualityScale" | "BlackLevel" | "BlackLevelBlue" | "BlackLevelGreen" | "BlackLevelRed" | "BlackLevelRepeatDim" | "BrightnessValue" | "CameraElevationAngle" | "CFALayout" | "CFAPlaneColor" | "CFARepeatPatternDim" | "ChromaticAberrationCorrection" | "ChromaticAberrationCorrParams" | "CompositeImage" | "CompositeImageCount" | "CompositeImageExposureTimes" | "CompressedBitsPerPixel" | "Contrast" | "CropBottom" | "CropLeft" | "CropRight" | "CropTop" | "CustomRendered" | "DefaultBlackRender" | "DefaultCropOrigin" | "DefaultCropSize" | "DefaultScale" | "DefaultUserCrop" | "DeviceSettingDescription" | "DigitalZoomRatio" | "DistortionCorrection" | "DistortionCorrParams" | "DNGBackwardVersion" | "DNGVersion" | "DocumentName" | "ExifImageHeight" | "ExifImageWidth" | "ExifVersion" | "ExposureIndex" | "ExposureMode" | "ExposureProgram" | "FileSource" | "FlashEnergy" | "FocalLength" | "FocalLengthIn35mmFormat" | "FocalPlaneResolutionUnit" | "FocalPlaneXResolution" | "FocalPlaneYResolution" | "GainControl" | "GPSAreaInformation" | "GPSDateStamp" | "GPSDestBearing" | "GPSDestBearingRef" | "GPSDestDistance" | "GPSDestDistanceRef" | "GPSDestLatitudeRef" | "GPSDestLongitudeRef" | "GPSDifferential" | "GPSHPositioningError" | "GPSMeasureMode" | "GPSProcessingMethod" | "GPSSatellites" | "GPSStatus" | "GPSTimeStamp" | "HighISOMultiplierBlue" | "HighISOMultiplierGreen" | "HighISOMultiplierRed" | "HostComputer" | "ImageDescription" | "ImageNumber" | "ImageTitle" | "ImageUniqueID" | "InteropIndex" | "InteropVersion" | "ISOSpeed" | "JpgFromRaw" | "JpgFromRawLength" | "JpgFromRawStart" | "LensInfo" | "LensMake" | "LightSource" | "LinearityLimitBlue" | "LinearityLimitGreen" | "LinearityLimitRed" | "LinearizationTable" | "LinearResponseLimit" | "Make" | "MakerNoteSafety" | "MakerNoteSamsung1a" | "MakerNoteUnknownBinary" | "MakerNoteUnknownText" | "MaxApertureValue" | "MeteringMode" | "Model2" | "NewRawImageDigest" | "Noise" | "NoiseProfile" | "NoiseReductionApplied" | "NoiseReductionParams" | "OffsetSchema" | "OffsetTime" | "OffsetTimeDigitized" | "OffsetTimeOriginal" | "OtherImage" | "OtherImageLength" | "OtherImageStart" | "OwnerName" | "Padding" | "PageName" | "PanasonicRawVersion" | "Photographer" | "PhotometricInterpretation" | "PlanarConfiguration" | "Pressure" | "PreviewColorSpace" | "PreviewDateTime" | "PreviewImageLength" | "PreviewImageStart" | "PreviewTIFF" | "PrimaryChromaticities" | "ProcessingSoftware" | "ProfileEmbedPolicy" | "ProfileGainTableMap" | "ProfileName" | "ProfileToneCurve" | "RatingPercent" | "RawDataOffset" | "RawDataUniqueID" | "RawFormat" | "RawImageSegmentation" | "RecommendedExposureIndex" | "ReferenceBlackWhite" | "RelatedImageFileFormat" | "RelatedImageHeight" | "RelatedImageWidth" | "RelatedSoundFile" | "RowsPerStrip" | "SamplesPerPixel" | "Saturation" | "SceneCaptureType" | "SceneType" | "SemanticName" | "SensingMethod" | "SensitivityType" | "SensorBottomBorder" | "SensorHeight" | "SensorLeftBorder" | "SensorRightBorder" | "SensorTopBorder" | "SensorWidth" | "ShadowScale" | "ShutterSpeedValue" | "Software" | "SonyCropSize" | "SonyCropTopLeft" | "SonyRawFileType" | "SonyRawImageSize" | "SonyToneCurve" | "SpatialFrequencyResponse" | "SRawType" | "StandardOutputSensitivity" | "StripByteCounts" | "StripOffsets" | "SubfileType" | "SubjectArea" | "SubjectDistance" | "SubjectDistanceRange" | "SubjectLocation" | "SubSecTime" | "SubSecTimeDigitized" | "SubSecTimeOriginal" | "ThumbnailImage" | "ThumbnailLength" | "ThumbnailOffset" | "TileByteCounts" | "TileLength" | "TileOffsets" | "TileWidth" | "TimeZoneOffset" | "TransferFunction" | "UniqueCameraModel" | "UserComment" | "VignettingCorrection" | "VignettingCorrParams" | "WaterDepth" | "WBBlueLevel" | "WBGreenLevel" | "WBRedLevel" | "WhiteLevel" | "WhitePoint" | "XiaomiModel" | "XPAuthor" | "XPComment" | "XPKeywords" | "XPSubject" | "XPTitle" | "YCbCrCoefficients" | "YCbCrPositioning" | "YCbCrSubSampling">;
|
|
3785
3810
|
export type EXIFTag = StrEnumKeys<typeof EXIFTagsNames>;
|
|
3786
3811
|
export interface JPEGTags {
|
|
3787
3812
|
/**
|
|
@@ -4196,10 +4221,10 @@ export interface PanasonicRawTags {
|
|
|
4196
4221
|
* @frequency 🔥 ★★★★ (90%)
|
|
4197
4222
|
* @groups Composite, EXIF, PanasonicRaw, XMP
|
|
4198
4223
|
* @example 8
|
|
4199
|
-
* @remarks Image orientation.
|
|
4200
|
-
* Valid values: 1 (Horizontal/normal), 2 (Mirror horizontal), 3 (Rotate 180°), 4 (Mirror vertical), 5 (Mirror horizontal + rotate 270° CW), 6 (Rotate 90° CW), 7 (Mirror horizontal + rotate 90° CW), 8 (Rotate 270° CW)
|
|
4201
|
-
*
|
|
4202
|
-
* @see https://exiftool.org/TagNames/
|
|
4224
|
+
* @remarks Image orientation. Standard EXIF tag 0x112 in IFD0.
|
|
4225
|
+
* Valid values: 1 (Horizontal/normal), 2 (Mirror horizontal), 3 (Rotate 180°), 4 (Mirror vertical), 5 (Mirror horizontal + rotate 270° CW), 6 (Rotate 90° CW), 7 (Mirror horizontal + rotate 90° CW), 8 (Rotate 270° CW).
|
|
4226
|
+
* Most images use values 1, 3, 6, and 8.
|
|
4227
|
+
* @see https://exiftool.org/TagNames/EXIF.html
|
|
4203
4228
|
*/
|
|
4204
4229
|
Orientation?: number;
|
|
4205
4230
|
/**
|
|
@@ -4227,18 +4252,6 @@ export interface PhotoshopTags {
|
|
|
4227
4252
|
* @example true
|
|
4228
4253
|
*/
|
|
4229
4254
|
CopyrightFlag?: boolean;
|
|
4230
|
-
/**
|
|
4231
|
-
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
4232
|
-
* @groups Photoshop
|
|
4233
|
-
* @example "inches"
|
|
4234
|
-
*/
|
|
4235
|
-
DisplayedUnitsX?: string;
|
|
4236
|
-
/**
|
|
4237
|
-
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
4238
|
-
* @groups Photoshop
|
|
4239
|
-
* @example "inches"
|
|
4240
|
-
*/
|
|
4241
|
-
DisplayedUnitsY?: string;
|
|
4242
4255
|
/**
|
|
4243
4256
|
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
4244
4257
|
* @groups Photoshop
|
|
@@ -4342,7 +4355,7 @@ export interface PhotoshopTags {
|
|
|
4342
4355
|
*/
|
|
4343
4356
|
YResolution?: number;
|
|
4344
4357
|
}
|
|
4345
|
-
export declare const PhotoshopTagsNames: StrEnum<"XResolution" | "YResolution" | "PixelAspectRatio" | "CopyrightFlag" | "
|
|
4358
|
+
export declare const PhotoshopTagsNames: StrEnum<"XResolution" | "YResolution" | "PixelAspectRatio" | "CopyrightFlag" | "GlobalAltitude" | "GlobalAngle" | "HasRealMergedData" | "IPTCDigest" | "NumSlices" | "PhotoshopFormat" | "PhotoshopQuality" | "PhotoshopThumbnail" | "PrintPosition" | "PrintScale" | "PrintStyle" | "ReaderName" | "SlicesGroupName" | "WriterName">;
|
|
4346
4359
|
export type PhotoshopTag = StrEnumKeys<typeof PhotoshopTagsNames>;
|
|
4347
4360
|
export interface PrintIMTags {
|
|
4348
4361
|
/**
|
|
@@ -4553,7 +4566,7 @@ export interface QuickTimeTags {
|
|
|
4553
4566
|
/**
|
|
4554
4567
|
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
4555
4568
|
* @groups QuickTime
|
|
4556
|
-
* @example "2025:
|
|
4569
|
+
* @example "2025:10:21 12:15:18-07:00"
|
|
4557
4570
|
*/
|
|
4558
4571
|
CreationDate?: ExifDateTime | string;
|
|
4559
4572
|
/**
|
|
@@ -4598,6 +4611,12 @@ export interface QuickTimeTags {
|
|
|
4598
4611
|
* @example "image/jpg"
|
|
4599
4612
|
*/
|
|
4600
4613
|
Format?: string;
|
|
4614
|
+
/**
|
|
4615
|
+
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
4616
|
+
* @groups QuickTime
|
|
4617
|
+
* @example 1
|
|
4618
|
+
*/
|
|
4619
|
+
FullFrameRatePlaybackIntent?: number;
|
|
4601
4620
|
/**
|
|
4602
4621
|
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
4603
4622
|
* @groups APP, EXIF, QuickTime
|
|
@@ -4674,8 +4693,8 @@ export interface QuickTimeTags {
|
|
|
4674
4693
|
* @frequency 🔥 ★★★★ (100%)
|
|
4675
4694
|
* @groups APP, Composite, EXIF, File, MakerNotes, QuickTime, RIFF, XMP
|
|
4676
4695
|
* @example 960
|
|
4677
|
-
* @remarks Image height in pixels.
|
|
4678
|
-
* Read-only
|
|
4696
|
+
* @remarks Image height in pixels. File-level property derived from file analysis.
|
|
4697
|
+
* Read-only.
|
|
4679
4698
|
* @see https://exiftool.org/TagNames/File.html
|
|
4680
4699
|
*/
|
|
4681
4700
|
ImageHeight?: number;
|
|
@@ -4683,15 +4702,15 @@ export interface QuickTimeTags {
|
|
|
4683
4702
|
* @frequency 🔥 ★★★★ (100%)
|
|
4684
4703
|
* @groups APP, Composite, EXIF, File, MakerNotes, QuickTime, RIFF, XMP
|
|
4685
4704
|
* @example 9728
|
|
4686
|
-
* @remarks Image width in pixels.
|
|
4687
|
-
* Read-only
|
|
4705
|
+
* @remarks Image width in pixels. File-level property derived from file analysis.
|
|
4706
|
+
* Read-only.
|
|
4688
4707
|
* @see https://exiftool.org/TagNames/File.html
|
|
4689
4708
|
*/
|
|
4690
4709
|
ImageWidth?: number;
|
|
4691
4710
|
/**
|
|
4692
4711
|
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
4693
4712
|
* @groups EXIF, QuickTime
|
|
4694
|
-
* @example "(Binary data
|
|
4713
|
+
* @example "(Binary data 772608 bytes, use -b option to extract)"
|
|
4695
4714
|
* @remarks Embedded JPEG preview extracted from RAW files. Binary data type.
|
|
4696
4715
|
* Access via BinaryField to get raw bytes or base64 encoding.
|
|
4697
4716
|
* @see https://exiftool.org/TagNames/EXIF.html
|
|
@@ -4751,7 +4770,7 @@ export interface QuickTimeTags {
|
|
|
4751
4770
|
/**
|
|
4752
4771
|
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
4753
4772
|
* @groups QuickTime
|
|
4754
|
-
* @example "2025:
|
|
4773
|
+
* @example "2025:10:21 19:15:18"
|
|
4755
4774
|
* @remarks Creation date/time for QuickTime/MOV/MP4 media track. Stored as seconds since 1904-01-01 UTC.
|
|
4756
4775
|
* WARNING: Many cameras incorrectly store local time instead of UTC. ExifTool does not assume timezone unless QuickTimeUTC option is set.
|
|
4757
4776
|
* For MOV/MP4 videos, use this tag instead of DateTimeOriginal.
|
|
@@ -4792,7 +4811,7 @@ export interface QuickTimeTags {
|
|
|
4792
4811
|
/**
|
|
4793
4812
|
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
4794
4813
|
* @groups QuickTime
|
|
4795
|
-
* @example "2025:
|
|
4814
|
+
* @example "2025:10:21 19:15:21"
|
|
4796
4815
|
*/
|
|
4797
4816
|
MediaModifyDate?: ExifDateTime | string;
|
|
4798
4817
|
/**
|
|
@@ -4846,7 +4865,7 @@ export interface QuickTimeTags {
|
|
|
4846
4865
|
/**
|
|
4847
4866
|
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
4848
4867
|
* @groups QuickTime
|
|
4849
|
-
* @example
|
|
4868
|
+
* @example 8
|
|
4850
4869
|
*/
|
|
4851
4870
|
NextTrackID?: number;
|
|
4852
4871
|
/**
|
|
@@ -5018,7 +5037,7 @@ export interface QuickTimeTags {
|
|
|
5018
5037
|
/**
|
|
5019
5038
|
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
5020
5039
|
* @groups QuickTime
|
|
5021
|
-
* @example "2025:
|
|
5040
|
+
* @example "2025:10:21 19:15:18"
|
|
5022
5041
|
*/
|
|
5023
5042
|
TrackCreateDate?: ExifDateTime | string;
|
|
5024
5043
|
/**
|
|
@@ -5048,7 +5067,7 @@ export interface QuickTimeTags {
|
|
|
5048
5067
|
/**
|
|
5049
5068
|
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
5050
5069
|
* @groups QuickTime
|
|
5051
|
-
* @example "2025:
|
|
5070
|
+
* @example "2025:10:21 19:15:21"
|
|
5052
5071
|
*/
|
|
5053
5072
|
TrackModifyDate?: ExifDateTime | string;
|
|
5054
5073
|
/**
|
|
@@ -5094,7 +5113,7 @@ export interface QuickTimeTags {
|
|
|
5094
5113
|
*/
|
|
5095
5114
|
YResolution?: number;
|
|
5096
5115
|
}
|
|
5097
|
-
export declare const QuickTimeTagsNames: StrEnum<"Balance" | "FirmwareVersion" | "Gamma" | "ImageHeight" | "ImageWidth" | "LensModel" | "LensSerialNumber" | "Model" | "XResolution" | "YResolution" | "CreateDate" | "Duration" | "ModifyDate" | "PreviewImage" | "FocalLengthIn35mmFormat" | "JpgFromRaw" | "Make" | "Software" | "BitDepth" | "CompressorVersion" | "ContentIdentifier" | "PixelAspectRatio" | "VideoFrameRate" | "AndroidCaptureFPS" | "AndroidVersion" | "AndroidVideoTemporalLayersCount" | "AudioBitsPerSample" | "AudioChannels" | "AudioFormat" | "AudioSampleRate" | "AudioVendorID" | "Author" | "BackgroundColor" | "ChapterListTrackID" | "CleanApertureDimensions" | "ColorPrimaries" | "ColorProfiles" | "CompatibleBrands" | "CompressorID" | "CompressorName" | "ContentDescribes" | "CreationDate" | "CurrentTime" | "EncodedPixelsDimensions" | "FontName" | "Format" | "GenBalance" | "GenFlags" | "GenGraphicsMode" | "GenMediaVersion" | "GenOpColor" | "GPSCoordinates" | "GraphicsMode" | "HandlerClass" | "HandlerDescription" | "HandlerType" | "HandlerVendorID" | "LayoutFlags" | "LocationAccuracyHorizontal" | "MajorBrand" | "MatrixCoefficients" | "MatrixStructure" | "MediaCreateDate" | "MediaDataOffset" | "MediaDataSize" | "MediaDuration" | "MediaHeaderVersion" | "MediaLanguageCode" | "MediaModifyDate" | "MediaTimeScale" | "MediaUID" | "MetaFormat" | "MinorVersion" | "MovieHeaderVersion" | "NextTrackID" | "OpColor" | "OtherFormat" | "PlaybackFrameRate" | "PlayMode" | "PosterTime" | "PreferredRate" | "PreferredVolume" | "PreviewDuration" | "PreviewTime" | "ProductionApertureDimensions" | "PurchaseFileFormat" | "SampleDuration" | "SampleTime" | "SelectionDuration" | "SelectionTime" | "SerialNumberHash" | "SourceImageHeight" | "SourceImageWidth" | "TextColor" | "TextFace" | "TextFont" | "TextSize" | "TimecodeTrack" | "TimeScale" | "TrackCreateDate" | "TrackDuration" | "TrackHeaderVersion" | "TrackID" | "TrackLayer" | "TrackModifyDate" | "TrackVolume" | "TransferCharacteristics" | "VendorID" | "VideoFullRangeFlag">;
|
|
5116
|
+
export declare const QuickTimeTagsNames: StrEnum<"Balance" | "FirmwareVersion" | "Gamma" | "ImageHeight" | "ImageWidth" | "LensModel" | "LensSerialNumber" | "Model" | "XResolution" | "YResolution" | "CreateDate" | "Duration" | "ModifyDate" | "PreviewImage" | "FocalLengthIn35mmFormat" | "JpgFromRaw" | "Make" | "Software" | "BitDepth" | "CompressorVersion" | "ContentIdentifier" | "PixelAspectRatio" | "VideoFrameRate" | "AndroidCaptureFPS" | "AndroidVersion" | "AndroidVideoTemporalLayersCount" | "AudioBitsPerSample" | "AudioChannels" | "AudioFormat" | "AudioSampleRate" | "AudioVendorID" | "Author" | "BackgroundColor" | "ChapterListTrackID" | "CleanApertureDimensions" | "ColorPrimaries" | "ColorProfiles" | "CompatibleBrands" | "CompressorID" | "CompressorName" | "ContentDescribes" | "CreationDate" | "CurrentTime" | "EncodedPixelsDimensions" | "FontName" | "Format" | "FullFrameRatePlaybackIntent" | "GenBalance" | "GenFlags" | "GenGraphicsMode" | "GenMediaVersion" | "GenOpColor" | "GPSCoordinates" | "GraphicsMode" | "HandlerClass" | "HandlerDescription" | "HandlerType" | "HandlerVendorID" | "LayoutFlags" | "LocationAccuracyHorizontal" | "MajorBrand" | "MatrixCoefficients" | "MatrixStructure" | "MediaCreateDate" | "MediaDataOffset" | "MediaDataSize" | "MediaDuration" | "MediaHeaderVersion" | "MediaLanguageCode" | "MediaModifyDate" | "MediaTimeScale" | "MediaUID" | "MetaFormat" | "MinorVersion" | "MovieHeaderVersion" | "NextTrackID" | "OpColor" | "OtherFormat" | "PlaybackFrameRate" | "PlayMode" | "PosterTime" | "PreferredRate" | "PreferredVolume" | "PreviewDuration" | "PreviewTime" | "ProductionApertureDimensions" | "PurchaseFileFormat" | "SampleDuration" | "SampleTime" | "SelectionDuration" | "SelectionTime" | "SerialNumberHash" | "SourceImageHeight" | "SourceImageWidth" | "TextColor" | "TextFace" | "TextFont" | "TextSize" | "TimecodeTrack" | "TimeScale" | "TrackCreateDate" | "TrackDuration" | "TrackHeaderVersion" | "TrackID" | "TrackLayer" | "TrackModifyDate" | "TrackVolume" | "TransferCharacteristics" | "VendorID" | "VideoFullRangeFlag">;
|
|
5098
5117
|
export type QuickTimeTag = StrEnumKeys<typeof QuickTimeTagsNames>;
|
|
5099
5118
|
export interface RAFTags {
|
|
5100
5119
|
/**
|
|
@@ -5282,8 +5301,8 @@ export interface RIFFTags {
|
|
|
5282
5301
|
* @frequency 🔥 ★★★★ (100%)
|
|
5283
5302
|
* @groups APP, Composite, EXIF, File, MakerNotes, QuickTime, RIFF, XMP
|
|
5284
5303
|
* @example 960
|
|
5285
|
-
* @remarks Image height in pixels.
|
|
5286
|
-
* Read-only
|
|
5304
|
+
* @remarks Image height in pixels. File-level property derived from file analysis.
|
|
5305
|
+
* Read-only.
|
|
5287
5306
|
* @see https://exiftool.org/TagNames/File.html
|
|
5288
5307
|
*/
|
|
5289
5308
|
ImageHeight?: number;
|
|
@@ -5291,8 +5310,8 @@ export interface RIFFTags {
|
|
|
5291
5310
|
* @frequency 🔥 ★★★★ (100%)
|
|
5292
5311
|
* @groups APP, Composite, EXIF, File, MakerNotes, QuickTime, RIFF, XMP
|
|
5293
5312
|
* @example 9728
|
|
5294
|
-
* @remarks Image width in pixels.
|
|
5295
|
-
* Read-only
|
|
5313
|
+
* @remarks Image width in pixels. File-level property derived from file analysis.
|
|
5314
|
+
* Read-only.
|
|
5296
5315
|
* @see https://exiftool.org/TagNames/File.html
|
|
5297
5316
|
*/
|
|
5298
5317
|
ImageWidth?: number;
|
|
@@ -5387,17 +5406,17 @@ export interface JFIFTags {
|
|
|
5387
5406
|
/**
|
|
5388
5407
|
* @frequency 🔥 ★★★★ (90%)
|
|
5389
5408
|
* @groups EXIF, JFIF, MakerNotes
|
|
5390
|
-
* @example "(Binary data
|
|
5409
|
+
* @example "(Binary data 39781 bytes, use -b option to extract)"
|
|
5391
5410
|
* @remarks Embedded thumbnail image data. Binary data type.
|
|
5392
5411
|
* Writable for updating existing thumbnails, but cannot create or delete thumbnails.
|
|
5393
5412
|
*/
|
|
5394
5413
|
ThumbnailImage?: BinaryField;
|
|
5395
5414
|
/**
|
|
5396
5415
|
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
5397
|
-
* @groups EXIF, JFIF
|
|
5416
|
+
* @groups Composite, EXIF, JFIF
|
|
5398
5417
|
* @example "(Binary data 57816 bytes, use -b option to extract)"
|
|
5399
|
-
* @remarks Embedded TIFF thumbnail image data.
|
|
5400
|
-
*
|
|
5418
|
+
* @remarks Embedded TIFF thumbnail image data. Composite tag rebuilt from component EXIF tags.
|
|
5419
|
+
* Read-only - derived from SubfileType, Compression, ImageWidth, ImageHeight, etc.
|
|
5401
5420
|
*/
|
|
5402
5421
|
ThumbnailTIFF?: BinaryField;
|
|
5403
5422
|
/**
|
|
@@ -5419,7 +5438,7 @@ export interface JFIFTags {
|
|
|
5419
5438
|
*/
|
|
5420
5439
|
YResolution?: number;
|
|
5421
5440
|
}
|
|
5422
|
-
export declare const JFIFTagsNames: StrEnum<"ResolutionUnit" | "XResolution" | "YResolution" | "
|
|
5441
|
+
export declare const JFIFTagsNames: StrEnum<"ResolutionUnit" | "XResolution" | "YResolution" | "ThumbnailTIFF" | "ThumbnailImage" | "JFIFVersion" | "ThumbnailHeight" | "ThumbnailWidth">;
|
|
5423
5442
|
export type JFIFTag = StrEnumKeys<typeof JFIFTagsNames>;
|
|
5424
5443
|
export interface MakerNotesTags {
|
|
5425
5444
|
/**
|
|
@@ -5444,18 +5463,24 @@ export interface MakerNotesTags {
|
|
|
5444
5463
|
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
5445
5464
|
* @groups MakerNotes
|
|
5446
5465
|
* @example 9
|
|
5466
|
+
* @remarks Accelerometer X-axis reading. Panasonic: positive is acceleration to the left.
|
|
5467
|
+
* Also found in DJI and Lytro cameras. Used for motion/orientation detection.
|
|
5447
5468
|
*/
|
|
5448
5469
|
AccelerometerX?: number;
|
|
5449
5470
|
/**
|
|
5450
5471
|
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
5451
5472
|
* @groups MakerNotes
|
|
5452
5473
|
* @example 80
|
|
5474
|
+
* @remarks Accelerometer Y-axis reading. Panasonic: positive is acceleration backwards.
|
|
5475
|
+
* Also found in DJI and Lytro cameras. Used for motion/orientation detection.
|
|
5453
5476
|
*/
|
|
5454
5477
|
AccelerometerY?: number;
|
|
5455
5478
|
/**
|
|
5456
5479
|
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
5457
5480
|
* @groups MakerNotes
|
|
5458
5481
|
* @example 56
|
|
5482
|
+
* @remarks Accelerometer Z-axis reading. Panasonic: positive is acceleration upward.
|
|
5483
|
+
* Also found in DJI and Lytro cameras. Used for motion/orientation detection.
|
|
5459
5484
|
*/
|
|
5460
5485
|
AccelerometerZ?: number;
|
|
5461
5486
|
/**
|
|
@@ -5488,12 +5513,6 @@ export interface MakerNotesTags {
|
|
|
5488
5513
|
* @example "+0.0"
|
|
5489
5514
|
*/
|
|
5490
5515
|
ActualCompensation?: string;
|
|
5491
|
-
/**
|
|
5492
|
-
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
5493
|
-
* @groups MakerNotes
|
|
5494
|
-
* @example "Off"
|
|
5495
|
-
*/
|
|
5496
|
-
AddAspectRatioInfo?: string;
|
|
5497
5516
|
/**
|
|
5498
5517
|
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
5499
5518
|
* @groups MakerNotes
|
|
@@ -5746,12 +5765,6 @@ export interface MakerNotesTags {
|
|
|
5746
5765
|
* @example 1
|
|
5747
5766
|
*/
|
|
5748
5767
|
AEXv?: number;
|
|
5749
|
-
/**
|
|
5750
|
-
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
5751
|
-
* @groups MakerNotes
|
|
5752
|
-
* @example
|
|
5753
|
-
*/
|
|
5754
|
-
AFAccelDecelTracking?: string;
|
|
5755
5768
|
/**
|
|
5756
5769
|
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
5757
5770
|
* @groups MakerNotes
|
|
@@ -5818,12 +5831,6 @@ export interface MakerNotesTags {
|
|
|
5818
5831
|
* @example "none"
|
|
5819
5832
|
*/
|
|
5820
5833
|
AFAreas?: string;
|
|
5821
|
-
/**
|
|
5822
|
-
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
5823
|
-
* @groups MakerNotes
|
|
5824
|
-
* @example "Main Dial"
|
|
5825
|
-
*/
|
|
5826
|
-
AFAreaSelectionMethod?: string;
|
|
5827
5834
|
/**
|
|
5828
5835
|
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
5829
5836
|
* @groups MakerNotes
|
|
@@ -5914,12 +5921,6 @@ export interface MakerNotesTags {
|
|
|
5914
5921
|
* @example 8
|
|
5915
5922
|
*/
|
|
5916
5923
|
AFConfidence?: number;
|
|
5917
|
-
/**
|
|
5918
|
-
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
5919
|
-
* @groups MakerNotes
|
|
5920
|
-
* @example "n/a"
|
|
5921
|
-
*/
|
|
5922
|
-
AFConfigTool?: string;
|
|
5923
5924
|
/**
|
|
5924
5925
|
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
5925
5926
|
* @groups MakerNotes
|
|
@@ -6250,12 +6251,6 @@ export interface MakerNotesTags {
|
|
|
6250
6251
|
* @example "Top"
|
|
6251
6252
|
*/
|
|
6252
6253
|
AFPointsUsed?: string;
|
|
6253
|
-
/**
|
|
6254
|
-
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
6255
|
-
* @groups MakerNotes
|
|
6256
|
-
* @example 0
|
|
6257
|
-
*/
|
|
6258
|
-
AFPointSwitching?: number;
|
|
6259
6254
|
/**
|
|
6260
6255
|
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
6261
6256
|
* @groups MakerNotes
|
|
@@ -6268,12 +6263,6 @@ export interface MakerNotesTags {
|
|
|
6268
6263
|
* @example "Off"
|
|
6269
6264
|
*/
|
|
6270
6265
|
AFTracking?: string;
|
|
6271
|
-
/**
|
|
6272
|
-
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
6273
|
-
* @groups MakerNotes
|
|
6274
|
-
* @example
|
|
6275
|
-
*/
|
|
6276
|
-
AFTrackingSensitivity?: string;
|
|
6277
6266
|
/**
|
|
6278
6267
|
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
6279
6268
|
* @groups MakerNotes
|
|
@@ -6292,12 +6281,6 @@ export interface MakerNotesTags {
|
|
|
6292
6281
|
* @example "Shooting not possible without focus"
|
|
6293
6282
|
*/
|
|
6294
6283
|
AIServoContinuousShooting?: string;
|
|
6295
|
-
/**
|
|
6296
|
-
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
6297
|
-
* @groups MakerNotes
|
|
6298
|
-
* @example "Release Priority"
|
|
6299
|
-
*/
|
|
6300
|
-
AIServoFirstImage?: string;
|
|
6301
6284
|
/**
|
|
6302
6285
|
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
6303
6286
|
* @groups MakerNotes
|
|
@@ -6310,12 +6293,6 @@ export interface MakerNotesTags {
|
|
|
6310
6293
|
* @example "1: AF, 2: Tracking"
|
|
6311
6294
|
*/
|
|
6312
6295
|
AIServoImagePriority?: string;
|
|
6313
|
-
/**
|
|
6314
|
-
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
6315
|
-
* @groups MakerNotes
|
|
6316
|
-
* @example "Release High Priority"
|
|
6317
|
-
*/
|
|
6318
|
-
AIServoSecondImage?: string;
|
|
6319
6296
|
/**
|
|
6320
6297
|
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
6321
6298
|
* @groups MakerNotes
|
|
@@ -7007,6 +6984,9 @@ export interface MakerNotesTags {
|
|
|
7007
6984
|
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
7008
6985
|
* @groups MakerNotes
|
|
7009
6986
|
* @example "No Bracket"
|
|
6987
|
+
* @remarks Panasonic exposure bracketing configuration.
|
|
6988
|
+
* Values: 'No Bracket', '3 Images, Sequence 0/-/+', '3 Images, Sequence -/0/+',
|
|
6989
|
+
* '5 Images, Sequence 0/-/+', '5 Images, Sequence -/0/+', '7 Images, Sequence 0/-/+', '7 Images, Sequence -/0/+'.
|
|
7010
6990
|
*/
|
|
7011
6991
|
BracketSettings?: string;
|
|
7012
6992
|
/**
|
|
@@ -7162,7 +7142,7 @@ export interface MakerNotesTags {
|
|
|
7162
7142
|
/**
|
|
7163
7143
|
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
7164
7144
|
* @groups MakerNotes
|
|
7165
|
-
* @example "(Binary data
|
|
7145
|
+
* @example "(Binary data 8378 bytes, use -b option to extract)"
|
|
7166
7146
|
*/
|
|
7167
7147
|
CameraParameters?: BinaryField | string;
|
|
7168
7148
|
/**
|
|
@@ -7381,12 +7361,6 @@ export interface MakerNotesTags {
|
|
|
7381
7361
|
* @example "Off"
|
|
7382
7362
|
*/
|
|
7383
7363
|
ClearRetouch?: string;
|
|
7384
|
-
/**
|
|
7385
|
-
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
7386
|
-
* @groups MakerNotes
|
|
7387
|
-
* @example "6 fps"
|
|
7388
|
-
*/
|
|
7389
|
-
CLModeShootingSpeed?: string;
|
|
7390
7364
|
/**
|
|
7391
7365
|
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
7392
7366
|
* @groups MakerNotes
|
|
@@ -7823,8 +7797,10 @@ export interface MakerNotesTags {
|
|
|
7823
7797
|
* @frequency 🧊 ☆☆☆☆ (0%)
|
|
7824
7798
|
* @groups APP, MakerNotes
|
|
7825
7799
|
* @example 45
|
|
7800
|
+
* @remarks Ricoh Theta compass heading direction in degrees.
|
|
7801
|
+
* Camera orientation sensor data.
|
|
7826
7802
|
*/
|
|
7827
|
-
Compass?:
|
|
7803
|
+
Compass?: number;
|
|
7828
7804
|
/**
|
|
7829
7805
|
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
7830
7806
|
* @groups MakerNotes
|
|
@@ -8579,12 +8555,6 @@ export interface MakerNotesTags {
|
|
|
8579
8555
|
* @example "88 0 -136 -288 -480 -696 -944 -1200 -1480 -1752 -2040 0 0 0 0 0"
|
|
8580
8556
|
*/
|
|
8581
8557
|
DistortionCorrParams?: string;
|
|
8582
|
-
/**
|
|
8583
|
-
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
8584
|
-
* @groups MakerNotes
|
|
8585
|
-
* @example "Unknown (0)"
|
|
8586
|
-
*/
|
|
8587
|
-
DistortionCorrParamsNumber?: string;
|
|
8588
8558
|
/**
|
|
8589
8559
|
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
8590
8560
|
* @groups MakerNotes
|
|
@@ -9135,6 +9105,8 @@ export interface MakerNotesTags {
|
|
|
9135
9105
|
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
9136
9106
|
* @groups MakerNotes
|
|
9137
9107
|
* @example "Off"
|
|
9108
|
+
* @remarks Canon eye detection AF setting. Values: 'On' or 'Off'.
|
|
9109
|
+
* Enables autofocus tracking on detected eyes.
|
|
9138
9110
|
*/
|
|
9139
9111
|
EyeDetection?: string;
|
|
9140
9112
|
/**
|
|
@@ -9171,6 +9143,8 @@ export interface MakerNotesTags {
|
|
|
9171
9143
|
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
9172
9144
|
* @groups MakerNotes
|
|
9173
9145
|
* @example "On"
|
|
9146
|
+
* @remarks Sony face detection setting. Values: 'On' (16) or 'Off' (1).
|
|
9147
|
+
* Indicates whether face detection was enabled during capture.
|
|
9174
9148
|
*/
|
|
9175
9149
|
FaceDetection?: string;
|
|
9176
9150
|
/**
|
|
@@ -9231,12 +9205,16 @@ export interface MakerNotesTags {
|
|
|
9231
9205
|
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
9232
9206
|
* @groups MakerNotes
|
|
9233
9207
|
* @example "On"
|
|
9208
|
+
* @remarks Samsung face recognition setting. Values: 'On' or 'Off'.
|
|
9209
|
+
* When enabled, camera attempts to match faces to registered profiles.
|
|
9234
9210
|
*/
|
|
9235
9211
|
FaceRecognition?: string;
|
|
9236
9212
|
/**
|
|
9237
9213
|
* @frequency 🔥 ★★★☆ (20%)
|
|
9238
9214
|
* @groups MakerNotes
|
|
9239
9215
|
* @example 65535
|
|
9216
|
+
* @remarks Number of faces detected by the camera during capture.
|
|
9217
|
+
* Found in MakerNotes from Canon, Nikon, Sony, Panasonic, Olympus, Fujifilm, Pentax, Ricoh, and others.
|
|
9240
9218
|
*/
|
|
9241
9219
|
FacesDetected?: number;
|
|
9242
9220
|
/**
|
|
@@ -9255,6 +9233,8 @@ export interface MakerNotesTags {
|
|
|
9255
9233
|
* @frequency 🔥 ☆☆☆☆ (2%)
|
|
9256
9234
|
* @groups MakerNotes
|
|
9257
9235
|
* @example 12336
|
|
9236
|
+
* @remarks Panasonic: number of faces matched to user-registered known faces.
|
|
9237
|
+
* Related tags: RecognizedFace*Name, RecognizedFace*Position.
|
|
9258
9238
|
*/
|
|
9259
9239
|
FacesRecognized?: number;
|
|
9260
9240
|
/**
|
|
@@ -9389,12 +9369,6 @@ export interface MakerNotesTags {
|
|
|
9389
9369
|
* @example 0
|
|
9390
9370
|
*/
|
|
9391
9371
|
FineTuneOptMatrixMetering?: number;
|
|
9392
|
-
/**
|
|
9393
|
-
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
9394
|
-
* @groups MakerNotes
|
|
9395
|
-
* @example 0
|
|
9396
|
-
*/
|
|
9397
|
-
FineTuneOptSpotMetering?: number;
|
|
9398
9372
|
/**
|
|
9399
9373
|
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
9400
9374
|
* @groups MakerNotes
|
|
@@ -9905,12 +9879,6 @@ export interface MakerNotesTags {
|
|
|
9905
9879
|
* @example "640 428"
|
|
9906
9880
|
*/
|
|
9907
9881
|
FocalPlaneAFPointArea?: string;
|
|
9908
|
-
/**
|
|
9909
|
-
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
9910
|
-
* @groups MakerNotes
|
|
9911
|
-
* @example 9
|
|
9912
|
-
*/
|
|
9913
|
-
FocalPlaneAFPointsUsed?: number;
|
|
9914
9882
|
/**
|
|
9915
9883
|
* @frequency 🔥 ★☆☆☆ (7%)
|
|
9916
9884
|
* @groups MakerNotes
|
|
@@ -9962,9 +9930,45 @@ export interface MakerNotesTags {
|
|
|
9962
9930
|
/**
|
|
9963
9931
|
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
9964
9932
|
* @groups MakerNotes
|
|
9965
|
-
* @example "
|
|
9933
|
+
* @example "Off"
|
|
9966
9934
|
*/
|
|
9967
9935
|
FocusBracketing?: string;
|
|
9936
|
+
/**
|
|
9937
|
+
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
9938
|
+
* @groups MakerNotes
|
|
9939
|
+
* @example "Off"
|
|
9940
|
+
*/
|
|
9941
|
+
FocusBracketingCropDepthComposite?: string;
|
|
9942
|
+
/**
|
|
9943
|
+
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
9944
|
+
* @groups MakerNotes
|
|
9945
|
+
* @example "Off"
|
|
9946
|
+
*/
|
|
9947
|
+
FocusBracketingDepthComposite?: string;
|
|
9948
|
+
/**
|
|
9949
|
+
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
9950
|
+
* @groups MakerNotes
|
|
9951
|
+
* @example "Off"
|
|
9952
|
+
*/
|
|
9953
|
+
FocusBracketingExposureSmoothing?: string;
|
|
9954
|
+
/**
|
|
9955
|
+
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
9956
|
+
* @groups MakerNotes
|
|
9957
|
+
* @example 0
|
|
9958
|
+
*/
|
|
9959
|
+
FocusBracketingFlashInterval?: number;
|
|
9960
|
+
/**
|
|
9961
|
+
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
9962
|
+
* @groups MakerNotes
|
|
9963
|
+
* @example 0
|
|
9964
|
+
*/
|
|
9965
|
+
FocusBracketingFocusIncrement?: number;
|
|
9966
|
+
/**
|
|
9967
|
+
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
9968
|
+
* @groups MakerNotes
|
|
9969
|
+
* @example 0
|
|
9970
|
+
*/
|
|
9971
|
+
FocusBracketingImageCount?: number;
|
|
9968
9972
|
/**
|
|
9969
9973
|
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
9970
9974
|
* @groups MakerNotes
|
|
@@ -10661,6 +10665,12 @@ export interface MakerNotesTags {
|
|
|
10661
10665
|
* @example "n/a"
|
|
10662
10666
|
*/
|
|
10663
10667
|
HueAdjustment?: string;
|
|
10668
|
+
/**
|
|
10669
|
+
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
10670
|
+
* @groups MakerNotes
|
|
10671
|
+
* @example "Off"
|
|
10672
|
+
*/
|
|
10673
|
+
HybridLogGamma?: string;
|
|
10664
10674
|
/**
|
|
10665
10675
|
* @frequency 🧊 ☆☆☆☆ (0%)
|
|
10666
10676
|
* @groups MakerNotes
|
|
@@ -10749,8 +10759,8 @@ export interface MakerNotesTags {
|
|
|
10749
10759
|
* @frequency 🔥 ★★★★ (100%)
|
|
10750
10760
|
* @groups APP, Composite, EXIF, File, MakerNotes, QuickTime, RIFF, XMP
|
|
10751
10761
|
* @example 960
|
|
10752
|
-
* @remarks Image height in pixels.
|
|
10753
|
-
* Read-only
|
|
10762
|
+
* @remarks Image height in pixels. File-level property derived from file analysis.
|
|
10763
|
+
* Read-only.
|
|
10754
10764
|
* @see https://exiftool.org/TagNames/File.html
|
|
10755
10765
|
*/
|
|
10756
10766
|
ImageHeight?: number;
|
|
@@ -10869,14 +10879,18 @@ export interface MakerNotesTags {
|
|
|
10869
10879
|
* @frequency 🔥 ★☆☆☆ (9%)
|
|
10870
10880
|
* @groups EXIF, MakerNotes, XMP
|
|
10871
10881
|
* @example "fefafc6093e2c1470ac8dfa06ef26990"
|
|
10882
|
+
* @remarks Unique identifier for the image, typically a 32-character hex string.
|
|
10883
|
+
* Useful for image deduplication, tracking identity across edits, and linking related files (e.g., RAW + JPEG pairs).
|
|
10884
|
+
* May also appear in MakerNotes and XMP.
|
|
10885
|
+
* @see https://exiftool.org/TagNames/EXIF.html
|
|
10872
10886
|
*/
|
|
10873
10887
|
ImageUniqueID?: string;
|
|
10874
10888
|
/**
|
|
10875
10889
|
* @frequency 🔥 ★★★★ (100%)
|
|
10876
10890
|
* @groups APP, Composite, EXIF, File, MakerNotes, QuickTime, RIFF, XMP
|
|
10877
10891
|
* @example 9728
|
|
10878
|
-
* @remarks Image width in pixels.
|
|
10879
|
-
* Read-only
|
|
10892
|
+
* @remarks Image width in pixels. File-level property derived from file analysis.
|
|
10893
|
+
* Read-only.
|
|
10880
10894
|
* @see https://exiftool.org/TagNames/File.html
|
|
10881
10895
|
*/
|
|
10882
10896
|
ImageWidth?: number;
|
|
@@ -10982,12 +10996,6 @@ export interface MakerNotesTags {
|
|
|
10982
10996
|
* @example 95
|
|
10983
10997
|
*/
|
|
10984
10998
|
InternalFlashTable?: number;
|
|
10985
|
-
/**
|
|
10986
|
-
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
10987
|
-
* @groups MakerNotes
|
|
10988
|
-
* @example 0
|
|
10989
|
-
*/
|
|
10990
|
-
InternalNDFilter?: number;
|
|
10991
10999
|
/**
|
|
10992
11000
|
* @frequency 🔥 ★★☆☆ (20%)
|
|
10993
11001
|
* @groups MakerNotes
|
|
@@ -11372,12 +11380,6 @@ export interface MakerNotesTags {
|
|
|
11372
11380
|
* @example "Focus search on"
|
|
11373
11381
|
*/
|
|
11374
11382
|
LensDriveNoAF?: string;
|
|
11375
|
-
/**
|
|
11376
|
-
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
11377
|
-
* @groups MakerNotes
|
|
11378
|
-
* @example "Continue Focus Search"
|
|
11379
|
-
*/
|
|
11380
|
-
LensDriveWhenAFImpossible?: string;
|
|
11381
11383
|
/**
|
|
11382
11384
|
* @frequency 🧊 ☆☆☆☆ (0%)
|
|
11383
11385
|
* @groups MakerNotes
|
|
@@ -11603,6 +11605,8 @@ export interface MakerNotesTags {
|
|
|
11603
11605
|
* @frequency 🧊 ☆☆☆☆ (1%)
|
|
11604
11606
|
* @groups MakerNotes
|
|
11605
11607
|
* @example 8
|
|
11608
|
+
* @remarks Pentax light meter reading. Calibration varies by camera model.
|
|
11609
|
+
* For Optio WP, add 6 to get approximate LV (Light Value).
|
|
11606
11610
|
*/
|
|
11607
11611
|
LightReading?: number;
|
|
11608
11612
|
/**
|
|
@@ -11791,6 +11795,30 @@ export interface MakerNotesTags {
|
|
|
11791
11795
|
* @example "+0.500"
|
|
11792
11796
|
*/
|
|
11793
11797
|
LuminanceNoiseReduction?: string;
|
|
11798
|
+
/**
|
|
11799
|
+
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
11800
|
+
* @groups MakerNotes
|
|
11801
|
+
* @example "Sample LUT1"
|
|
11802
|
+
*/
|
|
11803
|
+
LUT1Name?: string;
|
|
11804
|
+
/**
|
|
11805
|
+
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
11806
|
+
* @groups MakerNotes
|
|
11807
|
+
* @example 100
|
|
11808
|
+
*/
|
|
11809
|
+
LUT1Opacity?: number;
|
|
11810
|
+
/**
|
|
11811
|
+
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
11812
|
+
* @groups MakerNotes
|
|
11813
|
+
* @example ""
|
|
11814
|
+
*/
|
|
11815
|
+
LUT2Name?: string;
|
|
11816
|
+
/**
|
|
11817
|
+
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
11818
|
+
* @groups MakerNotes
|
|
11819
|
+
* @example 0
|
|
11820
|
+
*/
|
|
11821
|
+
LUT2Opacity?: number;
|
|
11794
11822
|
/**
|
|
11795
11823
|
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
11796
11824
|
* @groups MakerNotes
|
|
@@ -11884,12 +11912,6 @@ export interface MakerNotesTags {
|
|
|
11884
11912
|
* @example "Stops at AF area edges"
|
|
11885
11913
|
*/
|
|
11886
11914
|
ManualAFPointSelectPattern?: string;
|
|
11887
|
-
/**
|
|
11888
|
-
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
11889
|
-
* @groups MakerNotes
|
|
11890
|
-
* @example "Stops at AF Area Edges"
|
|
11891
|
-
*/
|
|
11892
|
-
ManualAFPointSelPattern?: string;
|
|
11893
11915
|
/**
|
|
11894
11916
|
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
11895
11917
|
* @groups MakerNotes
|
|
@@ -12073,7 +12095,7 @@ export interface MakerNotesTags {
|
|
|
12073
12095
|
/**
|
|
12074
12096
|
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
12075
12097
|
* @groups MakerNotes
|
|
12076
|
-
* @example "(Binary data
|
|
12098
|
+
* @example "(Binary data 1748 bytes, use -b option to extract)"
|
|
12077
12099
|
*/
|
|
12078
12100
|
MergedImage?: BinaryField | string;
|
|
12079
12101
|
/**
|
|
@@ -12547,12 +12569,6 @@ export interface MakerNotesTags {
|
|
|
12547
12569
|
* @example "Off"
|
|
12548
12570
|
*/
|
|
12549
12571
|
MultiExposureAutoGain?: string;
|
|
12550
|
-
/**
|
|
12551
|
-
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
12552
|
-
* @groups MakerNotes
|
|
12553
|
-
* @example "Bright (comparative)"
|
|
12554
|
-
*/
|
|
12555
|
-
MultiExposureControl?: string;
|
|
12556
12572
|
/**
|
|
12557
12573
|
* @frequency 🔥 ☆☆☆☆ (2%)
|
|
12558
12574
|
* @groups MakerNotes
|
|
@@ -12835,12 +12851,6 @@ export interface MakerNotesTags {
|
|
|
12835
12851
|
* @example 668058300
|
|
12836
12852
|
*/
|
|
12837
12853
|
OrderNumber?: number;
|
|
12838
|
-
/**
|
|
12839
|
-
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
12840
|
-
* @groups MakerNotes
|
|
12841
|
-
* @example "Separate Vert/Horiz Points"
|
|
12842
|
-
*/
|
|
12843
|
-
OrientationLinkedAF?: string;
|
|
12844
12854
|
/**
|
|
12845
12855
|
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
12846
12856
|
* @groups MakerNotes
|
|
@@ -13111,12 +13121,6 @@ export interface MakerNotesTags {
|
|
|
13111
13121
|
* @example "FX (36x24)"
|
|
13112
13122
|
*/
|
|
13113
13123
|
PhotoShootingMenuBankImageArea?: string;
|
|
13114
|
-
/**
|
|
13115
|
-
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
13116
|
-
* @groups MakerNotes
|
|
13117
|
-
* @example "Vivid"
|
|
13118
|
-
*/
|
|
13119
|
-
PhotoStyle?: string;
|
|
13120
13124
|
/**
|
|
13121
13125
|
* @frequency 🔥 ☆☆☆☆ (2%)
|
|
13122
13126
|
* @groups MakerNotes
|
|
@@ -13431,6 +13435,9 @@ export interface MakerNotesTags {
|
|
|
13431
13435
|
* @frequency 🔥 ★☆☆☆ (9%)
|
|
13432
13436
|
* @groups Composite, MakerNotes
|
|
13433
13437
|
* @example "816x459"
|
|
13438
|
+
* @remarks Dimensions of the embedded preview image (e.g., '816x459').
|
|
13439
|
+
* Read-only composite. Useful for checking preview size without extracting binary data.
|
|
13440
|
+
* @see https://exiftool.org/TagNames/Composite.html
|
|
13434
13441
|
*/
|
|
13435
13442
|
PreviewImageSize?: string;
|
|
13436
13443
|
/**
|
|
@@ -13747,6 +13754,8 @@ export interface MakerNotesTags {
|
|
|
13747
13754
|
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
13748
13755
|
* @groups MakerNotes
|
|
13749
13756
|
* @example "n/a"
|
|
13757
|
+
* @remarks Sony RAW compression setting: 'Compressed RAW', 'Uncompressed RAW', or 'Lossless Compressed RAW'.
|
|
13758
|
+
* Introduced 2015 for uncompressed 14-bit RAW support.
|
|
13750
13759
|
*/
|
|
13751
13760
|
RAWFileType?: string;
|
|
13752
13761
|
/**
|
|
@@ -13995,12 +14004,6 @@ export interface MakerNotesTags {
|
|
|
13995
14004
|
* @example "Varies With Rotation Speed"
|
|
13996
14005
|
*/
|
|
13997
14006
|
RFLensMFFocusRingSensitivity?: string;
|
|
13998
|
-
/**
|
|
13999
|
-
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
14000
|
-
* @groups MakerNotes
|
|
14001
|
-
* @example "n/a"
|
|
14002
|
-
*/
|
|
14003
|
-
RFLensType?: string;
|
|
14004
14007
|
/**
|
|
14005
14008
|
* @frequency 🧊 ☆☆☆☆ (1%)
|
|
14006
14009
|
* @groups MakerNotes
|
|
@@ -14239,12 +14242,6 @@ export interface MakerNotesTags {
|
|
|
14239
14242
|
* @example "45 points"
|
|
14240
14243
|
*/
|
|
14241
14244
|
SelectableAFPoint?: string;
|
|
14242
|
-
/**
|
|
14243
|
-
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
14244
|
-
* @groups MakerNotes
|
|
14245
|
-
* @example "Single-point AF, Auto, Zone AF, Spot AF, [6], [8], [9], […], [14]"
|
|
14246
|
-
*/
|
|
14247
|
-
SelectAFAreaSelectionMode?: string;
|
|
14248
14245
|
/**
|
|
14249
14246
|
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
14250
14247
|
* @groups MakerNotes
|
|
@@ -14473,12 +14470,6 @@ export interface MakerNotesTags {
|
|
|
14473
14470
|
* @example "sw02028104 "
|
|
14474
14471
|
*/
|
|
14475
14472
|
SerialNumber?: string;
|
|
14476
|
-
/**
|
|
14477
|
-
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
14478
|
-
* @groups MakerNotes
|
|
14479
|
-
* @example "Format 2"
|
|
14480
|
-
*/
|
|
14481
|
-
SerialNumberFormat?: string;
|
|
14482
14473
|
/**
|
|
14483
14474
|
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
14484
14475
|
* @groups MakerNotes
|
|
@@ -15076,12 +15067,6 @@ export interface MakerNotesTags {
|
|
|
15076
15067
|
* @example 960
|
|
15077
15068
|
*/
|
|
15078
15069
|
SpotFocusPointY?: number;
|
|
15079
|
-
/**
|
|
15080
|
-
* @frequency 🔥 ★☆☆☆ (9%)
|
|
15081
|
-
* @groups MakerNotes
|
|
15082
|
-
* @example "Center"
|
|
15083
|
-
*/
|
|
15084
|
-
SpotMeteringMode?: string;
|
|
15085
15070
|
/**
|
|
15086
15071
|
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
15087
15072
|
* @groups MakerNotes
|
|
@@ -15206,6 +15191,9 @@ export interface MakerNotesTags {
|
|
|
15206
15191
|
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
15207
15192
|
* @groups MakerNotes
|
|
15208
15193
|
* @example "People"
|
|
15194
|
+
* @remarks Nikon Z series subject detection mode.
|
|
15195
|
+
* Values: 'Off', 'Auto', 'People', 'Animals', 'Vehicles', 'Birds', 'Airplanes'.
|
|
15196
|
+
* Indicates what the camera's AI was configured to detect during capture.
|
|
15209
15197
|
*/
|
|
15210
15198
|
SubjectDetection?: string;
|
|
15211
15199
|
/**
|
|
@@ -15391,7 +15379,7 @@ export interface MakerNotesTags {
|
|
|
15391
15379
|
/**
|
|
15392
15380
|
* @frequency 🔥 ★★★★ (90%)
|
|
15393
15381
|
* @groups EXIF, JFIF, MakerNotes
|
|
15394
|
-
* @example "(Binary data
|
|
15382
|
+
* @example "(Binary data 39781 bytes, use -b option to extract)"
|
|
15395
15383
|
* @remarks Embedded thumbnail image data. Binary data type.
|
|
15396
15384
|
* Writable for updating existing thumbnails, but cannot create or delete thumbnails.
|
|
15397
15385
|
*/
|
|
@@ -15406,6 +15394,8 @@ export interface MakerNotesTags {
|
|
|
15406
15394
|
* @frequency 🔥 ★★★★ (90%)
|
|
15407
15395
|
* @groups EXIF, MakerNotes
|
|
15408
15396
|
* @example 9998
|
|
15397
|
+
* @remarks Size in bytes of the embedded JPEG thumbnail.
|
|
15398
|
+
* Useful for checking thumbnail availability without extracting binary data.
|
|
15409
15399
|
*/
|
|
15410
15400
|
ThumbnailLength?: number;
|
|
15411
15401
|
/**
|
|
@@ -15540,7 +15530,7 @@ export interface MakerNotesTags {
|
|
|
15540
15530
|
/**
|
|
15541
15531
|
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
15542
15532
|
* @groups MakerNotes
|
|
15543
|
-
* @example "(Binary data
|
|
15533
|
+
* @example "(Binary data 1505 bytes, use -b option to extract)"
|
|
15544
15534
|
*/
|
|
15545
15535
|
ToneCurveTable?: BinaryField | string;
|
|
15546
15536
|
/**
|
|
@@ -16023,12 +16013,6 @@ export interface MakerNotesTags {
|
|
|
16023
16013
|
* @example 0
|
|
16024
16014
|
*/
|
|
16025
16015
|
WBShiftGM?: number;
|
|
16026
|
-
/**
|
|
16027
|
-
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
16028
|
-
* @groups MakerNotes
|
|
16029
|
-
* @example 0
|
|
16030
|
-
*/
|
|
16031
|
-
WBShiftIntelligentAuto?: number;
|
|
16032
16016
|
/**
|
|
16033
16017
|
* @frequency 🔥 ★★★★ (80%)
|
|
16034
16018
|
* @groups APP, EXIF, MakerNotes, XMP
|
|
@@ -16110,7 +16094,7 @@ export interface MakerNotesTags {
|
|
|
16110
16094
|
/**
|
|
16111
16095
|
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
16112
16096
|
* @groups MakerNotes
|
|
16113
|
-
* @example "(Binary data
|
|
16097
|
+
* @example "(Binary data 2201 bytes, use -b option to extract)"
|
|
16114
16098
|
*/
|
|
16115
16099
|
WhiteBalanceTable?: BinaryField | string;
|
|
16116
16100
|
/**
|
|
@@ -16288,7 +16272,7 @@ export interface MakerNotesTags {
|
|
|
16288
16272
|
*/
|
|
16289
16273
|
ZoomTargetWidth?: number;
|
|
16290
16274
|
}
|
|
16291
|
-
export declare const MakerNotesTagsNames: StrEnum<"AmbientTemperature" | "Aperture" | "AutoISOMax" | "Barcode" | "CameraModel" | "CameraType" | "ColorMode" | "ColorSpace" | "Compass" | "Compression" | "DateTimeOriginal" | "DigitalZoom" | "DigitalZoomOn" | "Emissivity" | "ExposureCompensation" | "ExposureTime" | "FirmwareVersion" | "Flash" | "FNumber" | "FocusDistance" | "FocusMode" | "FocusStepCount" | "FrameRate" | "Gain" | "HDRSetting" | "ImageHeight" | "ImageWidth" | "LensModel" | "LensSerialNumber" | "Macro" | "Model" | "ObjectDistance" | "PreviewImageHeight" | "PreviewImageWidth" | "PreviewQuality" | "Quality" | "Resolution" | "ResolutionUnit" | "SerialNumber" | "Sharpness" | "Version" | "WhiteBalance" | "XResolution" | "YResolution" | "BlueBalance" | "Copyright" | "Country" | "CreateDate" | "DriveMode" | "ExtenderStatus" | "FileNumber" | "FlashType" | "ISO" | "Lens" | "LensID" | "LensSpec" | "LensType" | "PhaseDetectAF" | "PreviewImage" | "PreviewImageSize" | "Rating" | "RedBalance" | "RedEyeReduction" | "Rotation" | "ShootingMode" | "ShutterSpeed" | "State" | "ApertureValue" | "Artist" | "BlackLevel" | "BrightnessValue" | "ChromaticAberrationCorrection" | "ChromaticAberrationCorrParams" | "Contrast" | "CropLeft" | "CropTop" | "CustomRendered" | "DigitalZoomRatio" | "DistortionCorrection" | "DistortionCorrParams" | "ExposureMode" | "ExposureProgram" | "FileSource" | "FocalLength" | "ImageNumber" | "ImageUniqueID" | "LensInfo" | "LightSource" | "Make" | "MeteringMode" | "OwnerName" | "PreviewImageLength" | "PreviewImageStart" | "Saturation" | "SensorBottomBorder" | "SensorHeight" | "SensorLeftBorder" | "SensorRightBorder" | "SensorTopBorder" | "SensorWidth" | "ShutterSpeedValue" | "Software" | "ThumbnailImage" | "ThumbnailLength" | "VignettingCorrection" | "VignettingCorrParams" | "WBBlueLevel" | "WBGreenLevel" | "WBRedLevel" | "WhiteLevel" | "WhitePoint" | "YCbCrCoefficients" | "YCbCrPositioning" | "BitDepth" | "TimeCreated" | "ThumbnailHeight" | "ThumbnailWidth" | "SensorType" | "AccelerationTracking" | "AccelerationVector" | "Accelerometer" | "AccelerometerX" | "AccelerometerY" | "AccelerometerZ" | "AccessorySerialNumber" | "AccessoryType" | "ActionInAFCCont" | "ActionPriority" | "ActualCompensation" | "AddAspectRatioInfo" | "AddIPTCInformation" | "AddOriginalDecisionData" | "ADJDebugInfo" | "AdjustmentMode" | "ADLBracketingStep" | "ADLBracketingType" | "AdvancedFilter" | "AdvancedSceneType" | "AEAperture" | "AEApertureSteps" | "AEAverage" | "AEBAutoCancel" | "AEBBracketValue" | "AEBracketingSteps" | "AEBSequence" | "AEBSequenceAutoCancel" | "AEBShotCount" | "AEBXv" | "AEDebugInfo" | "AEExposureTime" | "AEHistogramInfo" | "AELButton" | "AELExposureIndicator" | "AELiveViewHistogramInfo" | "AELiveViewLocalHistogram" | "AELocalHistogram" | "AELock" | "AELockButton" | "AELockButtonPlusDials" | "AELockMeterModeAfterFocus" | "AEMaxAperture" | "AEMeteringMode" | "AEMeteringSegments" | "AEMicroadjustment" | "AEMinAperture" | "AEMinExposureTime" | "AEProgramMode" | "AESetting" | "AEStable" | "AETarget" | "AEWhiteBalance" | "AEXv" | "AFAccelDecelTracking" | "AFActivation" | "AFAdjustment" | "AFAndMeteringButtons" | "AFAperture" | "AFAreaHeight" | "AFAreaHeights" | "AFAreaIllumination" | "AFAreaMode" | "AFAreaModeSetting" | "AFAreaPointSize" | "AFAreas" | "AFAreaSelectionMethod" | "AFAreaSelectMethod" | "AFAreaSize" | "AFAreaWidth" | "AFAreaWidths" | "AFAreaXPosition" | "AFAreaXPositions" | "AFAreaYPosition" | "AFAreaYPositions" | "AFAreaZoneSize" | "AFAssist" | "AFAssistBeam" | "AFAssistLamp" | "AFButtonPressed" | "AFCHold" | "AFConfidence" | "AFConfigTool" | "AFCoordinatesAvailable" | "AFCPointTracking" | "AFCSensitivity" | "AFDebugInfo" | "AFDefocus" | "AFDetectionMethod" | "AFDuringLiveView" | "AFFineTune" | "AFFineTuneAdj" | "AFFineTuneAdjTele" | "AFFineTuneIndex" | "AFFocusArea" | "AFFrameSize" | "AFIlluminator" | "AFImageHeight" | "AFImageWidth" | "AFInfo2Version" | "AFIntegrationTime" | "AFMeasuredDepth" | "AFMicroAdj" | "AFMicroAdjMode" | "AFMicroAdjRegisteredLenses" | "AFMicroadjustment" | "AFMicroAdjValue" | "AFMode" | "AFModeRestrictions" | "AFOnAELockButtonSwitch" | "AFOnButton" | "AFPerformance" | "AFPoint" | "AFPointActivationArea" | "AFPointAreaExpansion" | "AFPointAtShutterRelease" | "AFPointAutoSelection" | "AFPointBrightness" | "AFPointDetails" | "AFPointDisplayDuringFocus" | "AFPointIllumination" | "AFPointInFocus" | "AFPointMode" | "AFPointPosition" | "AFPointRegistration" | "AFPoints" | "AFPointSel" | "AFPointSelected" | "AFPointSelection" | "AFPointSelectionMethod" | "AFPointSetting" | "AFPointsInFocus" | "AFPointsInFocus1D" | "AFPointsInFocus5D" | "AFPointSpotMetering" | "AFPointsSelected" | "AFPointsSpecial" | "AFPointsUsed" | "AFPointSwitching" | "AFPredictor" | "AFTracking" | "AFTrackingSensitivity" | "AFType" | "AFWithShutter" | "AIServoContinuousShooting" | "AIServoFirstImage" | "AIServoFirstImagePriority" | "AIServoImagePriority" | "AIServoSecondImage" | "AIServoSecondImagePriority" | "AIServoTrackingMethod" | "AIServoTrackingSensitivity" | "AISubjectTrackingMode" | "Altitude" | "AmbienceSelection" | "AmbientTemperatureFahrenheit" | "AndroidRelease" | "AntiFlicker" | "AntiShockWaitingTime" | "ApertureLock" | "ApertureRange" | "ApertureRingUse" | "ApertureSetting" | "Application" | "ApplySettingsToLiveView" | "ApplyShootingMeteringMode" | "ApproximateFNumber" | "AppVersion" | "ArtFilter" | "ArtFilterEffect" | "ArtMode" | "ArtModeParameters" | "AspectFrame" | "AspectRatio" | "AssignBktButton" | "AssignFuncButton" | "AssignMovieFunc1ButtonPlusDials" | "AssignMovieFunc2Button" | "AssignMoviePreviewButtonPlusDials" | "AssignMovieRecordButton" | "AssignMovieRecordButtonPlusDials" | "AssignMovieSubselector" | "AssignMovieSubselectorPlusDials" | "AssignRemoteFnButton" | "AssistButtonFunction" | "Audio" | "AudioCompression" | "AutoAFPointColorTracking" | "AutoAFPointSelEOSiTRAF" | "AutoAperture" | "AutoBracket" | "AutoBracketing" | "AutoBracketingMode" | "AutoBracketingSet" | "AutoBracketModeM" | "AutoBracketOrder" | "AutoBracketSet" | "AutoDistortionControl" | "AutoDynamicRange" | "AutoExposureBracketing" | "AutoFlashISOSensitivity" | "AutoFocusModeRestrictions" | "AutoFP" | "AutoISO" | "AutoISOMinShutterSpeed" | "AutoLightingOptimizer" | "AutoPortraitFramed" | "AutoRotate" | "AuxiliaryLens" | "AvApertureSetting" | "AverageBlackLevel" | "AverageLV" | "AvSettingWithoutLens" | "BabyAge" | "BabyName" | "BarometerInfoVersion" | "BaseExposureCompensation" | "BaseISO" | "BatteryLevel" | "BatteryOrder" | "BatteryState" | "BatteryTemperature" | "BatteryType" | "BatteryVoltage" | "BayerPattern" | "Beep" | "BeepPitch" | "BeepVolume" | "BestShotMode" | "BlackLevels" | "BlackMaskBottomBorder" | "BlackMaskLeftBorder" | "BlackMaskRightBorder" | "BlackMaskTopBorder" | "BlackPoint" | "BleachBypassToning" | "BlueGain" | "BlurControl" | "BlurWarning" | "BoardTemperature" | "BodyBatteryADLoad" | "BodyBatteryADNoLoad" | "BodyBatteryPercent" | "BodyBatteryState" | "BodyBatteryVoltage" | "BodyFirmware" | "BodyFirmwareVersion" | "BodySerialNumber" | "BracketIncrement" | "BracketingBurstOptions" | "BracketMode" | "BracketProgram" | "BracketSequence" | "BracketSet" | "BracketSettings" | "BracketShotNumber" | "BracketStep" | "BracketValue" | "Brightness" | "BuildNumber" | "BulbDuration" | "BurstGroupID" | "BurstMode" | "BurstShot" | "BurstSpeed" | "BurstUUID" | "ButtonFunctionControlOff" | "BWFilter" | "BWMode" | "CAFArea" | "CAFGridSize" | "CAFPointsInFocus" | "CAFPointsSelected" | "Calibration" | "CameraDateTime" | "CameraID" | "CameraISO" | "CameraOrientation" | "CameraParameters" | "CameraPictureStyle" | "CameraPitch" | "CameraRoll" | "CameraSettingsVersion" | "CameraYaw" | "CanonExposureMode" | "CanonFileDescription" | "CanonFileLength" | "CanonFirmwareVersion" | "CanonFlashMode" | "CanonImageHeight" | "CanonImageSize" | "CanonImageType" | "CanonImageWidth" | "CanonModelID" | "CardShutterLock" | "CaseAutoSetting" | "Categories" | "CCDBoardVersion" | "CCDScanMode" | "CCDSensitivity" | "CCDVersion" | "CenterAFArea" | "CenterFocusPoint" | "CenterWeightedAreaSize" | "CHModeShootingSpeed" | "ChromaticAberrationCorr" | "ChromaticAberrationSetting" | "ChrominanceNoiseReduction" | "City2" | "Clarity" | "ClarityControl" | "ClearRetouch" | "CLModeShootingSpeed" | "CmdDialsApertureSetting" | "CmdDialsChangeMainSub" | "CmdDialsMenuAndPlayback" | "CmdDialsReverseRotation" | "CmdDialsReverseRotExposureComp" | "ColorAdjustment" | "ColorAdjustmentMode" | "ColorBalanceBlue" | "ColorBalanceGreen" | "ColorBalanceRed" | "ColorBalanceVersion" | "ColorBitDepth" | "ColorBW" | "ColorChromeEffect" | "ColorChromeFXBlue" | "ColorCompensationFilter" | "ColorCompensationFilterCustom" | "ColorCompensationFilterSet" | "ColorControl" | "ColorCreatorEffect" | "ColorDataVersion" | "ColorEffect" | "ColorFilter" | "ColorGain" | "ColorHue" | "ColorMatrix" | "ColorMatrixA" | "ColorMatrixB" | "ColorMatrixNumber" | "ColorProfileSettings" | "ColorTempAsShot" | "ColorTempAuto" | "ColorTempCloudy" | "ColorTempCustom" | "ColorTempDaylight" | "ColorTemperature" | "ColorTemperatureAuto" | "ColorTemperatureCustom" | "ColorTemperatureSet" | "ColorTemperatureSetting" | "ColorTempFlash" | "ColorTempFluorescent" | "ColorTempKelvin" | "ColorTempMeasured" | "ColorTempShade" | "ColorTempTungsten" | "ColorTint" | "ColorTone" | "ColorToneAuto" | "ColorToneFaithful" | "ColorToneLandscape" | "ColorToneNeutral" | "ColorTonePortrait" | "ColorToneStandard" | "CommandDials" | "CommandDialsApertureSetting" | "CommandDialsChangeMainSub" | "CommandDialsMenuAndPlayback" | "CommandDialsReverseRotation" | "CommanderChannel" | "CommanderGroupAManualOutput" | "CommanderGroupAMode" | "CommanderGroupBManualOutput" | "CommanderGroupBMode" | "CommanderInternalFlash" | "CommanderInternalManualOutput" | "CommanderInternalTTLComp" | "CommanderInternalTTLCompBuiltin" | "CommanderInternalTTLCompGroupA" | "CommanderInternalTTLCompGroupB" | "ComponentBitDepth" | "ComponentVersion" | "CompositeImageMode" | "CompositionAdjust" | "CompositionAdjustRotation" | "CompositionAdjustX" | "CompositionAdjustY" | "CompressedImageSize" | "CompressionFactor" | "CompressionRatio" | "CompressorVersion" | "ContentIdentifier" | "ContinuousBracketing" | "ContinuousDrive" | "ContinuousModeDisplay" | "ContinuousModeLiveView" | "ContinuousShootingSpeed" | "ContinuousShotLimit" | "ContrastAuto" | "ContrastCurve" | "ContrastDetectAFArea" | "ContrastDetectAFInFocus" | "ContrastFaithful" | "ContrastHighlight" | "ContrastHighlightShadowAdj" | "ContrastLandscape" | "ContrastMode" | "ContrastMonochrome" | "ContrastNeutral" | "ContrastPortrait" | "ContrastSetting" | "ContrastShadow" | "ContrastStandard" | "ControlDialSet" | "ControllerBoardVersion" | "ControlMode" | "ControlRingResponse" | "ControlRingRotation" | "ConversionLens" | "Converter" | "CoringFilter" | "CorrelatedColorTemp" | "CountryCode" | "CPUFirmwareVersion" | "CPUVersions" | "CreativeStyle" | "CreativeStyleSetting" | "CropArea" | "CropBottomMargin" | "CropHeight" | "CropHiSpeed" | "CropLeftMargin" | "CropMode" | "CroppedImageHeight" | "CroppedImageLeft" | "CroppedImageTop" | "CroppedImageWidth" | "CropRightMargin" | "CropTopMargin" | "CropWidth" | "CrossProcess" | "CustomControls" | "CustomizeDials" | "CustomPictureStyleFileName" | "CustomSaturation" | "CustomSettingsAllDefault" | "CustomSettingsBank" | "CustomWBBlueLevel" | "CustomWBError" | "CustomWBGreenLevel" | "CustomWBRedLevel" | "CustomWBSetting" | "DarkFocusEnvironment" | "DataDump" | "DataScaling" | "Date" | "DateDisplayFormat" | "DateImprint" | "DateStampMode" | "DateTimeStamp" | "DateTimeUTC" | "DaylightSavings" | "DECPosition" | "DefaultEraseOption" | "DeletedImageCount" | "DestinationCity" | "DestinationCityCode" | "DestinationDST" | "DevelopmentDynamicRange" | "DeviceCodename" | "DeviceHardwareRevision" | "DeviceMake" | "DeviceType" | "DialDirectionTvAv" | "DiffractionCompensation" | "DiffractionCorrection" | "DigitalFilter" | "DigitalGain" | "DigitalICE" | "DigitalLensOptimizer" | "DigitalLensOptimizerSetting" | "DirectoryIndex" | "DirectoryNumber" | "DispButton" | "DisplayAllAFPoints" | "DisplayAperture" | "DistortionControl" | "DistortionCorrectionSetting" | "DistortionCorrectionValue" | "DistortionCorrectionVersion" | "DistortionCorrParamsNumber" | "DistortionCorrParamsPresent" | "DriveModeSetting" | "DriveSpeed" | "DSPFirmwareVersion" | "DualPixelRaw" | "DustRemovalData" | "DXCropAlert" | "DynamicAFArea" | "DynamicAreaAFAssist" | "DynamicAreaAFDisplay" | "DynamicRange" | "DynamicRangeBoost" | "DynamicRangeExpansion" | "DynamicRangeOptimizer" | "DynamicRangeOptimizerBracket" | "DynamicRangeOptimizerLevel" | "DynamicRangeOptimizerMode" | "DynamicRangeOptimizerSetting" | "DynamicRangeSetting" | "EasyExposureComp" | "EasyExposureCompensation" | "EasyMode" | "EffectiveLV" | "EffectiveMaxAperture" | "ElectronicFrontCurtainShutter" | "EnergySavingMode" | "Enhancement" | "Enhancer" | "EpsonImageHeight" | "EpsonImageWidth" | "EpsonSoftware" | "EquipmentVersion" | "ETTLII" | "EventNumber" | "EVSteps" | "EVStepSize" | "ExitPupilPosition" | "ExposureBracketingIndicatorLast" | "ExposureBracketShotNumber" | "ExposureBracketStepSize" | "ExposureBracketValue" | "ExposureCompAutoCancel" | "ExposureCompensationMode" | "ExposureCompensationSet" | "ExposureCompensationSetting" | "ExposureCompStepSize" | "ExposureControlStep" | "ExposureControlStepSize" | "ExposureCount" | "ExposureDelayMode" | "ExposureDifference" | "ExposureIndicator" | "ExposureLevelIncrements" | "ExposureModeInManual" | "ExposureShift" | "ExposureStandardAdjustment" | "ExposureTimeMax" | "ExposureTimeMin" | "ExposureTuning" | "ExposureWarning" | "EXRAuto" | "EXRMode" | "ExtendedMenuBanks" | "ExtendedShutterSpeeds" | "ExtendedWBDetect" | "Extender" | "ExtenderFirmwareVersion" | "ExtenderModel" | "ExtenderSerialNumber" | "ExternalFlash" | "ExternalFlashBounce" | "ExternalFlashCompensation" | "ExternalFlashExposureComp" | "ExternalFlashFirmware" | "ExternalFlashFlags" | "ExternalFlashGuideNumber" | "ExternalFlashGValue" | "ExternalFlashMode" | "ExternalFlashReadyState" | "ExternalFlashStatus" | "ExternalFlashZoom" | "ExternalFlashZoomOverride" | "ExternalSensorBrightnessValue" | "ExtraInfoVersion" | "EyeDetection" | "EyeStartAF" | "FaceDetect" | "FaceDetectArea" | "FaceDetectFrameCrop" | "FaceDetectFrameSize" | "FaceDetection" | "FaceElementPositions" | "FaceElementSelected" | "FaceElementTypes" | "FaceImageSize" | "FaceInfoLength" | "FaceInfoOffset" | "FaceName" | "FacePosition" | "FacePositions" | "FaceRecognition" | "FacesDetected" | "FacesDetectedA" | "FacesDetectedB" | "FacesRecognized" | "FaceWidth" | "Fade" | "FEMicroadjustment" | "FileFormat" | "FileIndex" | "FileInfoVersion" | "FileNumberMemory" | "FileNumberSequence" | "FillFlashAutoReduction" | "FilmGrainEffect" | "FilmMode" | "FilmType" | "FilterEffect" | "FilterEffectAuto" | "FilterEffectMonochrome" | "FinderDisplayDuringExposure" | "FineSharpness" | "FineTuneOptCenterWeighted" | "FineTuneOptHighlightWeighted" | "FineTuneOptMatrixMetering" | "FineTuneOptSpotMetering" | "FinishedImage" | "Firmware" | "FirmwareDate" | "FirmwareID" | "FirmwareName" | "FirmwareRevision" | "FirstFrameActionInAFC" | "FisheyeFilter" | "FlashAction" | "FlashActionExternal" | "FlashActivity" | "FlashBatteryLevel" | "FlashBias" | "FlashBits" | "FlashBurstPriority" | "FlashButtonFunction" | "FlashChargeLevel" | "FlashColorFilter" | "FlashCommanderMode" | "FlashCompensation" | "FlashControl" | "FlashControlMode" | "FlashCurtain" | "FlashDefault" | "FlashDevice" | "FlashDistance" | "FlashExposureBracketValue" | "FlashExposureComp" | "FlashExposureCompArea" | "FlashExposureCompSet" | "FlashExposureIndicator" | "FlashExposureIndicatorLast" | "FlashExposureIndicatorNext" | "FlashExposureLock" | "FlashFired" | "FlashFiring" | "FlashFirmwareVersion" | "FlashFocalLength" | "FlashFunction" | "FlashGNDistance" | "FlashGroupACompensation" | "FlashGroupAControlMode" | "FlashGroupBCompensation" | "FlashGroupBControlMode" | "FlashGroupCCompensation" | "FlashGroupCControlMode" | "FlashGuideNumber" | "FlashIlluminationPattern" | "FlashInfoVersion" | "FlashIntensity" | "FlashLevel" | "FlashMasterControlMode" | "FlashMetering" | "FlashMeteringMode" | "FlashMeteringSegments" | "FlashMode" | "FlashModel" | "FlashOptions" | "FlashOutput" | "FlashRemoteControl" | "FlashSerialNumber" | "FlashSetting" | "FlashSource" | "FlashStatus" | "FlashStatusExternal" | "FlashSyncMode" | "FlashSyncSpeed" | "FlashSyncSpeedAv" | "FlashThreshold" | "FlashWarning" | "FlexibleSpotPosition" | "FlickAdvanceDirection" | "FlickerReduce" | "FlickerReduction" | "FlickerReductionIndicator" | "FlickerReductionShooting" | "FlightDegree" | "FlightSpeed" | "FocalLengthTeleZoom" | "FocalPlaneAFPointArea" | "FocalPlaneAFPointsUsed" | "FocalPlaneDiagonal" | "FocalPlaneXSize" | "FocalPlaneYSize" | "FocalType" | "FocalUnits" | "FocusArea" | "FocusAreaSelection" | "FocusBracket" | "FocusBracketing" | "FocusBracketStepSize" | "FocusContinuous" | "FocusDisplayAIServoAndMF" | "FocusDistanceLower" | "FocusDistanceRange" | "FocusDistanceUpper" | "FocusFrameSize" | "FocusHoldButton" | "FocusInfoVersion" | "FocusingScreen" | "FocusLocation" | "FocusLocked" | "FocusModeSetting" | "FocusModeSwitch" | "FocusPeakingHighlightColor" | "FocusPeakingLevel" | "FocusPixel" | "FocusPointBrightness" | "FocusPointPersistence" | "FocusPointSchema" | "FocusPointSelectionSpeed" | "FocusPointWrap" | "FocusPosition" | "FocusPositionHorizontal" | "FocusPositionVertical" | "FocusProcess" | "FocusRange" | "FocusRangeIndex" | "FocusResult" | "FocusRingRotation" | "FocusSetting" | "FocusShiftExposureLock" | "FocusShiftInterval" | "FocusShiftNumberShots" | "FocusShiftShooting" | "FocusShiftStepWidth" | "FocusStatus" | "FocusStepInfinity" | "FocusStepNear" | "FocusTrackingLockOn" | "FocusWarning" | "FolderName" | "FolderNumber" | "FrameCount" | "FrameNumber" | "FramingGridDisplay" | "FreeBytes" | "FreeMemoryCardImages" | "FujiFlashMode" | "FujiModel" | "FullImageSize" | "FullPressSnap" | "Func1Button" | "Func1ButtonPlusDials" | "Func2Button" | "Func3Button" | "FuncButton" | "FuncButtonPlusDials" | "FunctionButton" | "GainBase" | "GEImageSize" | "GEMake" | "GEModel" | "GimbalDegree" | "Gradation" | "GrainEffectRoughness" | "GrainEffectSize" | "GrainyBWFilter" | "GreenGain" | "GridDisplay" | "GripBatteryADLoad" | "GripBatteryADNoLoad" | "GripBatteryPercent" | "GripBatteryState" | "GripBatteryVoltage" | "GroupAreaAFIllumination" | "HDMIBitDepth" | "HDMIExternalRecorder" | "HDMIOutputRange" | "HDMIOutputResolution" | "HDR" | "HDREffect" | "HDRGain" | "HDRHeadroom" | "HDRImageType" | "HDRInfoVersion" | "HDRLevel" | "HDRPSoftware" | "HDRSmoothing" | "HiddenDataLength" | "HiddenDataOffset" | "HighFrameRate" | "HighISONoiseReduction" | "Highlight" | "Highlights" | "HighlightShadow" | "HighlightTone" | "HighlightTonePriority" | "HighlightWarning" | "HighLowKeyAdj" | "HighSpeedSync" | "Histogram" | "HometownCity" | "HometownCityCode" | "HometownDST" | "HostSoftwareExportVersion" | "HostSoftwareRendering" | "Hue" | "HueAdjust" | "HueAdjustment" | "HyperlapsDebugInfo" | "Illumination" | "ImageAdjustment" | "ImageArea" | "ImageAuthentication" | "ImageBoundary" | "ImageCaptureType" | "ImageCount" | "ImageData" | "ImageDataSize" | "ImageEditCount" | "ImageEditing" | "ImageEffects" | "ImageGeneration" | "ImageIDNumber" | "ImageName" | "ImageOptimization" | "ImageProcessing" | "ImageProcessingVersion" | "ImageQuality" | "ImageReview" | "ImageReviewMonitorOffTime" | "ImageReviewTime" | "ImageRotated" | "ImageSizeRAW" | "ImageStabilization" | "ImageStabilizationSetting" | "ImageStyle" | "ImageTemperatureMax" | "ImageTemperatureMin" | "ImageTone" | "InfoButtonWhenShooting" | "InfraredIlluminator" | "InitialAFPointAIServoAF" | "InitialAFPointInServo" | "InitialZoomLiveView" | "InitialZoomSetting" | "InitParamsText" | "InstantPlaybackSetup" | "InstantPlaybackTime" | "IntelligentAuto" | "IntelligentContrast" | "IntelligentExposure" | "IntelligentResolution" | "InternalFlash" | "InternalFlashMode" | "InternalFlashStrength" | "InternalFlashTable" | "InternalNDFilter" | "InternalSerialNumber" | "IntervalDurationHours" | "IntervalDurationMinutes" | "IntervalDurationSeconds" | "IntervalExposureSmoothing" | "IntervalLength" | "IntervalMode" | "IntervalNumber" | "IntervalPriority" | "Intervals" | "IntervalShooting" | "ISO2" | "ISOAuto" | "ISOAutoFlashLimit" | "ISOAutoHiLimit" | "ISOAutoMax" | "ISOAutoMin" | "ISOAutoMinSpeed" | "ISOAutoShutterTime" | "ISODisplay" | "ISOExpansion" | "ISOFloor" | "ISOMax" | "ISOMin" | "ISOSelected" | "ISOSelection" | "ISOSensitivityStep" | "ISOSetting" | "ISOSpeedExpansion" | "ISOSpeedIncrements" | "ISOSpeedRange" | "ISOStepSize" | "ISOValue" | "JPEGQuality" | "JPGCompression" | "JpgRecordedPixels" | "KeepExposure" | "KeystoneCompensation" | "KeystoneDirection" | "KeystoneValue" | "KodakImageHeight" | "KodakImageWidth" | "KodakInfoType" | "KodakMake" | "KodakMaker" | "KodakModel" | "KodakVersion" | "Landmark" | "Language" | "LastFileNumber" | "LateralChromaticAberration" | "LCDDisplayAtPowerOn" | "LCDDisplayReturnToShoot" | "LCDIllumination" | "LCDIlluminationDuringBulb" | "LCDPanels" | "LensApertureRange" | "LensControlRing" | "LensDataVersion" | "LensDistortionParams" | "LensDriveNoAF" | "LensDriveWhenAFImpossible" | "LensFirmware" | "LensFirmwareVersion" | "LensFocalLength" | "LensFocalRange" | "LensFocusFunctionButtons" | "LensFormat" | "LensFStops" | "LensFunc1Button" | "LensFunc2Button" | "LensIDNumber" | "LensMaxApertureRange" | "LensModulationOptimizer" | "LensMount" | "LensMountType" | "LensPositionAbsolute" | "LensProfileName" | "LensProperties" | "LensShading" | "LensShutterLock" | "LensSpecFeatures" | "LensTemperature" | "LensType2" | "LensType3" | "LensTypeMake" | "LensTypeModel" | "LensZoomPosition" | "LevelIndicator" | "LevelOrientation" | "LightCondition" | "LightingMode" | "LightReading" | "LightSourceSpecial" | "LightSwitch" | "LightValueCenter" | "LightValuePeriphery" | "LimitAFAreaModeSelection" | "LinearityUpperMargin" | "LinkAEToAFPoint" | "LivePhotoVideoIndex" | "LiveView" | "LiveViewAF" | "LiveViewAFAreaMode" | "LiveViewAFMethod" | "LiveViewAFMode" | "LiveViewButtonOptions" | "LiveViewExposureSimulation" | "LiveViewFocusMode" | "LiveViewMetering" | "LiveViewMonitorOffTime" | "LiveViewShooting" | "LocalLocationName" | "Location" | "LocationInfoVersion" | "LocationName" | "LockMicrophoneButton" | "LoggingMetadataText" | "LongExposureNoiseReduction" | "LongExposureNRUsed" | "LowLightAF" | "LuminanceNoiseAmplitude" | "LuminanceNoiseReduction" | "LVShootingAreaDisplay" | "M16CVersion" | "MacroLED" | "MacroMode" | "MagicFilter" | "MagnifiedView" | "MainDialExposureComp" | "MakerNoteOffset" | "MakerNoteType" | "MakerNoteVersion" | "ManometerPressure" | "ManometerReading" | "ManualAFPointSelectPattern" | "ManualAFPointSelPattern" | "ManualFlash" | "ManualFlashOutput" | "ManualFlashStrength" | "ManualFocusDistance" | "ManualFocusPointIllumination" | "ManualFocusRingInAFMode" | "ManualTv" | "MasterGain" | "MatrixMetering" | "MaxAnalogISO" | "MaxAperture" | "MaxApertureAtMaxFocal" | "MaxApertureAtMinFocal" | "MaxContinuousRelease" | "MaxFaces" | "MaxFocalLength" | "MaxNumAFPoints" | "MCCData" | "MCUVersion" | "MeasuredEV" | "MeasuredLV" | "MeasuredRGGB" | "MeasuredRGGBData" | "MechanicalShutterCount" | "MemoAudioQuality" | "MemoryCardConfiguration" | "MemoryCardNumber" | "MenuButtonDisplayPosition" | "MenuButtonReturn" | "MenuMonitorOffTime" | "MergedImage" | "MergedImages" | "MetaVersion" | "Metering" | "MeteringButton" | "MeteringFrameCount" | "MeteringOffScaleIndicator" | "MeteringTime" | "MeterMode" | "MidRangeSharpness" | "MinAperture" | "MinFocalLength" | "MinFocusDistance" | "MiniatureFilter" | "MiniatureFilterOrientation" | "MiniatureFilterParameter" | "MiniatureFilterPosition" | "MinimumISO" | "MinoltaDate" | "MinoltaImageSize" | "MinoltaModelID" | "MinoltaQuality" | "MinoltaTime" | "MirrorLockup" | "ModeDialPosition" | "ModelingFlash" | "ModelReleaseYear" | "ModifiedColorTemp" | "ModifiedDigitalGain" | "ModifiedParamFlag" | "ModifiedPictureStyle" | "ModifiedSaturation" | "ModifiedSensorBlueLevel" | "ModifiedSensorRedLevel" | "ModifiedSharpness" | "ModifiedSharpnessFreq" | "ModifiedToneCurve" | "ModifiedWhiteBalance" | "ModifiedWhiteBalanceBlue" | "ModifiedWhiteBalanceRed" | "MonitorBrightness" | "MonitorDisplayOff" | "MonitorOffTime" | "MonochromeColor" | "MonochromeFilterEffect" | "MonochromeGrainEffect" | "MonochromeProfileSettings" | "MonochromeToning" | "MonochromeVignetting" | "MonthDayCreated" | "MoonPhase" | "MotionSensitivity" | "MovieAELockButtonAssignment" | "MovieAFAreaMode" | "MovieAFTrackingSensitivity" | "MovieFlickerReduction" | "MovieFunc1Button" | "MovieFunc2Button" | "MovieFunc3Button" | "MovieFunctionButton" | "MovieFunctionButtonPlusDials" | "MovieHighlightDisplayPattern" | "MovieHighlightDisplayThreshold" | "MovieISOAutoControlManualMode" | "MovieISOAutoHiLimit" | "MovieLensControlRing" | "MovieMultiSelector" | "MoviePreviewButton" | "MoviePreviewButtonPlusDials" | "MovieShutterButton" | "MovieSubSelectorAssignment" | "MovieSubSelectorAssignmentPlusDials" | "MovieType" | "MovieWhiteBalanceSameAsPhoto" | "MultiControllerWhileMetering" | "MultiExposure" | "MultiExposureAutoGain" | "MultiExposureControl" | "MultiExposureMode" | "MultiExposureOverlayMode" | "MultiExposureShots" | "MultiExposureVersion" | "MultiFrameNoiseReduction" | "MultiFrameNREffect" | "MultiFunctionLock" | "MultipleExposureMode" | "MultipleExposureSet" | "MultiSelector" | "MultiSelectorLiveView" | "MultiSelectorPlaybackMode" | "MultiSelectorShootMode" | "MyColorMode" | "NDFilter" | "NEFBitDepth" | "NEFCompression" | "NEFLinearizationTable" | "NeutralDensityFilter" | "NikonCaptureVersion" | "NikonImageSize" | "NikonMeteringMode" | "NoiseFilter" | "NoiseReduction" | "NoiseReductionStrength" | "NoMemoryCard" | "NominalMaxAperture" | "NominalMinAperture" | "NormalWhiteLevel" | "NumAFPoints" | "NumberOfFocusPoints" | "NumberOffsets" | "NumCAFPoints" | "NumFaceElements" | "NumFacePositions" | "OISMode" | "OKButton" | "OlympusImageHeight" | "OlympusImageWidth" | "OneTouchWB" | "OpticalVR" | "OpticalZoom" | "OpticalZoomCode" | "OpticalZoomMode" | "OpticalZoomOn" | "OrderNumber" | "OrientationLinkedAF" | "OrientationLinkedAFPoint" | "OriginalDecisionDataOffset" | "OriginalDirectory" | "OriginalFileName" | "OriginalImageHeight" | "OriginalImageWidth" | "OriginalPayloadFrameCount" | "OtherInfo" | "OutputLUT" | "PaintingFilter" | "PanasonicDateTime" | "PanasonicExifVersion" | "PanasonicImageHeight" | "PanasonicImageWidth" | "PanoramaAngle" | "PanoramaCropBottom" | "PanoramaCropLeft" | "PanoramaCropRight" | "PanoramaCropTop" | "PanoramaDirection" | "PanoramaFrameHeight" | "PanoramaFrameWidth" | "PanoramaFullHeight" | "PanoramaFullWidth" | "PanoramaMode" | "PanoramaSize3D" | "PanoramaSourceHeight" | "PanoramaSourceWidth" | "PayloadMetadataText" | "PentaxImageSize" | "PentaxModelID" | "PentaxModelType" | "PerChannelBlackLevel" | "PeripheralIlluminationCorr" | "PeripheralLighting" | "PeripheralLightingSetting" | "PeripheralLightingValue" | "PhotoEffect" | "PhotoIdentifier" | "PhotoInfoPlayback" | "PhotosAppFeatureFlags" | "PhotoShootingMenuBank" | "PhotoShootingMenuBankImageArea" | "PhotoStyle" | "PictureControlAdjust" | "PictureControlBase" | "PictureControlName" | "PictureControlQuickAdjust" | "PictureControlVersion" | "PictureEffect" | "PictureFinish" | "PictureMode" | "PictureModeBWFilter" | "PictureModeContrast" | "PictureModeEffect" | "PictureModeSaturation" | "PictureModeSharpness" | "PictureModeStrength" | "PictureModeTone" | "PictureProfile" | "PictureStyle" | "PictureStylePC" | "PictureStyleUserDef" | "Pitch" | "PitchAngle" | "PixelAspectRatio" | "PixelShiftID" | "PixelShiftInfo" | "PixelShiftResolution" | "PixelShiftShooting" | "PlaybackFlickDown" | "PlaybackFlickUp" | "PlaybackMenusTime" | "PlaybackMonitorOffTime" | "PlaybackZoom" | "PlayDisplay" | "POILevel" | "PopupFlash" | "PortraitImpressionBalance" | "PortraitRefiner" | "PostFocusMerging" | "PostReleaseBurstLength" | "PowerAvailable" | "PowerSource" | "PowerUpTime" | "PreAF" | "PreCaptureFrames" | "PreReleaseBurstLength" | "PresetWhiteBalance" | "PreviewButton" | "PreviewButtonPlusDials" | "PreviewImageBorders" | "PreviewImageValid" | "PrimaryAFPoint" | "PrimarySlot" | "PrioritySetupShutterRelease" | "ProcessingNotes" | "ProductionCode" | "ProgramISO" | "ProgramLine" | "ProgramMode" | "ProgramShift" | "QuickControlDialInMeter" | "QuickShot" | "QuietShutterShootingSpeed" | "RangeFinder" | "RawAndJpgRecording" | "RawBurstImageCount" | "RawBurstImageNum" | "RawDataByteOrder" | "RawDataCFAPattern" | "RawDataLength" | "RawDepth" | "RawDevArtFilter" | "RawDevAutoGradation" | "RawDevColorSpace" | "RawDevContrastValue" | "RawDevEditStatus" | "RawDevelopmentProcess" | "RawDevEngine" | "RawDevExposureBiasValue" | "RawDevGradation" | "RawDevGrayPoint" | "RawDevMemoryColorEmphasis" | "RawDevNoiseReduction" | "RawDevPictureMode" | "RawDevPMContrast" | "RawDevPMNoiseFilter" | "RawDevPMPictureTone" | "RawDevPMSaturation" | "RawDevPMSharpness" | "RawDevSaturationEmphasis" | "RawDevSettings" | "RawDevSharpnessValue" | "RawDevVersion" | "RawDevWBFineAdjustment" | "RawDevWhiteBalance" | "RawDevWhiteBalanceValue" | "RAWFileType" | "RawImageCenter" | "RawImageHeight" | "RawImageWidth" | "RawJpgQuality" | "RawJpgSize" | "RawMeasuredRGGB" | "RearControPanelDisplay" | "RearDisplay" | "RecordDisplay" | "RecordID" | "RecordingFormat" | "RecordingMode" | "RecordMode" | "RecordShutterRelease" | "RectifaceText" | "RedEyeRemoval" | "RedGain" | "ReleaseButtonToUseDial" | "ReleaseMode" | "RemoteFuncButton" | "RemoteOnDuration" | "RepeatingFlashCount" | "RepeatingFlashOutput" | "RepeatingFlashOutputExternal" | "RepeatingFlashRate" | "Resaved" | "ResolutionMode" | "RestrictDriveModes" | "RetouchHistory" | "RetouchInfoVersion" | "RetouchNEFProcessing" | "RetractLensOnPowerOff" | "ReverseExposureCompDial" | "ReverseFocusRing" | "ReverseIndicators" | "ReverseShutterSpeedAperture" | "RFLensMFFocusRingSensitivity" | "RFLensType" | "RicohDate" | "RicohImageHeight" | "RicohImageWidth" | "RicohMake" | "RicohModel" | "Roll" | "RollAngle" | "ROMOperationMode" | "RunTimeEpoch" | "RunTimeFlags" | "RunTimeScale" | "RunTimeValue" | "SafetyShift" | "SafetyShiftInAvOrTv" | "SameExposureForNewAperture" | "SamsungModelID" | "SanyoQuality" | "SanyoThumbnail" | "SaturationAdj" | "SaturationAuto" | "SaturationFaithful" | "SaturationLandscape" | "SaturationNeutral" | "SaturationPortrait" | "SaturationSetting" | "SaturationStandard" | "SaveFocus" | "ScanImageEnhancer" | "SceneAssist" | "SceneDetect" | "SceneMode" | "SceneModeUsed" | "SceneRecognition" | "SceneSelect" | "ScreenTips" | "SecondarySlotFunction" | "SelectableAFPoint" | "SelectAFAreaSelectionMode" | "SelectAFAreaSelectMode" | "SelfTimer" | "SelfTimerInterval" | "SelfTimerShotCount" | "SelfTimerShotInterval" | "SelfTimerTime" | "SemanticStyle" | "SemanticStylePreset" | "SemanticStyleRenderingVer" | "SensitivityAdjust" | "SensitivitySteps" | "Sensor" | "SensorBitDepth" | "SensorBlueLevel" | "SensorCalibration" | "SensorCleaning" | "SensorFullHeight" | "SensorFullWidth" | "SensorID" | "SensorPixelSize" | "SensorRedLevel" | "SensorSize" | "SensorTemperature" | "Sequence" | "SequenceFileNumber" | "SequenceImageNumber" | "SequenceLength" | "SequenceNumber" | "SequenceShotInterval" | "SequentialShot" | "SerialNumberFormat" | "ServoAFCharacteristics" | "SetButtonCrossKeysFunc" | "SetButtonWhenShooting" | "SetFunctionWhenShooting" | "ShadingCompensation" | "Shadow" | "ShadowCorrection" | "Shadows" | "ShadowTone" | "ShakeReduction" | "Sharpening" | "SharpnessAuto" | "SharpnessFactor" | "SharpnessFaithful" | "SharpnessFreqTable" | "SharpnessFrequency" | "SharpnessLandscape" | "SharpnessMonochrome" | "SharpnessNeutral" | "SharpnessPortrait" | "SharpnessRange" | "SharpnessSetting" | "SharpnessStandard" | "SharpnessTable" | "ShootingInfoDisplay" | "ShootingInfoMonitorOffTime" | "ShootingModeSetting" | "ShortOwnerName" | "ShortReleaseTimeLag" | "ShotInfoVersion" | "ShotLogDataText" | "ShotNumber" | "ShotNumberSincePowerUp" | "ShotParamsText" | "ShotsPerInterval" | "Shutter" | "ShutterAELButton" | "ShutterButtonAFOnButton" | "ShutterCount" | "ShutterCount2" | "ShutterCount3" | "ShutterCurtainSync" | "ShutterMode" | "ShutterReleaseMethod" | "ShutterReleaseNoCFCard" | "ShutterReleaseTiming" | "ShutterReleaseWithoutLens" | "ShutterSpeedLock" | "ShutterSpeedRange" | "ShutterSpeedSetting" | "ShutterType" | "SignalToNoiseRatio" | "SilentPhotography" | "SingleFrame" | "SingleFrameBracketing" | "SkinToneCorrection" | "SlaveFlashMeteringSegments" | "SlowShutter" | "SlowSync" | "SmartAlbumColor" | "SmileShutter" | "SmileShutterMode" | "SoftFocusFilter" | "SoftSkinEffect" | "SoftwareDate" | "SonyDateTime" | "SonyDateTime2" | "SonyExposureTime" | "SonyFNumber" | "SonyImageHeight" | "SonyImageHeightMax" | "SonyImageSize" | "SonyImageWidth" | "SonyImageWidthMax" | "SonyISO" | "SonyMaxAperture" | "SonyMaxApertureValue" | "SonyMinAperture" | "SonyModelID" | "SonyQuality" | "SonyTimeMinSec" | "SourceDirectoryIndex" | "SourceFileIndex" | "SpecialEffectLevel" | "SpecialEffectMode" | "SpecialEffectSetting" | "SpecialMode" | "SpecularWhiteLevel" | "SpeedX" | "SpeedY" | "SpeedZ" | "SportEvents" | "SpotFocusPointX" | "SpotFocusPointY" | "SpotMeteringMode" | "SpotMeterLinkToAFPoint" | "SRActive" | "SRAWQuality" | "SRFocalLength" | "SRHalfPressTime" | "SRResult" | "StackedImage" | "StandbyMonitorOffTime" | "StandbyTimer" | "StartMovieShooting" | "StaticMetadataText" | "StepCropShooting" | "StopsAboveBaseISO" | "StorageMethod" | "StoreByOrientation" | "SubDialFrameAdvance" | "SubjectDetectArea" | "SubjectDetectDetail" | "SubjectDetectFrameSize" | "SubjectDetection" | "SubjectDetectionAreaMF" | "SubjectDetectStatus" | "SubjectMotion" | "SubjectProgram" | "SubjectRecognition" | "SubjectSwitching" | "SubjectToDetect" | "SubSelector" | "SubSelectorAssignment" | "SubSelectorCenter" | "SubSelectorPlusDials" | "SummaryText" | "SuperimposedDisplay" | "SuperMacro" | "SvISOSetting" | "SweepPanoramaDirection" | "SweepPanoramaFieldOfView" | "SweepPanoramaSize" | "SwitchToRegisteredAFPoint" | "SyncReleaseMode" | "TargetAperture" | "TargetCompressionRatio" | "TargetDistanceSetting" | "TargetExposureTime" | "TargetImageType" | "Teleconverter" | "TextEncoding" | "TextStamp" | "ThumbnailFileName" | "ThumbnailImageValidArea" | "TiffMeteringImage" | "TiffMeteringImageHeight" | "TiffMeteringImageWidth" | "Time" | "TimeLapseShotNumber" | "TimeLogText" | "TimerFunctionButton" | "TimerLength" | "TimerRecording" | "TimeSincePowerOn" | "TimeStamp" | "TimeZone" | "TimeZoneCity" | "TimeZoneCode" | "TimeZoneInfo" | "Title" | "ToneComp" | "ToneCurve" | "ToneCurveMatching" | "ToneCurveTable" | "ToneLevel" | "ToningEffect" | "ToningEffectAuto" | "ToningEffectMonochrome" | "ToningSaturation" | "TotalZoom" | "TouchAE" | "ToyCameraFilter" | "Transform" | "TrashButtonFunction" | "TravelDay" | "TriggerMode" | "TvExposureTimeSetting" | "UniqueID" | "UnknownNumber" | "UnsharpMaskFineness" | "UnsharpMaskThreshold" | "UnusedLoggingMetadata" | "UsableMeteringModes" | "UsableShootingModes" | "USBPowerDelivery" | "UserDef1PictureStyle" | "UserDef2PictureStyle" | "UserDef3PictureStyle" | "UserLabel" | "UserProfile" | "USMLensElectronicMF" | "ValidAFPoints" | "ValidBits" | "VariableLowPassFilter" | "VariProgram" | "VerticalAFOnButton" | "VerticalFuncButton" | "VerticalFuncButtonPlusDials" | "VerticalMovieAFOnButton" | "VerticalMovieFuncButton" | "VerticalMultiSelector" | "VFDisplayIllumination" | "VibrationReduction" | "VideoBurstMode" | "VideoBurstResolution" | "VideoFrameRate" | "VideoPreburst" | "ViewfinderDisplay" | "ViewfinderWarning" | "ViewfinderWarnings" | "ViewInfoDuringExposure" | "ViewingMode" | "Vignette" | "VignetteControl" | "VignetteCorrectionVersion" | "Vignetting" | "VignettingCorrVersion" | "VoiceMemo" | "VRDOffset" | "VRInfoVersion" | "VRMode" | "VRType" | "WatercolorFilter" | "WBBlue" | "WBBracketingSteps" | "WBBracketMode" | "WBBracketShotNumber" | "WBBracketValueAB" | "WBBracketValueGM" | "WBButtonPlaybackMode" | "WBGreen" | "WBMediaImageSizeSetting" | "WBMode" | "WBRed" | "WBScale" | "WBShiftAB" | "WBShiftCreativeControl" | "WBShiftGM" | "WBShiftIntelligentAuto" | "WhiteBalanceAutoAdjustment" | "WhiteBalanceBias" | "WhiteBalanceBlue" | "WhiteBalanceBracket" | "WhiteBalanceBracketing" | "WhiteBalanceFineTune" | "WhiteBalanceMatching" | "WhiteBalanceMode" | "WhiteBalanceRed" | "WhiteBalanceSet" | "WhiteBalanceSetting" | "WhiteBalanceSetup" | "WhiteBalanceTable" | "WhiteBalanceTemperature" | "WhiteBoard" | "WholeAreaTracking" | "WideAdapter" | "WideFocusZone" | "WideRange" | "WorldTimeLocation" | "X3FillLight" | "Xidiri" | "Yaw" | "YawAngle" | "YearCreated" | "ZoneMatching" | "ZoneMatchingMode" | "ZoneMatchingOn" | "ZoneMatchingValue" | "ZoomedPreviewImage" | "ZoomedPreviewLength" | "ZoomedPreviewSize" | "ZoomedPreviewStart" | "ZoomSourceWidth" | "ZoomStepCount" | "ZoomTargetWidth">;
|
|
16275
|
+
export declare const MakerNotesTagsNames: StrEnum<"AmbientTemperature" | "Aperture" | "AutoISOMax" | "Barcode" | "CameraModel" | "CameraType" | "ColorMode" | "ColorSpace" | "Compass" | "Compression" | "DateTimeOriginal" | "DigitalZoom" | "DigitalZoomOn" | "Emissivity" | "ExposureCompensation" | "ExposureTime" | "FirmwareVersion" | "Flash" | "FNumber" | "FocusDistance" | "FocusMode" | "FocusStepCount" | "FrameRate" | "Gain" | "HDRSetting" | "ImageHeight" | "ImageWidth" | "LensModel" | "LensSerialNumber" | "Macro" | "Model" | "ObjectDistance" | "PreviewImageHeight" | "PreviewImageWidth" | "PreviewQuality" | "Quality" | "Resolution" | "ResolutionUnit" | "SerialNumber" | "Sharpness" | "Version" | "WhiteBalance" | "XResolution" | "YResolution" | "BlueBalance" | "Copyright" | "Country" | "CreateDate" | "DriveMode" | "ExtenderStatus" | "FileNumber" | "FlashType" | "ISO" | "Lens" | "LensID" | "LensSpec" | "LensType" | "PhaseDetectAF" | "PreviewImage" | "PreviewImageSize" | "Rating" | "RedBalance" | "RedEyeReduction" | "Rotation" | "ShootingMode" | "ShutterSpeed" | "State" | "ApertureValue" | "Artist" | "BlackLevel" | "BrightnessValue" | "ChromaticAberrationCorrection" | "ChromaticAberrationCorrParams" | "Contrast" | "CropLeft" | "CropTop" | "CustomRendered" | "DigitalZoomRatio" | "DistortionCorrection" | "DistortionCorrParams" | "ExposureMode" | "ExposureProgram" | "FileSource" | "FocalLength" | "ImageNumber" | "ImageUniqueID" | "LensInfo" | "LightSource" | "Make" | "MeteringMode" | "OwnerName" | "PreviewImageLength" | "PreviewImageStart" | "Saturation" | "SensorBottomBorder" | "SensorHeight" | "SensorLeftBorder" | "SensorRightBorder" | "SensorTopBorder" | "SensorWidth" | "ShutterSpeedValue" | "Software" | "ThumbnailImage" | "ThumbnailLength" | "VignettingCorrection" | "VignettingCorrParams" | "WBBlueLevel" | "WBGreenLevel" | "WBRedLevel" | "WhiteLevel" | "WhitePoint" | "YCbCrCoefficients" | "YCbCrPositioning" | "BitDepth" | "TimeCreated" | "ThumbnailHeight" | "ThumbnailWidth" | "SensorType" | "AccelerationTracking" | "AccelerationVector" | "Accelerometer" | "AccelerometerX" | "AccelerometerY" | "AccelerometerZ" | "AccessorySerialNumber" | "AccessoryType" | "ActionInAFCCont" | "ActionPriority" | "ActualCompensation" | "AddIPTCInformation" | "AddOriginalDecisionData" | "ADJDebugInfo" | "AdjustmentMode" | "ADLBracketingStep" | "ADLBracketingType" | "AdvancedFilter" | "AdvancedSceneType" | "AEAperture" | "AEApertureSteps" | "AEAverage" | "AEBAutoCancel" | "AEBBracketValue" | "AEBracketingSteps" | "AEBSequence" | "AEBSequenceAutoCancel" | "AEBShotCount" | "AEBXv" | "AEDebugInfo" | "AEExposureTime" | "AEHistogramInfo" | "AELButton" | "AELExposureIndicator" | "AELiveViewHistogramInfo" | "AELiveViewLocalHistogram" | "AELocalHistogram" | "AELock" | "AELockButton" | "AELockButtonPlusDials" | "AELockMeterModeAfterFocus" | "AEMaxAperture" | "AEMeteringMode" | "AEMeteringSegments" | "AEMicroadjustment" | "AEMinAperture" | "AEMinExposureTime" | "AEProgramMode" | "AESetting" | "AEStable" | "AETarget" | "AEWhiteBalance" | "AEXv" | "AFActivation" | "AFAdjustment" | "AFAndMeteringButtons" | "AFAperture" | "AFAreaHeight" | "AFAreaHeights" | "AFAreaIllumination" | "AFAreaMode" | "AFAreaModeSetting" | "AFAreaPointSize" | "AFAreas" | "AFAreaSelectMethod" | "AFAreaSize" | "AFAreaWidth" | "AFAreaWidths" | "AFAreaXPosition" | "AFAreaXPositions" | "AFAreaYPosition" | "AFAreaYPositions" | "AFAreaZoneSize" | "AFAssist" | "AFAssistBeam" | "AFAssistLamp" | "AFButtonPressed" | "AFCHold" | "AFConfidence" | "AFCoordinatesAvailable" | "AFCPointTracking" | "AFCSensitivity" | "AFDebugInfo" | "AFDefocus" | "AFDetectionMethod" | "AFDuringLiveView" | "AFFineTune" | "AFFineTuneAdj" | "AFFineTuneAdjTele" | "AFFineTuneIndex" | "AFFocusArea" | "AFFrameSize" | "AFIlluminator" | "AFImageHeight" | "AFImageWidth" | "AFInfo2Version" | "AFIntegrationTime" | "AFMeasuredDepth" | "AFMicroAdj" | "AFMicroAdjMode" | "AFMicroAdjRegisteredLenses" | "AFMicroadjustment" | "AFMicroAdjValue" | "AFMode" | "AFModeRestrictions" | "AFOnAELockButtonSwitch" | "AFOnButton" | "AFPerformance" | "AFPoint" | "AFPointActivationArea" | "AFPointAreaExpansion" | "AFPointAtShutterRelease" | "AFPointAutoSelection" | "AFPointBrightness" | "AFPointDetails" | "AFPointDisplayDuringFocus" | "AFPointIllumination" | "AFPointInFocus" | "AFPointMode" | "AFPointPosition" | "AFPointRegistration" | "AFPoints" | "AFPointSel" | "AFPointSelected" | "AFPointSelection" | "AFPointSelectionMethod" | "AFPointSetting" | "AFPointsInFocus" | "AFPointsInFocus1D" | "AFPointsInFocus5D" | "AFPointSpotMetering" | "AFPointsSelected" | "AFPointsSpecial" | "AFPointsUsed" | "AFPredictor" | "AFTracking" | "AFType" | "AFWithShutter" | "AIServoContinuousShooting" | "AIServoFirstImagePriority" | "AIServoImagePriority" | "AIServoSecondImagePriority" | "AIServoTrackingMethod" | "AIServoTrackingSensitivity" | "AISubjectTrackingMode" | "Altitude" | "AmbienceSelection" | "AmbientTemperatureFahrenheit" | "AndroidRelease" | "AntiFlicker" | "AntiShockWaitingTime" | "ApertureLock" | "ApertureRange" | "ApertureRingUse" | "ApertureSetting" | "Application" | "ApplySettingsToLiveView" | "ApplyShootingMeteringMode" | "ApproximateFNumber" | "AppVersion" | "ArtFilter" | "ArtFilterEffect" | "ArtMode" | "ArtModeParameters" | "AspectFrame" | "AspectRatio" | "AssignBktButton" | "AssignFuncButton" | "AssignMovieFunc1ButtonPlusDials" | "AssignMovieFunc2Button" | "AssignMoviePreviewButtonPlusDials" | "AssignMovieRecordButton" | "AssignMovieRecordButtonPlusDials" | "AssignMovieSubselector" | "AssignMovieSubselectorPlusDials" | "AssignRemoteFnButton" | "AssistButtonFunction" | "Audio" | "AudioCompression" | "AutoAFPointColorTracking" | "AutoAFPointSelEOSiTRAF" | "AutoAperture" | "AutoBracket" | "AutoBracketing" | "AutoBracketingMode" | "AutoBracketingSet" | "AutoBracketModeM" | "AutoBracketOrder" | "AutoBracketSet" | "AutoDistortionControl" | "AutoDynamicRange" | "AutoExposureBracketing" | "AutoFlashISOSensitivity" | "AutoFocusModeRestrictions" | "AutoFP" | "AutoISO" | "AutoISOMinShutterSpeed" | "AutoLightingOptimizer" | "AutoPortraitFramed" | "AutoRotate" | "AuxiliaryLens" | "AvApertureSetting" | "AverageBlackLevel" | "AverageLV" | "AvSettingWithoutLens" | "BabyAge" | "BabyName" | "BarometerInfoVersion" | "BaseExposureCompensation" | "BaseISO" | "BatteryLevel" | "BatteryOrder" | "BatteryState" | "BatteryTemperature" | "BatteryType" | "BatteryVoltage" | "BayerPattern" | "Beep" | "BeepPitch" | "BeepVolume" | "BestShotMode" | "BlackLevels" | "BlackMaskBottomBorder" | "BlackMaskLeftBorder" | "BlackMaskRightBorder" | "BlackMaskTopBorder" | "BlackPoint" | "BleachBypassToning" | "BlueGain" | "BlurControl" | "BlurWarning" | "BoardTemperature" | "BodyBatteryADLoad" | "BodyBatteryADNoLoad" | "BodyBatteryPercent" | "BodyBatteryState" | "BodyBatteryVoltage" | "BodyFirmware" | "BodyFirmwareVersion" | "BodySerialNumber" | "BracketIncrement" | "BracketingBurstOptions" | "BracketMode" | "BracketProgram" | "BracketSequence" | "BracketSet" | "BracketSettings" | "BracketShotNumber" | "BracketStep" | "BracketValue" | "Brightness" | "BuildNumber" | "BulbDuration" | "BurstGroupID" | "BurstMode" | "BurstShot" | "BurstSpeed" | "BurstUUID" | "ButtonFunctionControlOff" | "BWFilter" | "BWMode" | "CAFArea" | "CAFGridSize" | "CAFPointsInFocus" | "CAFPointsSelected" | "Calibration" | "CameraDateTime" | "CameraID" | "CameraISO" | "CameraOrientation" | "CameraParameters" | "CameraPictureStyle" | "CameraPitch" | "CameraRoll" | "CameraSettingsVersion" | "CameraYaw" | "CanonExposureMode" | "CanonFileDescription" | "CanonFileLength" | "CanonFirmwareVersion" | "CanonFlashMode" | "CanonImageHeight" | "CanonImageSize" | "CanonImageType" | "CanonImageWidth" | "CanonModelID" | "CardShutterLock" | "CaseAutoSetting" | "Categories" | "CCDBoardVersion" | "CCDScanMode" | "CCDSensitivity" | "CCDVersion" | "CenterAFArea" | "CenterFocusPoint" | "CenterWeightedAreaSize" | "CHModeShootingSpeed" | "ChromaticAberrationCorr" | "ChromaticAberrationSetting" | "ChrominanceNoiseReduction" | "City2" | "Clarity" | "ClarityControl" | "ClearRetouch" | "CmdDialsApertureSetting" | "CmdDialsChangeMainSub" | "CmdDialsMenuAndPlayback" | "CmdDialsReverseRotation" | "CmdDialsReverseRotExposureComp" | "ColorAdjustment" | "ColorAdjustmentMode" | "ColorBalanceBlue" | "ColorBalanceGreen" | "ColorBalanceRed" | "ColorBalanceVersion" | "ColorBitDepth" | "ColorBW" | "ColorChromeEffect" | "ColorChromeFXBlue" | "ColorCompensationFilter" | "ColorCompensationFilterCustom" | "ColorCompensationFilterSet" | "ColorControl" | "ColorCreatorEffect" | "ColorDataVersion" | "ColorEffect" | "ColorFilter" | "ColorGain" | "ColorHue" | "ColorMatrix" | "ColorMatrixA" | "ColorMatrixB" | "ColorMatrixNumber" | "ColorProfileSettings" | "ColorTempAsShot" | "ColorTempAuto" | "ColorTempCloudy" | "ColorTempCustom" | "ColorTempDaylight" | "ColorTemperature" | "ColorTemperatureAuto" | "ColorTemperatureCustom" | "ColorTemperatureSet" | "ColorTemperatureSetting" | "ColorTempFlash" | "ColorTempFluorescent" | "ColorTempKelvin" | "ColorTempMeasured" | "ColorTempShade" | "ColorTempTungsten" | "ColorTint" | "ColorTone" | "ColorToneAuto" | "ColorToneFaithful" | "ColorToneLandscape" | "ColorToneNeutral" | "ColorTonePortrait" | "ColorToneStandard" | "CommandDials" | "CommandDialsApertureSetting" | "CommandDialsChangeMainSub" | "CommandDialsMenuAndPlayback" | "CommandDialsReverseRotation" | "CommanderChannel" | "CommanderGroupAManualOutput" | "CommanderGroupAMode" | "CommanderGroupBManualOutput" | "CommanderGroupBMode" | "CommanderInternalFlash" | "CommanderInternalManualOutput" | "CommanderInternalTTLComp" | "CommanderInternalTTLCompBuiltin" | "CommanderInternalTTLCompGroupA" | "CommanderInternalTTLCompGroupB" | "ComponentBitDepth" | "ComponentVersion" | "CompositeImageMode" | "CompositionAdjust" | "CompositionAdjustRotation" | "CompositionAdjustX" | "CompositionAdjustY" | "CompressedImageSize" | "CompressionFactor" | "CompressionRatio" | "CompressorVersion" | "ContentIdentifier" | "ContinuousBracketing" | "ContinuousDrive" | "ContinuousModeDisplay" | "ContinuousModeLiveView" | "ContinuousShootingSpeed" | "ContinuousShotLimit" | "ContrastAuto" | "ContrastCurve" | "ContrastDetectAFArea" | "ContrastDetectAFInFocus" | "ContrastFaithful" | "ContrastHighlight" | "ContrastHighlightShadowAdj" | "ContrastLandscape" | "ContrastMode" | "ContrastMonochrome" | "ContrastNeutral" | "ContrastPortrait" | "ContrastSetting" | "ContrastShadow" | "ContrastStandard" | "ControlDialSet" | "ControllerBoardVersion" | "ControlMode" | "ControlRingResponse" | "ControlRingRotation" | "ConversionLens" | "Converter" | "CoringFilter" | "CorrelatedColorTemp" | "CountryCode" | "CPUFirmwareVersion" | "CPUVersions" | "CreativeStyle" | "CreativeStyleSetting" | "CropArea" | "CropBottomMargin" | "CropHeight" | "CropHiSpeed" | "CropLeftMargin" | "CropMode" | "CroppedImageHeight" | "CroppedImageLeft" | "CroppedImageTop" | "CroppedImageWidth" | "CropRightMargin" | "CropTopMargin" | "CropWidth" | "CrossProcess" | "CustomControls" | "CustomizeDials" | "CustomPictureStyleFileName" | "CustomSaturation" | "CustomSettingsAllDefault" | "CustomSettingsBank" | "CustomWBBlueLevel" | "CustomWBError" | "CustomWBGreenLevel" | "CustomWBRedLevel" | "CustomWBSetting" | "DarkFocusEnvironment" | "DataDump" | "DataScaling" | "Date" | "DateDisplayFormat" | "DateImprint" | "DateStampMode" | "DateTimeStamp" | "DateTimeUTC" | "DaylightSavings" | "DECPosition" | "DefaultEraseOption" | "DeletedImageCount" | "DestinationCity" | "DestinationCityCode" | "DestinationDST" | "DevelopmentDynamicRange" | "DeviceCodename" | "DeviceHardwareRevision" | "DeviceMake" | "DeviceType" | "DialDirectionTvAv" | "DiffractionCompensation" | "DiffractionCorrection" | "DigitalFilter" | "DigitalGain" | "DigitalICE" | "DigitalLensOptimizer" | "DigitalLensOptimizerSetting" | "DirectoryIndex" | "DirectoryNumber" | "DispButton" | "DisplayAllAFPoints" | "DisplayAperture" | "DistortionControl" | "DistortionCorrectionSetting" | "DistortionCorrectionValue" | "DistortionCorrectionVersion" | "DistortionCorrParamsPresent" | "DriveModeSetting" | "DriveSpeed" | "DSPFirmwareVersion" | "DualPixelRaw" | "DustRemovalData" | "DXCropAlert" | "DynamicAFArea" | "DynamicAreaAFAssist" | "DynamicAreaAFDisplay" | "DynamicRange" | "DynamicRangeBoost" | "DynamicRangeExpansion" | "DynamicRangeOptimizer" | "DynamicRangeOptimizerBracket" | "DynamicRangeOptimizerLevel" | "DynamicRangeOptimizerMode" | "DynamicRangeOptimizerSetting" | "DynamicRangeSetting" | "EasyExposureComp" | "EasyExposureCompensation" | "EasyMode" | "EffectiveLV" | "EffectiveMaxAperture" | "ElectronicFrontCurtainShutter" | "EnergySavingMode" | "Enhancement" | "Enhancer" | "EpsonImageHeight" | "EpsonImageWidth" | "EpsonSoftware" | "EquipmentVersion" | "ETTLII" | "EventNumber" | "EVSteps" | "EVStepSize" | "ExitPupilPosition" | "ExposureBracketingIndicatorLast" | "ExposureBracketShotNumber" | "ExposureBracketStepSize" | "ExposureBracketValue" | "ExposureCompAutoCancel" | "ExposureCompensationMode" | "ExposureCompensationSet" | "ExposureCompensationSetting" | "ExposureCompStepSize" | "ExposureControlStep" | "ExposureControlStepSize" | "ExposureCount" | "ExposureDelayMode" | "ExposureDifference" | "ExposureIndicator" | "ExposureLevelIncrements" | "ExposureModeInManual" | "ExposureShift" | "ExposureStandardAdjustment" | "ExposureTimeMax" | "ExposureTimeMin" | "ExposureTuning" | "ExposureWarning" | "EXRAuto" | "EXRMode" | "ExtendedMenuBanks" | "ExtendedShutterSpeeds" | "ExtendedWBDetect" | "Extender" | "ExtenderFirmwareVersion" | "ExtenderModel" | "ExtenderSerialNumber" | "ExternalFlash" | "ExternalFlashBounce" | "ExternalFlashCompensation" | "ExternalFlashExposureComp" | "ExternalFlashFirmware" | "ExternalFlashFlags" | "ExternalFlashGuideNumber" | "ExternalFlashGValue" | "ExternalFlashMode" | "ExternalFlashReadyState" | "ExternalFlashStatus" | "ExternalFlashZoom" | "ExternalFlashZoomOverride" | "ExternalSensorBrightnessValue" | "ExtraInfoVersion" | "EyeDetection" | "EyeStartAF" | "FaceDetect" | "FaceDetectArea" | "FaceDetectFrameCrop" | "FaceDetectFrameSize" | "FaceDetection" | "FaceElementPositions" | "FaceElementSelected" | "FaceElementTypes" | "FaceImageSize" | "FaceInfoLength" | "FaceInfoOffset" | "FaceName" | "FacePosition" | "FacePositions" | "FaceRecognition" | "FacesDetected" | "FacesDetectedA" | "FacesDetectedB" | "FacesRecognized" | "FaceWidth" | "Fade" | "FEMicroadjustment" | "FileFormat" | "FileIndex" | "FileInfoVersion" | "FileNumberMemory" | "FileNumberSequence" | "FillFlashAutoReduction" | "FilmGrainEffect" | "FilmMode" | "FilmType" | "FilterEffect" | "FilterEffectAuto" | "FilterEffectMonochrome" | "FinderDisplayDuringExposure" | "FineSharpness" | "FineTuneOptCenterWeighted" | "FineTuneOptHighlightWeighted" | "FineTuneOptMatrixMetering" | "FinishedImage" | "Firmware" | "FirmwareDate" | "FirmwareID" | "FirmwareName" | "FirmwareRevision" | "FirstFrameActionInAFC" | "FisheyeFilter" | "FlashAction" | "FlashActionExternal" | "FlashActivity" | "FlashBatteryLevel" | "FlashBias" | "FlashBits" | "FlashBurstPriority" | "FlashButtonFunction" | "FlashChargeLevel" | "FlashColorFilter" | "FlashCommanderMode" | "FlashCompensation" | "FlashControl" | "FlashControlMode" | "FlashCurtain" | "FlashDefault" | "FlashDevice" | "FlashDistance" | "FlashExposureBracketValue" | "FlashExposureComp" | "FlashExposureCompArea" | "FlashExposureCompSet" | "FlashExposureIndicator" | "FlashExposureIndicatorLast" | "FlashExposureIndicatorNext" | "FlashExposureLock" | "FlashFired" | "FlashFiring" | "FlashFirmwareVersion" | "FlashFocalLength" | "FlashFunction" | "FlashGNDistance" | "FlashGroupACompensation" | "FlashGroupAControlMode" | "FlashGroupBCompensation" | "FlashGroupBControlMode" | "FlashGroupCCompensation" | "FlashGroupCControlMode" | "FlashGuideNumber" | "FlashIlluminationPattern" | "FlashInfoVersion" | "FlashIntensity" | "FlashLevel" | "FlashMasterControlMode" | "FlashMetering" | "FlashMeteringMode" | "FlashMeteringSegments" | "FlashMode" | "FlashModel" | "FlashOptions" | "FlashOutput" | "FlashRemoteControl" | "FlashSerialNumber" | "FlashSetting" | "FlashSource" | "FlashStatus" | "FlashStatusExternal" | "FlashSyncMode" | "FlashSyncSpeed" | "FlashSyncSpeedAv" | "FlashThreshold" | "FlashWarning" | "FlexibleSpotPosition" | "FlickAdvanceDirection" | "FlickerReduce" | "FlickerReduction" | "FlickerReductionIndicator" | "FlickerReductionShooting" | "FlightDegree" | "FlightSpeed" | "FocalLengthTeleZoom" | "FocalPlaneAFPointArea" | "FocalPlaneDiagonal" | "FocalPlaneXSize" | "FocalPlaneYSize" | "FocalType" | "FocalUnits" | "FocusArea" | "FocusAreaSelection" | "FocusBracket" | "FocusBracketing" | "FocusBracketingCropDepthComposite" | "FocusBracketingDepthComposite" | "FocusBracketingExposureSmoothing" | "FocusBracketingFlashInterval" | "FocusBracketingFocusIncrement" | "FocusBracketingImageCount" | "FocusBracketStepSize" | "FocusContinuous" | "FocusDisplayAIServoAndMF" | "FocusDistanceLower" | "FocusDistanceRange" | "FocusDistanceUpper" | "FocusFrameSize" | "FocusHoldButton" | "FocusInfoVersion" | "FocusingScreen" | "FocusLocation" | "FocusLocked" | "FocusModeSetting" | "FocusModeSwitch" | "FocusPeakingHighlightColor" | "FocusPeakingLevel" | "FocusPixel" | "FocusPointBrightness" | "FocusPointPersistence" | "FocusPointSchema" | "FocusPointSelectionSpeed" | "FocusPointWrap" | "FocusPosition" | "FocusPositionHorizontal" | "FocusPositionVertical" | "FocusProcess" | "FocusRange" | "FocusRangeIndex" | "FocusResult" | "FocusRingRotation" | "FocusSetting" | "FocusShiftExposureLock" | "FocusShiftInterval" | "FocusShiftNumberShots" | "FocusShiftShooting" | "FocusShiftStepWidth" | "FocusStatus" | "FocusStepInfinity" | "FocusStepNear" | "FocusTrackingLockOn" | "FocusWarning" | "FolderName" | "FolderNumber" | "FrameCount" | "FrameNumber" | "FramingGridDisplay" | "FreeBytes" | "FreeMemoryCardImages" | "FujiFlashMode" | "FujiModel" | "FullImageSize" | "FullPressSnap" | "Func1Button" | "Func1ButtonPlusDials" | "Func2Button" | "Func3Button" | "FuncButton" | "FuncButtonPlusDials" | "FunctionButton" | "GainBase" | "GEImageSize" | "GEMake" | "GEModel" | "GimbalDegree" | "Gradation" | "GrainEffectRoughness" | "GrainEffectSize" | "GrainyBWFilter" | "GreenGain" | "GridDisplay" | "GripBatteryADLoad" | "GripBatteryADNoLoad" | "GripBatteryPercent" | "GripBatteryState" | "GripBatteryVoltage" | "GroupAreaAFIllumination" | "HDMIBitDepth" | "HDMIExternalRecorder" | "HDMIOutputRange" | "HDMIOutputResolution" | "HDR" | "HDREffect" | "HDRGain" | "HDRHeadroom" | "HDRImageType" | "HDRInfoVersion" | "HDRLevel" | "HDRPSoftware" | "HDRSmoothing" | "HiddenDataLength" | "HiddenDataOffset" | "HighFrameRate" | "HighISONoiseReduction" | "Highlight" | "Highlights" | "HighlightShadow" | "HighlightTone" | "HighlightTonePriority" | "HighlightWarning" | "HighLowKeyAdj" | "HighSpeedSync" | "Histogram" | "HometownCity" | "HometownCityCode" | "HometownDST" | "HostSoftwareExportVersion" | "HostSoftwareRendering" | "Hue" | "HueAdjust" | "HueAdjustment" | "HybridLogGamma" | "HyperlapsDebugInfo" | "Illumination" | "ImageAdjustment" | "ImageArea" | "ImageAuthentication" | "ImageBoundary" | "ImageCaptureType" | "ImageCount" | "ImageData" | "ImageDataSize" | "ImageEditCount" | "ImageEditing" | "ImageEffects" | "ImageGeneration" | "ImageIDNumber" | "ImageName" | "ImageOptimization" | "ImageProcessing" | "ImageProcessingVersion" | "ImageQuality" | "ImageReview" | "ImageReviewMonitorOffTime" | "ImageReviewTime" | "ImageRotated" | "ImageSizeRAW" | "ImageStabilization" | "ImageStabilizationSetting" | "ImageStyle" | "ImageTemperatureMax" | "ImageTemperatureMin" | "ImageTone" | "InfoButtonWhenShooting" | "InfraredIlluminator" | "InitialAFPointAIServoAF" | "InitialAFPointInServo" | "InitialZoomLiveView" | "InitialZoomSetting" | "InitParamsText" | "InstantPlaybackSetup" | "InstantPlaybackTime" | "IntelligentAuto" | "IntelligentContrast" | "IntelligentExposure" | "IntelligentResolution" | "InternalFlash" | "InternalFlashMode" | "InternalFlashStrength" | "InternalFlashTable" | "InternalSerialNumber" | "IntervalDurationHours" | "IntervalDurationMinutes" | "IntervalDurationSeconds" | "IntervalExposureSmoothing" | "IntervalLength" | "IntervalMode" | "IntervalNumber" | "IntervalPriority" | "Intervals" | "IntervalShooting" | "ISO2" | "ISOAuto" | "ISOAutoFlashLimit" | "ISOAutoHiLimit" | "ISOAutoMax" | "ISOAutoMin" | "ISOAutoMinSpeed" | "ISOAutoShutterTime" | "ISODisplay" | "ISOExpansion" | "ISOFloor" | "ISOMax" | "ISOMin" | "ISOSelected" | "ISOSelection" | "ISOSensitivityStep" | "ISOSetting" | "ISOSpeedExpansion" | "ISOSpeedIncrements" | "ISOSpeedRange" | "ISOStepSize" | "ISOValue" | "JPEGQuality" | "JPGCompression" | "JpgRecordedPixels" | "KeepExposure" | "KeystoneCompensation" | "KeystoneDirection" | "KeystoneValue" | "KodakImageHeight" | "KodakImageWidth" | "KodakInfoType" | "KodakMake" | "KodakMaker" | "KodakModel" | "KodakVersion" | "Landmark" | "Language" | "LastFileNumber" | "LateralChromaticAberration" | "LCDDisplayAtPowerOn" | "LCDDisplayReturnToShoot" | "LCDIllumination" | "LCDIlluminationDuringBulb" | "LCDPanels" | "LensApertureRange" | "LensControlRing" | "LensDataVersion" | "LensDistortionParams" | "LensDriveNoAF" | "LensFirmware" | "LensFirmwareVersion" | "LensFocalLength" | "LensFocalRange" | "LensFocusFunctionButtons" | "LensFormat" | "LensFStops" | "LensFunc1Button" | "LensFunc2Button" | "LensIDNumber" | "LensMaxApertureRange" | "LensModulationOptimizer" | "LensMount" | "LensMountType" | "LensPositionAbsolute" | "LensProfileName" | "LensProperties" | "LensShading" | "LensShutterLock" | "LensSpecFeatures" | "LensTemperature" | "LensType2" | "LensType3" | "LensTypeMake" | "LensTypeModel" | "LensZoomPosition" | "LevelIndicator" | "LevelOrientation" | "LightCondition" | "LightingMode" | "LightReading" | "LightSourceSpecial" | "LightSwitch" | "LightValueCenter" | "LightValuePeriphery" | "LimitAFAreaModeSelection" | "LinearityUpperMargin" | "LinkAEToAFPoint" | "LivePhotoVideoIndex" | "LiveView" | "LiveViewAF" | "LiveViewAFAreaMode" | "LiveViewAFMethod" | "LiveViewAFMode" | "LiveViewButtonOptions" | "LiveViewExposureSimulation" | "LiveViewFocusMode" | "LiveViewMetering" | "LiveViewMonitorOffTime" | "LiveViewShooting" | "LocalLocationName" | "Location" | "LocationInfoVersion" | "LocationName" | "LockMicrophoneButton" | "LoggingMetadataText" | "LongExposureNoiseReduction" | "LongExposureNRUsed" | "LowLightAF" | "LuminanceNoiseAmplitude" | "LuminanceNoiseReduction" | "LUT1Name" | "LUT1Opacity" | "LUT2Name" | "LUT2Opacity" | "LVShootingAreaDisplay" | "M16CVersion" | "MacroLED" | "MacroMode" | "MagicFilter" | "MagnifiedView" | "MainDialExposureComp" | "MakerNoteOffset" | "MakerNoteType" | "MakerNoteVersion" | "ManometerPressure" | "ManometerReading" | "ManualAFPointSelectPattern" | "ManualFlash" | "ManualFlashOutput" | "ManualFlashStrength" | "ManualFocusDistance" | "ManualFocusPointIllumination" | "ManualFocusRingInAFMode" | "ManualTv" | "MasterGain" | "MatrixMetering" | "MaxAnalogISO" | "MaxAperture" | "MaxApertureAtMaxFocal" | "MaxApertureAtMinFocal" | "MaxContinuousRelease" | "MaxFaces" | "MaxFocalLength" | "MaxNumAFPoints" | "MCCData" | "MCUVersion" | "MeasuredEV" | "MeasuredLV" | "MeasuredRGGB" | "MeasuredRGGBData" | "MechanicalShutterCount" | "MemoAudioQuality" | "MemoryCardConfiguration" | "MemoryCardNumber" | "MenuButtonDisplayPosition" | "MenuButtonReturn" | "MenuMonitorOffTime" | "MergedImage" | "MergedImages" | "MetaVersion" | "Metering" | "MeteringButton" | "MeteringFrameCount" | "MeteringOffScaleIndicator" | "MeteringTime" | "MeterMode" | "MidRangeSharpness" | "MinAperture" | "MinFocalLength" | "MinFocusDistance" | "MiniatureFilter" | "MiniatureFilterOrientation" | "MiniatureFilterParameter" | "MiniatureFilterPosition" | "MinimumISO" | "MinoltaDate" | "MinoltaImageSize" | "MinoltaModelID" | "MinoltaQuality" | "MinoltaTime" | "MirrorLockup" | "ModeDialPosition" | "ModelingFlash" | "ModelReleaseYear" | "ModifiedColorTemp" | "ModifiedDigitalGain" | "ModifiedParamFlag" | "ModifiedPictureStyle" | "ModifiedSaturation" | "ModifiedSensorBlueLevel" | "ModifiedSensorRedLevel" | "ModifiedSharpness" | "ModifiedSharpnessFreq" | "ModifiedToneCurve" | "ModifiedWhiteBalance" | "ModifiedWhiteBalanceBlue" | "ModifiedWhiteBalanceRed" | "MonitorBrightness" | "MonitorDisplayOff" | "MonitorOffTime" | "MonochromeColor" | "MonochromeFilterEffect" | "MonochromeGrainEffect" | "MonochromeProfileSettings" | "MonochromeToning" | "MonochromeVignetting" | "MonthDayCreated" | "MoonPhase" | "MotionSensitivity" | "MovieAELockButtonAssignment" | "MovieAFAreaMode" | "MovieAFTrackingSensitivity" | "MovieFlickerReduction" | "MovieFunc1Button" | "MovieFunc2Button" | "MovieFunc3Button" | "MovieFunctionButton" | "MovieFunctionButtonPlusDials" | "MovieHighlightDisplayPattern" | "MovieHighlightDisplayThreshold" | "MovieISOAutoControlManualMode" | "MovieISOAutoHiLimit" | "MovieLensControlRing" | "MovieMultiSelector" | "MoviePreviewButton" | "MoviePreviewButtonPlusDials" | "MovieShutterButton" | "MovieSubSelectorAssignment" | "MovieSubSelectorAssignmentPlusDials" | "MovieType" | "MovieWhiteBalanceSameAsPhoto" | "MultiControllerWhileMetering" | "MultiExposure" | "MultiExposureAutoGain" | "MultiExposureMode" | "MultiExposureOverlayMode" | "MultiExposureShots" | "MultiExposureVersion" | "MultiFrameNoiseReduction" | "MultiFrameNREffect" | "MultiFunctionLock" | "MultipleExposureMode" | "MultipleExposureSet" | "MultiSelector" | "MultiSelectorLiveView" | "MultiSelectorPlaybackMode" | "MultiSelectorShootMode" | "MyColorMode" | "NDFilter" | "NEFBitDepth" | "NEFCompression" | "NEFLinearizationTable" | "NeutralDensityFilter" | "NikonCaptureVersion" | "NikonImageSize" | "NikonMeteringMode" | "NoiseFilter" | "NoiseReduction" | "NoiseReductionStrength" | "NoMemoryCard" | "NominalMaxAperture" | "NominalMinAperture" | "NormalWhiteLevel" | "NumAFPoints" | "NumberOfFocusPoints" | "NumberOffsets" | "NumCAFPoints" | "NumFaceElements" | "NumFacePositions" | "OISMode" | "OKButton" | "OlympusImageHeight" | "OlympusImageWidth" | "OneTouchWB" | "OpticalVR" | "OpticalZoom" | "OpticalZoomCode" | "OpticalZoomMode" | "OpticalZoomOn" | "OrderNumber" | "OrientationLinkedAFPoint" | "OriginalDecisionDataOffset" | "OriginalDirectory" | "OriginalFileName" | "OriginalImageHeight" | "OriginalImageWidth" | "OriginalPayloadFrameCount" | "OtherInfo" | "OutputLUT" | "PaintingFilter" | "PanasonicDateTime" | "PanasonicExifVersion" | "PanasonicImageHeight" | "PanasonicImageWidth" | "PanoramaAngle" | "PanoramaCropBottom" | "PanoramaCropLeft" | "PanoramaCropRight" | "PanoramaCropTop" | "PanoramaDirection" | "PanoramaFrameHeight" | "PanoramaFrameWidth" | "PanoramaFullHeight" | "PanoramaFullWidth" | "PanoramaMode" | "PanoramaSize3D" | "PanoramaSourceHeight" | "PanoramaSourceWidth" | "PayloadMetadataText" | "PentaxImageSize" | "PentaxModelID" | "PentaxModelType" | "PerChannelBlackLevel" | "PeripheralIlluminationCorr" | "PeripheralLighting" | "PeripheralLightingSetting" | "PeripheralLightingValue" | "PhotoEffect" | "PhotoIdentifier" | "PhotoInfoPlayback" | "PhotosAppFeatureFlags" | "PhotoShootingMenuBank" | "PhotoShootingMenuBankImageArea" | "PictureControlAdjust" | "PictureControlBase" | "PictureControlName" | "PictureControlQuickAdjust" | "PictureControlVersion" | "PictureEffect" | "PictureFinish" | "PictureMode" | "PictureModeBWFilter" | "PictureModeContrast" | "PictureModeEffect" | "PictureModeSaturation" | "PictureModeSharpness" | "PictureModeStrength" | "PictureModeTone" | "PictureProfile" | "PictureStyle" | "PictureStylePC" | "PictureStyleUserDef" | "Pitch" | "PitchAngle" | "PixelAspectRatio" | "PixelShiftID" | "PixelShiftInfo" | "PixelShiftResolution" | "PixelShiftShooting" | "PlaybackFlickDown" | "PlaybackFlickUp" | "PlaybackMenusTime" | "PlaybackMonitorOffTime" | "PlaybackZoom" | "PlayDisplay" | "POILevel" | "PopupFlash" | "PortraitImpressionBalance" | "PortraitRefiner" | "PostFocusMerging" | "PostReleaseBurstLength" | "PowerAvailable" | "PowerSource" | "PowerUpTime" | "PreAF" | "PreCaptureFrames" | "PreReleaseBurstLength" | "PresetWhiteBalance" | "PreviewButton" | "PreviewButtonPlusDials" | "PreviewImageBorders" | "PreviewImageValid" | "PrimaryAFPoint" | "PrimarySlot" | "PrioritySetupShutterRelease" | "ProcessingNotes" | "ProductionCode" | "ProgramISO" | "ProgramLine" | "ProgramMode" | "ProgramShift" | "QuickControlDialInMeter" | "QuickShot" | "QuietShutterShootingSpeed" | "RangeFinder" | "RawAndJpgRecording" | "RawBurstImageCount" | "RawBurstImageNum" | "RawDataByteOrder" | "RawDataCFAPattern" | "RawDataLength" | "RawDepth" | "RawDevArtFilter" | "RawDevAutoGradation" | "RawDevColorSpace" | "RawDevContrastValue" | "RawDevEditStatus" | "RawDevelopmentProcess" | "RawDevEngine" | "RawDevExposureBiasValue" | "RawDevGradation" | "RawDevGrayPoint" | "RawDevMemoryColorEmphasis" | "RawDevNoiseReduction" | "RawDevPictureMode" | "RawDevPMContrast" | "RawDevPMNoiseFilter" | "RawDevPMPictureTone" | "RawDevPMSaturation" | "RawDevPMSharpness" | "RawDevSaturationEmphasis" | "RawDevSettings" | "RawDevSharpnessValue" | "RawDevVersion" | "RawDevWBFineAdjustment" | "RawDevWhiteBalance" | "RawDevWhiteBalanceValue" | "RAWFileType" | "RawImageCenter" | "RawImageHeight" | "RawImageWidth" | "RawJpgQuality" | "RawJpgSize" | "RawMeasuredRGGB" | "RearControPanelDisplay" | "RearDisplay" | "RecordDisplay" | "RecordID" | "RecordingFormat" | "RecordingMode" | "RecordMode" | "RecordShutterRelease" | "RectifaceText" | "RedEyeRemoval" | "RedGain" | "ReleaseButtonToUseDial" | "ReleaseMode" | "RemoteFuncButton" | "RemoteOnDuration" | "RepeatingFlashCount" | "RepeatingFlashOutput" | "RepeatingFlashOutputExternal" | "RepeatingFlashRate" | "Resaved" | "ResolutionMode" | "RestrictDriveModes" | "RetouchHistory" | "RetouchInfoVersion" | "RetouchNEFProcessing" | "RetractLensOnPowerOff" | "ReverseExposureCompDial" | "ReverseFocusRing" | "ReverseIndicators" | "ReverseShutterSpeedAperture" | "RFLensMFFocusRingSensitivity" | "RicohDate" | "RicohImageHeight" | "RicohImageWidth" | "RicohMake" | "RicohModel" | "Roll" | "RollAngle" | "ROMOperationMode" | "RunTimeEpoch" | "RunTimeFlags" | "RunTimeScale" | "RunTimeValue" | "SafetyShift" | "SafetyShiftInAvOrTv" | "SameExposureForNewAperture" | "SamsungModelID" | "SanyoQuality" | "SanyoThumbnail" | "SaturationAdj" | "SaturationAuto" | "SaturationFaithful" | "SaturationLandscape" | "SaturationNeutral" | "SaturationPortrait" | "SaturationSetting" | "SaturationStandard" | "SaveFocus" | "ScanImageEnhancer" | "SceneAssist" | "SceneDetect" | "SceneMode" | "SceneModeUsed" | "SceneRecognition" | "SceneSelect" | "ScreenTips" | "SecondarySlotFunction" | "SelectableAFPoint" | "SelectAFAreaSelectMode" | "SelfTimer" | "SelfTimerInterval" | "SelfTimerShotCount" | "SelfTimerShotInterval" | "SelfTimerTime" | "SemanticStyle" | "SemanticStylePreset" | "SemanticStyleRenderingVer" | "SensitivityAdjust" | "SensitivitySteps" | "Sensor" | "SensorBitDepth" | "SensorBlueLevel" | "SensorCalibration" | "SensorCleaning" | "SensorFullHeight" | "SensorFullWidth" | "SensorID" | "SensorPixelSize" | "SensorRedLevel" | "SensorSize" | "SensorTemperature" | "Sequence" | "SequenceFileNumber" | "SequenceImageNumber" | "SequenceLength" | "SequenceNumber" | "SequenceShotInterval" | "SequentialShot" | "ServoAFCharacteristics" | "SetButtonCrossKeysFunc" | "SetButtonWhenShooting" | "SetFunctionWhenShooting" | "ShadingCompensation" | "Shadow" | "ShadowCorrection" | "Shadows" | "ShadowTone" | "ShakeReduction" | "Sharpening" | "SharpnessAuto" | "SharpnessFactor" | "SharpnessFaithful" | "SharpnessFreqTable" | "SharpnessFrequency" | "SharpnessLandscape" | "SharpnessMonochrome" | "SharpnessNeutral" | "SharpnessPortrait" | "SharpnessRange" | "SharpnessSetting" | "SharpnessStandard" | "SharpnessTable" | "ShootingInfoDisplay" | "ShootingInfoMonitorOffTime" | "ShootingModeSetting" | "ShortOwnerName" | "ShortReleaseTimeLag" | "ShotInfoVersion" | "ShotLogDataText" | "ShotNumber" | "ShotNumberSincePowerUp" | "ShotParamsText" | "ShotsPerInterval" | "Shutter" | "ShutterAELButton" | "ShutterButtonAFOnButton" | "ShutterCount" | "ShutterCount2" | "ShutterCount3" | "ShutterCurtainSync" | "ShutterMode" | "ShutterReleaseMethod" | "ShutterReleaseNoCFCard" | "ShutterReleaseTiming" | "ShutterReleaseWithoutLens" | "ShutterSpeedLock" | "ShutterSpeedRange" | "ShutterSpeedSetting" | "ShutterType" | "SignalToNoiseRatio" | "SilentPhotography" | "SingleFrame" | "SingleFrameBracketing" | "SkinToneCorrection" | "SlaveFlashMeteringSegments" | "SlowShutter" | "SlowSync" | "SmartAlbumColor" | "SmileShutter" | "SmileShutterMode" | "SoftFocusFilter" | "SoftSkinEffect" | "SoftwareDate" | "SonyDateTime" | "SonyDateTime2" | "SonyExposureTime" | "SonyFNumber" | "SonyImageHeight" | "SonyImageHeightMax" | "SonyImageSize" | "SonyImageWidth" | "SonyImageWidthMax" | "SonyISO" | "SonyMaxAperture" | "SonyMaxApertureValue" | "SonyMinAperture" | "SonyModelID" | "SonyQuality" | "SonyTimeMinSec" | "SourceDirectoryIndex" | "SourceFileIndex" | "SpecialEffectLevel" | "SpecialEffectMode" | "SpecialEffectSetting" | "SpecialMode" | "SpecularWhiteLevel" | "SpeedX" | "SpeedY" | "SpeedZ" | "SportEvents" | "SpotFocusPointX" | "SpotFocusPointY" | "SpotMeterLinkToAFPoint" | "SRActive" | "SRAWQuality" | "SRFocalLength" | "SRHalfPressTime" | "SRResult" | "StackedImage" | "StandbyMonitorOffTime" | "StandbyTimer" | "StartMovieShooting" | "StaticMetadataText" | "StepCropShooting" | "StopsAboveBaseISO" | "StorageMethod" | "StoreByOrientation" | "SubDialFrameAdvance" | "SubjectDetectArea" | "SubjectDetectDetail" | "SubjectDetectFrameSize" | "SubjectDetection" | "SubjectDetectionAreaMF" | "SubjectDetectStatus" | "SubjectMotion" | "SubjectProgram" | "SubjectRecognition" | "SubjectSwitching" | "SubjectToDetect" | "SubSelector" | "SubSelectorAssignment" | "SubSelectorCenter" | "SubSelectorPlusDials" | "SummaryText" | "SuperimposedDisplay" | "SuperMacro" | "SvISOSetting" | "SweepPanoramaDirection" | "SweepPanoramaFieldOfView" | "SweepPanoramaSize" | "SwitchToRegisteredAFPoint" | "SyncReleaseMode" | "TargetAperture" | "TargetCompressionRatio" | "TargetDistanceSetting" | "TargetExposureTime" | "TargetImageType" | "Teleconverter" | "TextEncoding" | "TextStamp" | "ThumbnailFileName" | "ThumbnailImageValidArea" | "TiffMeteringImage" | "TiffMeteringImageHeight" | "TiffMeteringImageWidth" | "Time" | "TimeLapseShotNumber" | "TimeLogText" | "TimerFunctionButton" | "TimerLength" | "TimerRecording" | "TimeSincePowerOn" | "TimeStamp" | "TimeZone" | "TimeZoneCity" | "TimeZoneCode" | "TimeZoneInfo" | "Title" | "ToneComp" | "ToneCurve" | "ToneCurveMatching" | "ToneCurveTable" | "ToneLevel" | "ToningEffect" | "ToningEffectAuto" | "ToningEffectMonochrome" | "ToningSaturation" | "TotalZoom" | "TouchAE" | "ToyCameraFilter" | "Transform" | "TrashButtonFunction" | "TravelDay" | "TriggerMode" | "TvExposureTimeSetting" | "UniqueID" | "UnknownNumber" | "UnsharpMaskFineness" | "UnsharpMaskThreshold" | "UnusedLoggingMetadata" | "UsableMeteringModes" | "UsableShootingModes" | "USBPowerDelivery" | "UserDef1PictureStyle" | "UserDef2PictureStyle" | "UserDef3PictureStyle" | "UserLabel" | "UserProfile" | "USMLensElectronicMF" | "ValidAFPoints" | "ValidBits" | "VariableLowPassFilter" | "VariProgram" | "VerticalAFOnButton" | "VerticalFuncButton" | "VerticalFuncButtonPlusDials" | "VerticalMovieAFOnButton" | "VerticalMovieFuncButton" | "VerticalMultiSelector" | "VFDisplayIllumination" | "VibrationReduction" | "VideoBurstMode" | "VideoBurstResolution" | "VideoFrameRate" | "VideoPreburst" | "ViewfinderDisplay" | "ViewfinderWarning" | "ViewfinderWarnings" | "ViewInfoDuringExposure" | "ViewingMode" | "Vignette" | "VignetteControl" | "VignetteCorrectionVersion" | "Vignetting" | "VignettingCorrVersion" | "VoiceMemo" | "VRDOffset" | "VRInfoVersion" | "VRMode" | "VRType" | "WatercolorFilter" | "WBBlue" | "WBBracketingSteps" | "WBBracketMode" | "WBBracketShotNumber" | "WBBracketValueAB" | "WBBracketValueGM" | "WBButtonPlaybackMode" | "WBGreen" | "WBMediaImageSizeSetting" | "WBMode" | "WBRed" | "WBScale" | "WBShiftAB" | "WBShiftCreativeControl" | "WBShiftGM" | "WhiteBalanceAutoAdjustment" | "WhiteBalanceBias" | "WhiteBalanceBlue" | "WhiteBalanceBracket" | "WhiteBalanceBracketing" | "WhiteBalanceFineTune" | "WhiteBalanceMatching" | "WhiteBalanceMode" | "WhiteBalanceRed" | "WhiteBalanceSet" | "WhiteBalanceSetting" | "WhiteBalanceSetup" | "WhiteBalanceTable" | "WhiteBalanceTemperature" | "WhiteBoard" | "WholeAreaTracking" | "WideAdapter" | "WideFocusZone" | "WideRange" | "WorldTimeLocation" | "X3FillLight" | "Xidiri" | "Yaw" | "YawAngle" | "YearCreated" | "ZoneMatching" | "ZoneMatchingMode" | "ZoneMatchingOn" | "ZoneMatchingValue" | "ZoomedPreviewImage" | "ZoomedPreviewLength" | "ZoomedPreviewSize" | "ZoomedPreviewStart" | "ZoomSourceWidth" | "ZoomStepCount" | "ZoomTargetWidth">;
|
|
16292
16276
|
export type MakerNotesTag = StrEnumKeys<typeof MakerNotesTagsNames>;
|
|
16293
16277
|
/**
|
|
16294
16278
|
* @see https://exiftool.org/TagNames/XMP.html
|
|
@@ -16453,15 +16437,16 @@ export interface XMPTags {
|
|
|
16453
16437
|
/**
|
|
16454
16438
|
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
16455
16439
|
* @groups XMP
|
|
16456
|
-
* @example [{"DepthMap":{"ConfidenceURI":"android/
|
|
16440
|
+
* @example [{"Camera":{"DepthMap":{"ConfidenceURI":"android/confiden…cal"}}]
|
|
16457
16441
|
*/
|
|
16458
16442
|
Cameras?: Struct[];
|
|
16459
16443
|
/**
|
|
16460
16444
|
* @frequency 🔥 ☆☆☆☆ (1%)
|
|
16461
16445
|
* @groups APP, EXIF, XMP
|
|
16462
16446
|
* @example 91702442
|
|
16447
|
+
* @remarks Camera serial number. DNG tag 0xc62f, writable string in IFD0.
|
|
16463
16448
|
*/
|
|
16464
|
-
CameraSerialNumber?:
|
|
16449
|
+
CameraSerialNumber?: string;
|
|
16465
16450
|
/**
|
|
16466
16451
|
* @frequency 🧊 ☆☆☆☆ (0%)
|
|
16467
16452
|
* @groups XMP
|
|
@@ -16654,12 +16639,6 @@ export interface XMPTags {
|
|
|
16654
16639
|
* @example 9900
|
|
16655
16640
|
*/
|
|
16656
16641
|
ColorTemperature?: number;
|
|
16657
|
-
/**
|
|
16658
|
-
* @frequency 🔥 ☆☆☆☆ (2%)
|
|
16659
|
-
* @groups File, XMP
|
|
16660
|
-
* @example "This is a comment."
|
|
16661
|
-
*/
|
|
16662
|
-
Comment?: string;
|
|
16663
16642
|
/**
|
|
16664
16643
|
* @frequency 🔥 ★★★★ (60%)
|
|
16665
16644
|
* @groups EXIF, XMP
|
|
@@ -16675,7 +16654,7 @@ export interface XMPTags {
|
|
|
16675
16654
|
/**
|
|
16676
16655
|
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
16677
16656
|
* @groups XMP
|
|
16678
|
-
* @example {"Directory":[{"DataURI":"primary_image","Length"
|
|
16657
|
+
* @example {"Directory":[{"Item":{"DataURI":"primary_image","Length"…eg"}}]}
|
|
16679
16658
|
*/
|
|
16680
16659
|
Container?: Struct;
|
|
16681
16660
|
/**
|
|
@@ -16767,8 +16746,9 @@ export interface XMPTags {
|
|
|
16767
16746
|
* @frequency 🧊 ☆☆☆☆ (0%)
|
|
16768
16747
|
* @groups XMP
|
|
16769
16748
|
* @example 0
|
|
16770
|
-
* @remarks Crop rotation angle.
|
|
16771
|
-
*
|
|
16749
|
+
* @remarks Crop rotation angle. Primarily from XMP-crs (Camera Raw Settings/Adobe Camera Raw) namespace.
|
|
16750
|
+
* Also found in Canon DPP recipe files.
|
|
16751
|
+
* @see https://exiftool.org/TagNames/XMP.html#crs
|
|
16772
16752
|
*/
|
|
16773
16753
|
CropAngle?: number;
|
|
16774
16754
|
/**
|
|
@@ -17276,7 +17256,7 @@ export interface XMPTags {
|
|
|
17276
17256
|
*/
|
|
17277
17257
|
GimbalYawDegree?: string;
|
|
17278
17258
|
/**
|
|
17279
|
-
* @frequency 🔥 ☆☆☆☆ (
|
|
17259
|
+
* @frequency 🔥 ☆☆☆☆ (4%)
|
|
17280
17260
|
* @groups APP, Composite, EXIF, XMP
|
|
17281
17261
|
* @example 99.8
|
|
17282
17262
|
*/
|
|
@@ -17286,7 +17266,8 @@ export interface XMPTags {
|
|
|
17286
17266
|
* @groups Composite, EXIF, XMP
|
|
17287
17267
|
* @example "Unknown (Sea level reference)"
|
|
17288
17268
|
* @remarks GPS altitude reference.
|
|
17289
|
-
*
|
|
17269
|
+
* Values: 0 (Above Sea Level), 1 (Below Sea Level), 2 (Positive Sea Level, sea-level ref), 3 (Negative Sea Level, sea-level ref).
|
|
17270
|
+
* Values 2-3 added in EXIF 3.0 for ellipsoidal vs sea-level reference.
|
|
17290
17271
|
*/
|
|
17291
17272
|
GPSAltitudeRef?: number;
|
|
17292
17273
|
/**
|
|
@@ -17507,8 +17488,8 @@ export interface XMPTags {
|
|
|
17507
17488
|
* @frequency 🔥 ★★★★ (100%)
|
|
17508
17489
|
* @groups APP, Composite, EXIF, File, MakerNotes, QuickTime, RIFF, XMP
|
|
17509
17490
|
* @example 960
|
|
17510
|
-
* @remarks Image height in pixels.
|
|
17511
|
-
* Read-only
|
|
17491
|
+
* @remarks Image height in pixels. File-level property derived from file analysis.
|
|
17492
|
+
* Read-only.
|
|
17512
17493
|
* @see https://exiftool.org/TagNames/File.html
|
|
17513
17494
|
*/
|
|
17514
17495
|
ImageHeight?: number;
|
|
@@ -17543,14 +17524,18 @@ export interface XMPTags {
|
|
|
17543
17524
|
* @frequency 🔥 ★☆☆☆ (9%)
|
|
17544
17525
|
* @groups EXIF, MakerNotes, XMP
|
|
17545
17526
|
* @example "fefafc6093e2c1470ac8dfa06ef26990"
|
|
17527
|
+
* @remarks Unique identifier for the image, typically a 32-character hex string.
|
|
17528
|
+
* Useful for image deduplication, tracking identity across edits, and linking related files (e.g., RAW + JPEG pairs).
|
|
17529
|
+
* May also appear in MakerNotes and XMP.
|
|
17530
|
+
* @see https://exiftool.org/TagNames/EXIF.html
|
|
17546
17531
|
*/
|
|
17547
17532
|
ImageUniqueID?: string;
|
|
17548
17533
|
/**
|
|
17549
17534
|
* @frequency 🔥 ★★★★ (100%)
|
|
17550
17535
|
* @groups APP, Composite, EXIF, File, MakerNotes, QuickTime, RIFF, XMP
|
|
17551
17536
|
* @example 9728
|
|
17552
|
-
* @remarks Image width in pixels.
|
|
17553
|
-
* Read-only
|
|
17537
|
+
* @remarks Image width in pixels. File-level property derived from file analysis.
|
|
17538
|
+
* Read-only.
|
|
17554
17539
|
* @see https://exiftool.org/TagNames/File.html
|
|
17555
17540
|
*/
|
|
17556
17541
|
ImageWidth?: number;
|
|
@@ -18024,10 +18009,10 @@ export interface XMPTags {
|
|
|
18024
18009
|
* @frequency 🔥 ★★★★ (90%)
|
|
18025
18010
|
* @groups Composite, EXIF, PanasonicRaw, XMP
|
|
18026
18011
|
* @example 8
|
|
18027
|
-
* @remarks Image orientation.
|
|
18028
|
-
* Valid values: 1 (Horizontal/normal), 2 (Mirror horizontal), 3 (Rotate 180°), 4 (Mirror vertical), 5 (Mirror horizontal + rotate 270° CW), 6 (Rotate 90° CW), 7 (Mirror horizontal + rotate 90° CW), 8 (Rotate 270° CW)
|
|
18029
|
-
*
|
|
18030
|
-
* @see https://exiftool.org/TagNames/
|
|
18012
|
+
* @remarks Image orientation. Standard EXIF tag 0x112 in IFD0.
|
|
18013
|
+
* Valid values: 1 (Horizontal/normal), 2 (Mirror horizontal), 3 (Rotate 180°), 4 (Mirror vertical), 5 (Mirror horizontal + rotate 270° CW), 6 (Rotate 90° CW), 7 (Mirror horizontal + rotate 90° CW), 8 (Rotate 270° CW).
|
|
18014
|
+
* Most images use values 1, 3, 6, and 8.
|
|
18015
|
+
* @see https://exiftool.org/TagNames/EXIF.html
|
|
18031
18016
|
*/
|
|
18032
18017
|
Orientation?: number;
|
|
18033
18018
|
/**
|
|
@@ -18100,8 +18085,22 @@ export interface XMPTags {
|
|
|
18100
18085
|
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
18101
18086
|
* @groups XMP
|
|
18102
18087
|
* @example ["John Doe"]
|
|
18088
|
+
* @remarks Name(s) of person(s) shown in the image. XMP-iptcExt namespace.
|
|
18089
|
+
* Simpler alternative to MWG RegionInfo when face coordinates aren't needed.
|
|
18090
|
+
* Multi-value field; array when multiple people identified.
|
|
18091
|
+
* @see https://exiftool.org/TagNames/XMP.html#iptcExt
|
|
18092
|
+
*/
|
|
18093
|
+
PersonInImage?: string | string[];
|
|
18094
|
+
/**
|
|
18095
|
+
* @frequency 🧊 ☆☆☆☆ (0%)
|
|
18096
|
+
* @groups XMP
|
|
18097
|
+
* @example
|
|
18098
|
+
* @remarks Structured details about person(s) shown in the image. XMP-iptcExt namespace.
|
|
18099
|
+
* Includes PersonId, PersonName, PersonCharacteristic, PersonDescription.
|
|
18100
|
+
* More detailed than PersonInImage; IPTC Extension 2014+ standard.
|
|
18101
|
+
* @see https://exiftool.org/TagNames/XMP.html#iptcExt
|
|
18103
18102
|
*/
|
|
18104
|
-
|
|
18103
|
+
PersonInImageWDetails?: Struct | Struct[];
|
|
18105
18104
|
/**
|
|
18106
18105
|
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
18107
18106
|
* @groups XMP
|
|
@@ -18225,7 +18224,7 @@ export interface XMPTags {
|
|
|
18225
18224
|
/**
|
|
18226
18225
|
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
18227
18226
|
* @groups XMP
|
|
18228
|
-
* @example [{"CameraIndices":[0],"Type":"DepthPhoto"}]
|
|
18227
|
+
* @example [{"Profile":{"CameraIndices":[0],"Type":"DepthPhoto"}}]
|
|
18229
18228
|
*/
|
|
18230
18229
|
Profiles?: Struct[];
|
|
18231
18230
|
/**
|
|
@@ -18282,24 +18281,142 @@ export interface XMPTags {
|
|
|
18282
18281
|
* @example 0
|
|
18283
18282
|
*/
|
|
18284
18283
|
RedSaturation?: number;
|
|
18284
|
+
/**
|
|
18285
|
+
* @frequency 🧊 ☆☆☆☆ (0%)
|
|
18286
|
+
* @groups XMP
|
|
18287
|
+
* @example
|
|
18288
|
+
* @remarks Height of image when regions were defined. From XMP-mwg-rs namespace.
|
|
18289
|
+
* Flattened from RegionInfo struct (requires struct=0).
|
|
18290
|
+
* @see https://exiftool.org/TagNames/MWG.html
|
|
18291
|
+
*/
|
|
18292
|
+
RegionAppliedToDimensionsH?: number;
|
|
18293
|
+
/**
|
|
18294
|
+
* @frequency 🧊 ☆☆☆☆ (0%)
|
|
18295
|
+
* @groups XMP
|
|
18296
|
+
* @example "pixel"
|
|
18297
|
+
* @remarks Unit for AppliedToDimensions (typically 'pixel'). From XMP-mwg-rs namespace.
|
|
18298
|
+
* Flattened from RegionInfo struct (requires struct=0).
|
|
18299
|
+
* @see https://exiftool.org/TagNames/MWG.html
|
|
18300
|
+
*/
|
|
18301
|
+
RegionAppliedToDimensionsUnit?: string;
|
|
18302
|
+
/**
|
|
18303
|
+
* @frequency 🧊 ☆☆☆☆ (0%)
|
|
18304
|
+
* @groups XMP
|
|
18305
|
+
* @example
|
|
18306
|
+
* @remarks Width of image when regions were defined. From XMP-mwg-rs namespace.
|
|
18307
|
+
* Flattened from RegionInfo struct (requires struct=0).
|
|
18308
|
+
* @see https://exiftool.org/TagNames/MWG.html
|
|
18309
|
+
*/
|
|
18310
|
+
RegionAppliedToDimensionsW?: number;
|
|
18311
|
+
/**
|
|
18312
|
+
* @frequency 🧊 ☆☆☆☆ (0%)
|
|
18313
|
+
* @groups XMP
|
|
18314
|
+
* @example
|
|
18315
|
+
* @remarks Height of region(s) as normalized value (0-1). From XMP-mwg-rs namespace.
|
|
18316
|
+
* Flattened from RegionInfo struct (requires struct=0). Array when multiple regions.
|
|
18317
|
+
* @see https://exiftool.org/TagNames/MWG.html
|
|
18318
|
+
*/
|
|
18319
|
+
RegionAreaH?: number | number[];
|
|
18320
|
+
/**
|
|
18321
|
+
* @frequency 🧊 ☆☆☆☆ (0%)
|
|
18322
|
+
* @groups XMP
|
|
18323
|
+
* @example "normalized"
|
|
18324
|
+
* @remarks Unit for RegionArea coordinates (typically 'normalized'). From XMP-mwg-rs namespace.
|
|
18325
|
+
* Flattened from RegionInfo struct (requires struct=0).
|
|
18326
|
+
* @see https://exiftool.org/TagNames/MWG.html
|
|
18327
|
+
*/
|
|
18328
|
+
RegionAreaUnit?: string;
|
|
18329
|
+
/**
|
|
18330
|
+
* @frequency 🧊 ☆☆☆☆ (0%)
|
|
18331
|
+
* @groups XMP
|
|
18332
|
+
* @example
|
|
18333
|
+
* @remarks Width of region(s) as normalized value (0-1). From XMP-mwg-rs namespace.
|
|
18334
|
+
* Flattened from RegionInfo struct (requires struct=0). Array when multiple regions.
|
|
18335
|
+
* @see https://exiftool.org/TagNames/MWG.html
|
|
18336
|
+
*/
|
|
18337
|
+
RegionAreaW?: number | number[];
|
|
18338
|
+
/**
|
|
18339
|
+
* @frequency 🧊 ☆☆☆☆ (0%)
|
|
18340
|
+
* @groups XMP
|
|
18341
|
+
* @example
|
|
18342
|
+
* @remarks Horizontal center of region(s) as normalized value (0-1). From XMP-mwg-rs namespace.
|
|
18343
|
+
* Flattened from RegionInfo struct (requires struct=0). Array when multiple regions.
|
|
18344
|
+
* @see https://exiftool.org/TagNames/MWG.html
|
|
18345
|
+
*/
|
|
18346
|
+
RegionAreaX?: number | number[];
|
|
18347
|
+
/**
|
|
18348
|
+
* @frequency 🧊 ☆☆☆☆ (0%)
|
|
18349
|
+
* @groups XMP
|
|
18350
|
+
* @example
|
|
18351
|
+
* @remarks Vertical center of region(s) as normalized value (0-1). From XMP-mwg-rs namespace.
|
|
18352
|
+
* Flattened from RegionInfo struct (requires struct=0). Array when multiple regions.
|
|
18353
|
+
* @see https://exiftool.org/TagNames/MWG.html
|
|
18354
|
+
*/
|
|
18355
|
+
RegionAreaY?: number | number[];
|
|
18285
18356
|
/**
|
|
18286
18357
|
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
18287
18358
|
* @groups XMP
|
|
18288
18359
|
* @example {"AppliedToDimensions":{"H":3552,"W":2000},"RegionList":[…ace"}]}
|
|
18360
|
+
* @remarks MWG face/region metadata structure containing AppliedToDimensions and RegionList.
|
|
18361
|
+
* With struct=1 (default), contains nested objects. With struct=0, fields are flattened.
|
|
18362
|
+
* Used by Lightroom, Picasa, Windows Photo Gallery, digiKam, and other photo organizers.
|
|
18363
|
+
* @see https://exiftool.org/TagNames/MWG.html
|
|
18289
18364
|
*/
|
|
18290
18365
|
RegionInfo?: Struct;
|
|
18291
18366
|
/**
|
|
18292
18367
|
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
18293
18368
|
* @groups XMP
|
|
18294
18369
|
* @example {"Regions":""}
|
|
18370
|
+
* @remarks Microsoft Photo region metadata structure (XMP-MP namespace).
|
|
18371
|
+
* Alternative format to MWG regions, used by Windows Photo Gallery and some Microsoft tools.
|
|
18372
|
+
* @see https://exiftool.org/TagNames/XMP.html#MP
|
|
18295
18373
|
*/
|
|
18296
18374
|
RegionInfoMP?: Struct;
|
|
18375
|
+
/**
|
|
18376
|
+
* @frequency 🧊 ☆☆☆☆ (0%)
|
|
18377
|
+
* @groups XMP
|
|
18378
|
+
* @example
|
|
18379
|
+
* @remarks Name(s) of identified region(s), typically person names for face regions.
|
|
18380
|
+
* From XMP-mwg-rs namespace. Flattened from RegionInfo struct (requires struct=0).
|
|
18381
|
+
* For Lightroom compatibility, also add names to Keywords/Subject.
|
|
18382
|
+
* @see https://exiftool.org/TagNames/MWG.html
|
|
18383
|
+
*/
|
|
18384
|
+
RegionName?: string | string[];
|
|
18385
|
+
/**
|
|
18386
|
+
* @frequency 🧊 ☆☆☆☆ (0%)
|
|
18387
|
+
* @groups XMP
|
|
18388
|
+
* @example
|
|
18389
|
+
* @remarks Display name(s) for person(s) in face regions.
|
|
18390
|
+
* From XMP-MP namespace (Microsoft Photo), not XMP-mwg-rs.
|
|
18391
|
+
* Flattened from RegionInfoMP struct (requires struct=0).
|
|
18392
|
+
* @see https://exiftool.org/TagNames/XMP.html#MP
|
|
18393
|
+
*/
|
|
18394
|
+
RegionPersonDisplayName?: string | string[];
|
|
18395
|
+
/**
|
|
18396
|
+
* @frequency 🧊 ☆☆☆☆ (0%)
|
|
18397
|
+
* @groups XMP
|
|
18398
|
+
* @example
|
|
18399
|
+
* @remarks Rotation angle(s) of region(s) in degrees.
|
|
18400
|
+
* From XMP-mwg-rs namespace. Flattened from RegionInfo struct (requires struct=0).
|
|
18401
|
+
* @see https://exiftool.org/TagNames/MWG.html
|
|
18402
|
+
*/
|
|
18403
|
+
RegionRotation?: number | number[];
|
|
18404
|
+
/**
|
|
18405
|
+
* @frequency 🧊 ☆☆☆☆ (0%)
|
|
18406
|
+
* @groups XMP
|
|
18407
|
+
* @example
|
|
18408
|
+
* @remarks Type(s) of region(s) identified.
|
|
18409
|
+
* Valid values: 'Face', 'Pet', 'BarCode', 'Focus'.
|
|
18410
|
+
* From XMP-mwg-rs namespace. Flattened from RegionInfo struct (requires struct=0).
|
|
18411
|
+
* @see https://exiftool.org/TagNames/MWG.html
|
|
18412
|
+
*/
|
|
18413
|
+
RegionType?: string | string[];
|
|
18297
18414
|
/**
|
|
18298
18415
|
* @frequency 🔥 ☆☆☆☆ (0%)
|
|
18299
18416
|
* @groups XMP
|
|
18300
18417
|
* @example [{"RegItemId":"Number1","RegOrgId":"TestName1"},{"RegItem…ame3"}]
|
|
18301
18418
|
* @remarks Registry identifiers for the image. XMP-iptcExt namespace struct type.
|
|
18302
|
-
* Flattened fields: RegistryEntryRole, RegistryItemID.
|
|
18419
|
+
* Flattened fields: RegistryEntryRole, RegistryItemID, RegistryOrganisationID.
|
|
18303
18420
|
* @see https://exiftool.org/TagNames/XMP.html#iptcExt
|
|
18304
18421
|
*/
|
|
18305
18422
|
RegistryID?: Struct[];
|
|
@@ -18474,7 +18591,7 @@ export interface XMPTags {
|
|
|
18474
18591
|
/**
|
|
18475
18592
|
* @frequency 🧊 ☆☆☆☆ (0%)
|
|
18476
18593
|
* @groups XMP
|
|
18477
|
-
* @example "(Binary data
|
|
18594
|
+
* @example "(Binary data 676 bytes, use -b option to extract)"
|
|
18478
18595
|
*/
|
|
18479
18596
|
ShotLogData?: BinaryField | string;
|
|
18480
18597
|
/**
|
|
@@ -18838,7 +18955,7 @@ export interface XMPTags {
|
|
|
18838
18955
|
*/
|
|
18839
18956
|
YResolution?: number;
|
|
18840
18957
|
}
|
|
18841
|
-
export declare const XMPTagsNames: StrEnum<"BitsPerSample" | "CameraSerialNumber" | "ColorMode" | "ColorSpace" | "Compression" | "DateTimeOriginal" | "Exposure" | "ExposureCompensation" | "ExposureTime" | "Flash" | "FNumber" | "FocusDistance" | "GPSAltitude" | "GPSDOP" | "GPSImgDirection" | "GPSImgDirectionRef" | "GPSLatitude" | "GPSLongitude" | "GPSLongitudeRef" | "GPSMapDatum" | "GPSSpeed" | "GPSSpeedRef" | "GPSVersionID" | "ImageHeight" | "ImageWidth" | "LensModel" | "LensSerialNumber" | "Model" | "ResolutionUnit" | "SerialNumber" | "Sharpness" | "Version" | "WhiteBalance" | "XResolution" | "YResolution" | "Country" | "CreateDate" | "Creator" | "DateCreated" | "Description" | "Duration" | "GPSAltitudeRef" | "GPSDateTime" | "ISO" | "Lens" | "LensID" | "ModifyDate" | "Orientation" | "Rating" | "State" | "ApertureValue" | "BrightnessValue" | "CompressedBitsPerPixel" | "Contrast" | "CropBottom" | "CropLeft" | "CropRight" | "CropTop" | "CustomRendered" | "DigitalZoomRatio" | "ExifImageHeight" | "ExifImageWidth" | "ExifVersion" | "ExposureMode" | "ExposureProgram" | "FileSource" | "FocalLength" | "FocalLengthIn35mmFormat" | "FocalPlaneResolutionUnit" | "FocalPlaneXResolution" | "FocalPlaneYResolution" | "GainControl" | "GPSDateStamp" | "GPSProcessingMethod" | "ImageNumber" | "ImageUniqueID" | "ISOSpeed" | "LensInfo" | "LensMake" | "LightSource" | "Make" | "MaxApertureValue" | "MeteringMode" | "Padding" | "PhotometricInterpretation" | "RatingPercent" | "RecommendedExposureIndex" | "SamplesPerPixel" | "Saturation" | "SceneCaptureType" | "SceneType" | "SensingMethod" | "SensitivityType" | "ShutterSpeedValue" | "Software" | "SubjectDistance" | "SubjectDistanceRange" | "SubSecTimeDigitized" | "SubSecTimeOriginal" | "UserComment" | "YCbCrPositioning" | "
|
|
18958
|
+
export declare const XMPTagsNames: StrEnum<"BitsPerSample" | "CameraSerialNumber" | "ColorMode" | "ColorSpace" | "Compression" | "DateTimeOriginal" | "Exposure" | "ExposureCompensation" | "ExposureTime" | "Flash" | "FNumber" | "FocusDistance" | "GPSAltitude" | "GPSDOP" | "GPSImgDirection" | "GPSImgDirectionRef" | "GPSLatitude" | "GPSLongitude" | "GPSLongitudeRef" | "GPSMapDatum" | "GPSSpeed" | "GPSSpeedRef" | "GPSVersionID" | "ImageHeight" | "ImageWidth" | "LensModel" | "LensSerialNumber" | "Model" | "ResolutionUnit" | "SerialNumber" | "Sharpness" | "Version" | "WhiteBalance" | "XResolution" | "YResolution" | "Country" | "CreateDate" | "Creator" | "DateCreated" | "Description" | "Duration" | "GPSAltitudeRef" | "GPSDateTime" | "ISO" | "Lens" | "LensID" | "ModifyDate" | "Orientation" | "Rating" | "State" | "ApertureValue" | "BrightnessValue" | "CompressedBitsPerPixel" | "Contrast" | "CropBottom" | "CropLeft" | "CropRight" | "CropTop" | "CustomRendered" | "DigitalZoomRatio" | "ExifImageHeight" | "ExifImageWidth" | "ExifVersion" | "ExposureMode" | "ExposureProgram" | "FileSource" | "FocalLength" | "FocalLengthIn35mmFormat" | "FocalPlaneResolutionUnit" | "FocalPlaneXResolution" | "FocalPlaneYResolution" | "GainControl" | "GPSDateStamp" | "GPSProcessingMethod" | "ImageNumber" | "ImageUniqueID" | "ISOSpeed" | "LensInfo" | "LensMake" | "LightSource" | "Make" | "MaxApertureValue" | "MeteringMode" | "Padding" | "PhotometricInterpretation" | "RatingPercent" | "RecommendedExposureIndex" | "SamplesPerPixel" | "Saturation" | "SceneCaptureType" | "SceneType" | "SensingMethod" | "SensitivityType" | "ShutterSpeedValue" | "Software" | "SubjectDistance" | "SubjectDistanceRange" | "SubSecTimeDigitized" | "SubSecTimeOriginal" | "UserComment" | "YCbCrPositioning" | "ImageLength" | "InstanceID" | "Brightness" | "Categories" | "ColorTemperature" | "CountryCode" | "CropHeight" | "CropWidth" | "Firmware" | "FlashCompensation" | "FlashModel" | "ImageData" | "LensProfileName" | "ProgramMode" | "Shadows" | "ShutterType" | "Title" | "ToneCurve" | "Format" | "MinorVersion" | "StreamType" | "About" | "AbsoluteAltitude" | "Album" | "AlreadyApplied" | "AltitudeType" | "ApproximateFocusDistance" | "AsrClimaxDuration" | "AsrClimaxScene" | "AsrIsMacroRange" | "AsrSceneCondition" | "AsrSceneMode" | "AutoLateralCA" | "BandName" | "BlueHue" | "BlueSaturation" | "BurstID" | "BurstPrimary" | "CameraBurstID" | "CameraFacing" | "CameraModelID" | "CameraProfile" | "CameraProfileDigest" | "Cameras" | "CamReverse" | "CaptureMode" | "CaptureSoftware" | "CatalogSets" | "CellGlobalID" | "CellR" | "CellTowerID" | "CentralTemperature" | "CentralWavelength" | "Changes" | "ChromaticAberrationB" | "ChromaticAberrationR" | "CircularGradientBasedCorrections" | "ColorClass" | "ColorGradeBlending" | "ColorGradeGlobalHue" | "ColorGradeGlobalLum" | "ColorGradeGlobalSat" | "ColorGradeHighlightLum" | "ColorGradeMidtoneHue" | "ColorGradeMidtoneLum" | "ColorGradeMidtoneSat" | "ColorGradeShadowLum" | "ColorLabel" | "Colorlabels" | "ColorNoiseReduction" | "ColorNoiseReductionDetail" | "ColorNoiseReductionSmoothness" | "Container" | "ContainerDirectory" | "ConvertToGrayscale" | "CreationTime" | "CreatorAppID" | "CreatorContactInfo" | "CreatorOpenWithUIOptions" | "Creatortool" | "CreatorTool" | "CropAngle" | "CropConstrainToWarp" | "CroppedAreaImageHeightPixels" | "CroppedAreaImageWidthPixels" | "CroppedAreaLeftPixels" | "CroppedAreaTopPixels" | "DateAcquired" | "DateTime" | "DateTimeDigitized" | "DateUTC" | "DefringeGreenAmount" | "DefringeGreenHueHi" | "DefringeGreenHueLo" | "DefringePurpleAmount" | "DefringePurpleHueHi" | "DefringePurpleHueLo" | "Dehaze" | "DepthImage" | "DerivedFrom" | "DisableAutoCreation" | "DistortionCorrectionAlreadyApplied" | "DocumentID" | "DroneModel" | "DroneSerialNumber" | "Face" | "FaceNum" | "FaceSelectedIndex" | "Far" | "Filters" | "FlashManufacturer" | "FlashPixVersion" | "FlightPitchDegree" | "FlightRollDegree" | "FlightXSpeed" | "FlightYawDegree" | "FlightYSpeed" | "FlightZSpeed" | "FocusAreaHeight" | "FocusAreaNum" | "FocusAreaWidth" | "FocusIsLensMoving" | "FocusPosX" | "FocusPosY" | "FocusState" | "FullPanoHeightPixels" | "FullPanoWidthPixels" | "GimbalPitchDegree" | "GimbalReverse" | "GimbalRollDegree" | "GimbalYawDegree" | "GpsStatus" | "GrainAmount" | "GreenHue" | "GreenSaturation" | "HasCrop" | "HasExtendedXMP" | "HasSettings" | "HDRPlusMakerNote" | "HDRPMakerNote" | "HierarchicalSubject" | "History" | "HueAdjustmentAqua" | "HueAdjustmentBlue" | "HueAdjustmentGreen" | "HueAdjustmentMagenta" | "HueAdjustmentOrange" | "HueAdjustmentPurple" | "HueAdjustmentRed" | "HueAdjustmentYellow" | "ICCProfileName" | "ImageMimeType" | "ImageSource" | "InitialViewHeadingDegrees" | "InitialViewPitchDegrees" | "InitialViewRollDegrees" | "InteroperabilityIndex" | "InteroperabilityVersion" | "IsBokehActive" | "IsHDRActive" | "IsNightModeActive" | "Label" | "LastKeywordXMP" | "LateralChromaticAberrationCorrectionAlreadyApplied" | "LegacyIPTCDigest" | "LensFacing" | "LensManualDistortionAmount" | "LensManufacturer" | "LensProfileDigest" | "LensProfileDistortionScale" | "LensProfileEnable" | "LensProfileIsEmbedded" | "LensProfileSetup" | "LensProfileVignettingScale" | "LocationAreaCode" | "Look" | "LuminanceAdjustmentAqua" | "LuminanceAdjustmentBlue" | "LuminanceAdjustmentGreen" | "LuminanceAdjustmentMagenta" | "LuminanceAdjustmentOrange" | "LuminanceAdjustmentPurple" | "LuminanceAdjustmentRed" | "LuminanceAdjustmentYellow" | "LuminanceNoiseReductionContrast" | "LuminanceNoiseReductionDetail" | "LuminanceSmoothing" | "MakerNote" | "Marked" | "Mask" | "MetadataDate" | "MicroVideo" | "MicroVideoOffset" | "MicroVideoPresentationTimestampUs" | "MicroVideoVersion" | "Mime" | "MobileCountryCode" | "MobileNetworkCode" | "ModificationDate" | "MotionPhoto" | "MotionPhotoPresentationTimestampUs" | "MotionPhotoVersion" | "NativeDigest" | "Near" | "Notes" | "ObjectAreaHeight" | "ObjectAreaWidth" | "ObjectNum" | "ObjectPosX" | "ObjectPosY" | "OriginalCreateDateTime" | "OriginalDocumentID" | "OverrideLookVignette" | "ParametricDarks" | "ParametricHighlights" | "ParametricHighlightSplit" | "ParametricLights" | "ParametricMidtoneSplit" | "ParametricShadows" | "ParametricShadowSplit" | "PersonInImage" | "PersonInImageWDetails" | "PerspectiveAspect" | "PerspectiveHorizontal" | "PerspectiveRotate" | "PerspectiveScale" | "PerspectiveUpright" | "PerspectiveVertical" | "PerspectiveX" | "PerspectiveY" | "PhotographicSensitivity" | "PickLabel" | "PipelineVersion" | "PMVersion" | "PortraitVersion" | "PoseHeadingDegrees" | "PosePitchDegrees" | "PoseRollDegrees" | "PostCropVignetteAmount" | "PreservedFileName" | "ProcessVersion" | "Profiles" | "ProjectionType" | "RawFileName" | "RedHue" | "RedSaturation" | "RegionAppliedToDimensionsH" | "RegionAppliedToDimensionsUnit" | "RegionAppliedToDimensionsW" | "RegionAreaH" | "RegionAreaUnit" | "RegionAreaW" | "RegionAreaX" | "RegionAreaY" | "RegionInfo" | "RegionInfoMP" | "RegionName" | "RegionPersonDisplayName" | "RegionRotation" | "RegionType" | "RegistryID" | "RelativeAltitude" | "Rights" | "SaturationAdjustmentAqua" | "SaturationAdjustmentBlue" | "SaturationAdjustmentGreen" | "SaturationAdjustmentMagenta" | "SaturationAdjustmentOrange" | "SaturationAdjustmentPurple" | "SaturationAdjustmentRed" | "SaturationAdjustmentYellow" | "Scene" | "SceneDetectResultConfidences" | "SceneDetectResultIds" | "SelfData" | "ShadowTint" | "SharpenDetail" | "SharpenEdgeMasking" | "SharpenRadius" | "ShotLogData" | "SourcePhotosCount" | "SpecialTypeID" | "SplitToningBalance" | "SplitToningHighlightHue" | "SplitToningHighlightSaturation" | "SplitToningShadowHue" | "SplitToningShadowSaturation" | "StitchingSoftware" | "Subject" | "SubsecTime" | "SurveyingMode" | "Tag" | "Tagged" | "TagsList" | "Texture" | "Tint" | "TlinearGain" | "ToneCurveBlue" | "ToneCurveGreen" | "ToneCurveName" | "ToneCurvePV2012Blue" | "ToneCurvePV2012Green" | "ToneCurvePV2012Red" | "ToneCurveRed" | "ToneMapStrength" | "UprightCenterMode" | "UprightCenterNormX" | "UprightCenterNormY" | "UprightFocalLength35mm" | "UprightFocalMode" | "UprightFourSegmentsCount" | "UprightPreview" | "UprightTransformCount" | "UprightVersion" | "UsePanoramaViewer" | "UTCAtExposure" | "Versions" | "Vibrance" | "VignetteAmount" | "WavelengthFWHM" | "XMPMeta" | "XMPToolkit">;
|
|
18842
18959
|
export type XMPTag = StrEnumKeys<typeof XMPTagsNames>;
|
|
18843
18960
|
/**
|
|
18844
18961
|
* This is a partial list of fields returned by {@link ExifTool.read}.
|
|
@@ -18855,8 +18972,8 @@ export type XMPTag = StrEnumKeys<typeof XMPTagsNames>;
|
|
|
18855
18972
|
* - @groups: comma-separated list of metadata groups where this tag appears (e.g., "EXIF, MakerNotes")
|
|
18856
18973
|
* - @example: representative value for the tag
|
|
18857
18974
|
*
|
|
18858
|
-
* Autogenerated by "npm run mktags" by ExifTool 13.
|
|
18859
|
-
*
|
|
18975
|
+
* Autogenerated by "npm run mktags" by ExifTool 13.46 on Sun Jan 25 2026.
|
|
18976
|
+
* 2998 unique tags were found in 10529 photo and video files.
|
|
18860
18977
|
*
|
|
18861
18978
|
* @see https://exiftool.org/TagNames/
|
|
18862
18979
|
*/
|
|
@@ -18865,5 +18982,5 @@ export interface Tags extends APPTags, CompositeTags, DuckyTags, EXIFTags, ExifT
|
|
|
18865
18982
|
/**
|
|
18866
18983
|
* All tag names combined from all interfaces
|
|
18867
18984
|
*/
|
|
18868
|
-
export declare const TagNames: StrEnum<"zone" | "AboveColor" | "Again" | "AmbientTemperature" | "Aperture" | "AtmosphericTemperature" | "AutoISOMax" | "AutoISOMin" | "AutoRotation" | "B5100" | "Balance" | "Barcode" | "BelowColor" | "Bgain" | "BHighLight" | "BHL" | "BitsPerSample" | "Blk0" | "Blk1" | "BMean" | "Boff" | "BSD" | "BSd" | "BStrobe" | "CameraModel" | "CameraPartNumber" | "CameraSerialNumber" | "CameraSoftware" | "CameraType" | "Case" | "CBal" | "Color" | "COLOR1" | "COLOR2" | "COLOR3" | "COLOR4" | "ColorComponents" | "ColorMode" | "ColorSpace" | "ColorTransform" | "Compass" | "Compression" | "ContTake" | "CreatorSoftware" | "DateTimeGenerated" | "DateTimeOriginal" | "DCTEncodeVersion" | "DeviceName" | "DiagonalFieldOfView" | "DigitalZoom" | "DigitalZoomOn" | "EmbeddedImage" | "EmbeddedImageHeight" | "EmbeddedImageType" | "EmbeddedImageWidth" | "Emissivity" | "EXP1" | "EXP2" | "EXP3" | "ExposRatio" | "Exposure" | "ExposureCompensation" | "ExposureTime" | "ExposureType" | "FieldOfView" | "FilterModel" | "FilterPartNumber" | "FilterSerialNumber" | "FinalRatio" | "FirmwareVersion" | "Flash" | "FlashTime" | "FMean" | "FNumber" | "Fnumber" | "FocusDistance" | "FocusMode" | "FocusPos" | "FocusStepCount" | "FrameRate" | "Gain" | "Gamma" | "GBgain" | "GBoff" | "GHighLight" | "GHL" | "GMean" | "GPSAltitude" | "GPSDOP" | "GPSImgDirection" | "GPSImgDirectionRef" | "GPSLatitude" | "GPSLatitudeRef" | "GPSLongitude" | "GPSLongitudeRef" | "GPSMapDatum" | "GPSSpeed" | "GPSSpeedRef" | "GPSTrack" | "GPSTrackRef" | "GPSValid" | "GPSVersionID" | "GRgain" | "GRoff" | "GSD" | "GSd" | "HDRGainCurve" | "HDRGainCurveSize" | "HDRSetting" | "ID" | "ImageHeight" | "ImageSize" | "ImageWidth" | "IRWindowTemperature" | "IRWindowTransmission" | "Isotherm1Color" | "Isotherm2Color" | "JPEG1" | "LensModel" | "LensPartNumber" | "LensProjection" | "LensSerialNumber" | "LightS" | "Macro" | "Mean" | "Meas1Label" | "Meas1Params" | "Meas1Type" | "Meas2Label" | "Meas2Params" | "Meas2Type" | "MediaUniqueID" | "MetadataVersion" | "Model" | "MotorPos" | "ObjectDistance" | "Offset" | "OffsetX" | "OffsetY" | "OverflowColor" | "Palette" | "PaletteColors" | "PaletteFileName" | "PaletteMethod" | "PaletteName" | "PaletteStretch" | "Param0" | "PhotoResolution" | "PicLen" | "PreviewImageHeight" | "PreviewImageWidth" | "PreviewQuality" | "Protect" | "Protune" | "Quality" | "R5100" | "Rate" | "RawThermalImage" | "RawThermalImageHeight" | "RawThermalImageType" | "RawThermalImageWidth" | "RawValueMedian" | "RawValueRange" | "RawValueRangeMax" | "RawValueRangeMin" | "Real2IR" | "ReflectedApparentTemperature" | "RelativeHumidity" | "Resolution" | "ResolutionUnit" | "REV" | "Rgain" | "RHighLight" | "RHL" | "RMean" | "Roff" | "RSD" | "RSd" | "RStrobe" | "S0" | "SerialNumber" | "Sharpness" | "SpotMeter" | "StrobeTime" | "T0" | "TagB" | "TagQ" | "TagR" | "TagS" | "ThmLen" | "UnderflowColor" | "Version" | "WhiteBalance" | "XResolution" | "YLevel" | "YResolution" | "YTarget" | "Zoom" | "ZoomPos" | "AdvancedSceneMode" | "AutoFocus" | "AvgBitrate" | "BlueBalance" | "CFAPattern" | "CircleOfConfusion" | "ConditionalFEC" | "ContrastDetectAF" | "Copyright" | "Country" | "CreateDate" | "Creator" | "DateCreated" | "DateTimeCreated" | "Description" | "DigitalCreationDateTime" | "DOF" | "DriveMode" | "Duration" | "ExtenderStatus" | "FileNumber" | "FlashType" | "FocalLength35efl" | "FOV" | "GPSAltitudeRef" | "GPSDateTime" | "GPSDestLatitude" | "GPSDestLongitude" | "GPSPosition" | "HyperfocalDistance" | "ISO" | "Keywords" | "Lens" | "Lens35efl" | "LensID" | "LensSpec" | "LensType" | "LightValue" | "Megapixels" | "ModifyDate" | "Orientation" | "OriginalDecisionData" | "PeakSpectralSensitivity" | "PhaseDetectAF" | "PreviewImage" | "PreviewImageSize" | "Rating" | "RedBalance" | "RedEyeReduction" | "RicohPitch" | "RicohRoll" | "Rotation" | "RunTimeSincePowerUp" | "ScaleFactor35efl" | "ShootingMode" | "ShutterCurtainHack" | "ShutterSpeed" | "State" | "SubSecCreateDate" | "SubSecDateTimeOriginal" | "SubSecModifyDate" | "Acceleration" | "ActiveArea" | "AnalogBalance" | "AntiAliasStrength" | "ApertureValue" | "Artist" | "AsShotNeutral" | "AsShotWhiteXY" | "BaselineExposure" | "BaselineNoise" | "BaselineSharpness" | "BayerGreenSplit" | "BestQualityScale" | "BlackLevel" | "BlackLevelBlue" | "BlackLevelGreen" | "BlackLevelRed" | "BlackLevelRepeatDim" | "BrightnessValue" | "CameraElevationAngle" | "CFALayout" | "CFAPlaneColor" | "CFARepeatPatternDim" | "ChromaticAberrationCorrection" | "ChromaticAberrationCorrParams" | "CompositeImage" | "CompositeImageCount" | "CompositeImageExposureTimes" | "CompressedBitsPerPixel" | "Contrast" | "CropBottom" | "CropLeft" | "CropRight" | "CropTop" | "CustomRendered" | "DefaultBlackRender" | "DefaultCropOrigin" | "DefaultCropSize" | "DefaultScale" | "DefaultUserCrop" | "DeviceSettingDescription" | "DigitalZoomRatio" | "DistortionCorrection" | "DistortionCorrParams" | "DNGBackwardVersion" | "DNGVersion" | "DocumentName" | "ExifImageHeight" | "ExifImageWidth" | "ExifVersion" | "ExposureIndex" | "ExposureMode" | "ExposureProgram" | "FileSource" | "FlashEnergy" | "FocalLength" | "FocalLengthIn35mmFormat" | "FocalPlaneResolutionUnit" | "FocalPlaneXResolution" | "FocalPlaneYResolution" | "GainControl" | "GPSAreaInformation" | "GPSDateStamp" | "GPSDestBearing" | "GPSDestBearingRef" | "GPSDestDistance" | "GPSDestDistanceRef" | "GPSDestLatitudeRef" | "GPSDestLongitudeRef" | "GPSDifferential" | "GPSHPositioningError" | "GPSMeasureMode" | "GPSProcessingMethod" | "GPSSatellites" | "GPSStatus" | "GPSTimeStamp" | "HighISOMultiplierBlue" | "HighISOMultiplierGreen" | "HighISOMultiplierRed" | "HostComputer" | "ImageDescription" | "ImageNumber" | "ImageTitle" | "ImageUniqueID" | "InteropIndex" | "InteropVersion" | "ISOSpeed" | "JpgFromRaw" | "JpgFromRawLength" | "JpgFromRawStart" | "LensInfo" | "LensMake" | "LightSource" | "LinearityLimitBlue" | "LinearityLimitGreen" | "LinearityLimitRed" | "LinearizationTable" | "LinearResponseLimit" | "Make" | "MakerNoteSafety" | "MakerNoteSamsung1a" | "MakerNoteUnknownBinary" | "MakerNoteUnknownText" | "MaxApertureValue" | "MeteringMode" | "Model2" | "NewRawImageDigest" | "Noise" | "NoiseProfile" | "NoiseReductionApplied" | "NoiseReductionParams" | "OffsetSchema" | "OffsetTime" | "OffsetTimeDigitized" | "OffsetTimeOriginal" | "OtherImage" | "OtherImageLength" | "OtherImageStart" | "OwnerName" | "Padding" | "PageName" | "PanasonicRawVersion" | "Photographer" | "PhotometricInterpretation" | "PlanarConfiguration" | "Pressure" | "PreviewColorSpace" | "PreviewDateTime" | "PreviewImageLength" | "PreviewImageStart" | "PreviewTIFF" | "PrimaryChromaticities" | "ProcessingSoftware" | "ProfileEmbedPolicy" | "ProfileGainTableMap" | "ProfileName" | "ProfileToneCurve" | "RatingPercent" | "RawDataOffset" | "RawDataUniqueID" | "RawFormat" | "RawImageSegmentation" | "RecommendedExposureIndex" | "ReferenceBlackWhite" | "RelatedImageFileFormat" | "RelatedImageHeight" | "RelatedImageWidth" | "RelatedSoundFile" | "RowsPerStrip" | "SamplesPerPixel" | "Saturation" | "SceneCaptureType" | "SceneType" | "SemanticName" | "SensingMethod" | "SensitivityType" | "SensorBottomBorder" | "SensorHeight" | "SensorLeftBorder" | "SensorRightBorder" | "SensorTopBorder" | "SensorWidth" | "ShadowScale" | "ShutterSpeedValue" | "Software" | "SonyCropSize" | "SonyCropTopLeft" | "SonyRawFileType" | "SonyRawImageSize" | "SonyToneCurve" | "SpatialFrequencyResponse" | "SRawType" | "StandardOutputSensitivity" | "StripByteCounts" | "StripOffsets" | "SubfileType" | "SubjectArea" | "SubjectDistance" | "SubjectDistanceRange" | "SubjectLocation" | "SubSecTime" | "SubSecTimeDigitized" | "SubSecTimeOriginal" | "ThumbnailImage" | "ThumbnailLength" | "ThumbnailOffset" | "ThumbnailTIFF" | "TileByteCounts" | "TileLength" | "TileOffsets" | "TileWidth" | "TimeZoneOffset" | "TransferFunction" | "UniqueCameraModel" | "UserComment" | "VignettingCorrection" | "VignettingCorrParams" | "WaterDepth" | "WBBlueLevel" | "WBGreenLevel" | "WBRedLevel" | "WhiteLevel" | "WhitePoint" | "XiaomiModel" | "XPAuthor" | "XPComment" | "XPKeywords" | "XPSubject" | "XPTitle" | "YCbCrCoefficients" | "YCbCrPositioning" | "YCbCrSubSampling" | "Error" | "ExifToolVersion" | "SourceFile" | "Warning" | "tz" | "tzSource" | "zoneSource" | "errors" | "warnings" | "BitDepth" | "BMPVersion" | "Comment" | "CurrentIPTCDigest" | "Directory" | "EncodingProcess" | "ExifByteOrder" | "FileAccessDate" | "FileCreateDate" | "FileInodeChangeDate" | "FileModifyDate" | "FileName" | "FilePermissions" | "FileSize" | "FileType" | "FileTypeExtension" | "ImageDataMD5" | "ImageLength" | "MakerNoteByteOrder" | "MIMEType" | "NumColors" | "NumImportantColors" | "PixelsPerMeterX" | "PixelsPerMeterY" | "Planes" | "AudioStream" | "CodePage" | "CreatingApplication" | "ExtensionClassID" | "ExtensionCreateDate" | "ExtensionDescription" | "ExtensionModifyDate" | "ExtensionName" | "ExtensionPersistence" | "ScreenNail" | "UsedExtensionNumbers" | "GeolocationBearing" | "GeolocationCity" | "GeolocationCountry" | "GeolocationCountryCode" | "GeolocationDistance" | "GeolocationFeatureCode" | "GeolocationFeatureType" | "GeolocationPopulation" | "GeolocationPosition" | "GeolocationRegion" | "GeolocationSubregion" | "GeolocationTimeZone" | "GeolocationWarning" | "ColorSpaceData" | "ConnectionSpaceIlluminant" | "DeviceAttributes" | "DeviceManufacturer" | "DeviceMfgDesc" | "DeviceModel" | "DeviceModelDesc" | "Luminance" | "ProfileDescription" | "ApplicationRecordVersion" | "ObjectTypeReference" | "ObjectAttributeReference" | "ObjectName" | "EditStatus" | "EditorialUpDate" | "Urgency" | "SubjectReference" | "Category" | "SupplementalCategories" | "FixtureIdentifier" | "ContentLocationCode" | "ContentLocationName" | "ReleaseDate" | "ReleaseTime" | "ExpirationDate" | "ExpirationTime" | "SpecialInstructions" | "ActionAdvised" | "ReferenceService" | "ReferenceDate" | "ReferenceNumber" | "OriginatingProgram" | "ProgramVersion" | "ObjectCycle" | "By-line" | "By-lineTitle" | "City" | "Sub-location" | "Province-State" | "Country-PrimaryLocationCode" | "Country-PrimaryLocationName" | "OriginalTransmissionReference" | "Headline" | "Credit" | "Source" | "CopyrightNotice" | "Contact" | "Caption-Abstract" | "LocalCaption" | "Writer-Editor" | "ImageType" | "ImageOrientation" | "LanguageIdentifier" | "AudioType" | "AudioSamplingRate" | "AudioSamplingResolution" | "AudioDuration" | "AudioOutcue" | "JobID" | "MasterDocumentID" | "ShortDocumentID" | "UniqueDocumentID" | "OwnerID" | "ObjectPreviewFileFormat" | "ObjectPreviewFileVersion" | "Prefs" | "ClassifyState" | "SimilarityIndex" | "DocumentNotes" | "DocumentHistory" | "ExifCameraInfo" | "CodedCharacterSet" | "DigitalCreationDate" | "DigitalCreationTime" | "EnvelopeRecordVersion" | "TimeCreated" | "ImageDataHash" | "JFIFVersion" | "ThumbnailHeight" | "ThumbnailWidth" | "UniformResourceName" | "AIScene" | "FilterId" | "Hdr" | "Mirror" | "OpMode" | "SensorType" | "ZoomMultiple" | "Actions" | "Alg" | "Exclusions" | "Hash" | "InstanceID" | "Item0" | "Item1" | "Item3" | "JUMDLabel" | "JUMDType" | "Pad" | "Pad2" | "Parts" | "Signature" | "DependentImage1EntryNumber" | "DependentImage2EntryNumber" | "ImageUIDList" | "MPFVersion" | "MPImageFlags" | "MPImageFormat" | "MPImageLength" | "MPImageStart" | "MPImageType" | "NumberOfImages" | "TotalFrames" | "Collections" | "KeywordInfo" | "HierarchicalKeywords" | "AccelerationTracking" | "AccelerationVector" | "Accelerometer" | "AccelerometerX" | "AccelerometerY" | "AccelerometerZ" | "AccessorySerialNumber" | "AccessoryType" | "ActionInAFCCont" | "ActionPriority" | "ActualCompensation" | "AddAspectRatioInfo" | "AddIPTCInformation" | "AddOriginalDecisionData" | "ADJDebugInfo" | "AdjustmentMode" | "ADLBracketingStep" | "ADLBracketingType" | "AdvancedFilter" | "AdvancedSceneType" | "AEAperture" | "AEApertureSteps" | "AEAverage" | "AEBAutoCancel" | "AEBBracketValue" | "AEBracketingSteps" | "AEBSequence" | "AEBSequenceAutoCancel" | "AEBShotCount" | "AEBXv" | "AEDebugInfo" | "AEExposureTime" | "AEHistogramInfo" | "AELButton" | "AELExposureIndicator" | "AELiveViewHistogramInfo" | "AELiveViewLocalHistogram" | "AELocalHistogram" | "AELock" | "AELockButton" | "AELockButtonPlusDials" | "AELockMeterModeAfterFocus" | "AEMaxAperture" | "AEMeteringMode" | "AEMeteringSegments" | "AEMicroadjustment" | "AEMinAperture" | "AEMinExposureTime" | "AEProgramMode" | "AESetting" | "AEStable" | "AETarget" | "AEWhiteBalance" | "AEXv" | "AFAccelDecelTracking" | "AFActivation" | "AFAdjustment" | "AFAndMeteringButtons" | "AFAperture" | "AFAreaHeight" | "AFAreaHeights" | "AFAreaIllumination" | "AFAreaMode" | "AFAreaModeSetting" | "AFAreaPointSize" | "AFAreas" | "AFAreaSelectionMethod" | "AFAreaSelectMethod" | "AFAreaSize" | "AFAreaWidth" | "AFAreaWidths" | "AFAreaXPosition" | "AFAreaXPositions" | "AFAreaYPosition" | "AFAreaYPositions" | "AFAreaZoneSize" | "AFAssist" | "AFAssistBeam" | "AFAssistLamp" | "AFButtonPressed" | "AFCHold" | "AFConfidence" | "AFConfigTool" | "AFCoordinatesAvailable" | "AFCPointTracking" | "AFCSensitivity" | "AFDebugInfo" | "AFDefocus" | "AFDetectionMethod" | "AFDuringLiveView" | "AFFineTune" | "AFFineTuneAdj" | "AFFineTuneAdjTele" | "AFFineTuneIndex" | "AFFocusArea" | "AFFrameSize" | "AFIlluminator" | "AFImageHeight" | "AFImageWidth" | "AFInfo2Version" | "AFIntegrationTime" | "AFMeasuredDepth" | "AFMicroAdj" | "AFMicroAdjMode" | "AFMicroAdjRegisteredLenses" | "AFMicroadjustment" | "AFMicroAdjValue" | "AFMode" | "AFModeRestrictions" | "AFOnAELockButtonSwitch" | "AFOnButton" | "AFPerformance" | "AFPoint" | "AFPointActivationArea" | "AFPointAreaExpansion" | "AFPointAtShutterRelease" | "AFPointAutoSelection" | "AFPointBrightness" | "AFPointDetails" | "AFPointDisplayDuringFocus" | "AFPointIllumination" | "AFPointInFocus" | "AFPointMode" | "AFPointPosition" | "AFPointRegistration" | "AFPoints" | "AFPointSel" | "AFPointSelected" | "AFPointSelection" | "AFPointSelectionMethod" | "AFPointSetting" | "AFPointsInFocus" | "AFPointsInFocus1D" | "AFPointsInFocus5D" | "AFPointSpotMetering" | "AFPointsSelected" | "AFPointsSpecial" | "AFPointsUsed" | "AFPointSwitching" | "AFPredictor" | "AFTracking" | "AFTrackingSensitivity" | "AFType" | "AFWithShutter" | "AIServoContinuousShooting" | "AIServoFirstImage" | "AIServoFirstImagePriority" | "AIServoImagePriority" | "AIServoSecondImage" | "AIServoSecondImagePriority" | "AIServoTrackingMethod" | "AIServoTrackingSensitivity" | "AISubjectTrackingMode" | "Altitude" | "AmbienceSelection" | "AmbientTemperatureFahrenheit" | "AndroidRelease" | "AntiFlicker" | "AntiShockWaitingTime" | "ApertureLock" | "ApertureRange" | "ApertureRingUse" | "ApertureSetting" | "Application" | "ApplySettingsToLiveView" | "ApplyShootingMeteringMode" | "ApproximateFNumber" | "AppVersion" | "ArtFilter" | "ArtFilterEffect" | "ArtMode" | "ArtModeParameters" | "AspectFrame" | "AspectRatio" | "AssignBktButton" | "AssignFuncButton" | "AssignMovieFunc1ButtonPlusDials" | "AssignMovieFunc2Button" | "AssignMoviePreviewButtonPlusDials" | "AssignMovieRecordButton" | "AssignMovieRecordButtonPlusDials" | "AssignMovieSubselector" | "AssignMovieSubselectorPlusDials" | "AssignRemoteFnButton" | "AssistButtonFunction" | "Audio" | "AudioCompression" | "AutoAFPointColorTracking" | "AutoAFPointSelEOSiTRAF" | "AutoAperture" | "AutoBracket" | "AutoBracketing" | "AutoBracketingMode" | "AutoBracketingSet" | "AutoBracketModeM" | "AutoBracketOrder" | "AutoBracketSet" | "AutoDistortionControl" | "AutoDynamicRange" | "AutoExposureBracketing" | "AutoFlashISOSensitivity" | "AutoFocusModeRestrictions" | "AutoFP" | "AutoISO" | "AutoISOMinShutterSpeed" | "AutoLightingOptimizer" | "AutoPortraitFramed" | "AutoRotate" | "AuxiliaryLens" | "AvApertureSetting" | "AverageBlackLevel" | "AverageLV" | "AvSettingWithoutLens" | "BabyAge" | "BabyName" | "BarometerInfoVersion" | "BaseExposureCompensation" | "BaseISO" | "BatteryLevel" | "BatteryOrder" | "BatteryState" | "BatteryTemperature" | "BatteryType" | "BatteryVoltage" | "BayerPattern" | "Beep" | "BeepPitch" | "BeepVolume" | "BestShotMode" | "BlackLevels" | "BlackMaskBottomBorder" | "BlackMaskLeftBorder" | "BlackMaskRightBorder" | "BlackMaskTopBorder" | "BlackPoint" | "BleachBypassToning" | "BlueGain" | "BlurControl" | "BlurWarning" | "BoardTemperature" | "BodyBatteryADLoad" | "BodyBatteryADNoLoad" | "BodyBatteryPercent" | "BodyBatteryState" | "BodyBatteryVoltage" | "BodyFirmware" | "BodyFirmwareVersion" | "BodySerialNumber" | "BracketIncrement" | "BracketingBurstOptions" | "BracketMode" | "BracketProgram" | "BracketSequence" | "BracketSet" | "BracketSettings" | "BracketShotNumber" | "BracketStep" | "BracketValue" | "Brightness" | "BuildNumber" | "BulbDuration" | "BurstGroupID" | "BurstMode" | "BurstShot" | "BurstSpeed" | "BurstUUID" | "ButtonFunctionControlOff" | "BWFilter" | "BWMode" | "CAFArea" | "CAFGridSize" | "CAFPointsInFocus" | "CAFPointsSelected" | "Calibration" | "CameraDateTime" | "CameraID" | "CameraISO" | "CameraOrientation" | "CameraParameters" | "CameraPictureStyle" | "CameraPitch" | "CameraRoll" | "CameraSettingsVersion" | "CameraYaw" | "CanonExposureMode" | "CanonFileDescription" | "CanonFileLength" | "CanonFirmwareVersion" | "CanonFlashMode" | "CanonImageHeight" | "CanonImageSize" | "CanonImageType" | "CanonImageWidth" | "CanonModelID" | "CardShutterLock" | "CaseAutoSetting" | "Categories" | "CCDBoardVersion" | "CCDScanMode" | "CCDSensitivity" | "CCDVersion" | "CenterAFArea" | "CenterFocusPoint" | "CenterWeightedAreaSize" | "CHModeShootingSpeed" | "ChromaticAberrationCorr" | "ChromaticAberrationSetting" | "ChrominanceNoiseReduction" | "City2" | "Clarity" | "ClarityControl" | "ClearRetouch" | "CLModeShootingSpeed" | "CmdDialsApertureSetting" | "CmdDialsChangeMainSub" | "CmdDialsMenuAndPlayback" | "CmdDialsReverseRotation" | "CmdDialsReverseRotExposureComp" | "ColorAdjustment" | "ColorAdjustmentMode" | "ColorBalanceBlue" | "ColorBalanceGreen" | "ColorBalanceRed" | "ColorBalanceVersion" | "ColorBitDepth" | "ColorBW" | "ColorChromeEffect" | "ColorChromeFXBlue" | "ColorCompensationFilter" | "ColorCompensationFilterCustom" | "ColorCompensationFilterSet" | "ColorControl" | "ColorCreatorEffect" | "ColorDataVersion" | "ColorEffect" | "ColorFilter" | "ColorGain" | "ColorHue" | "ColorMatrix" | "ColorMatrixA" | "ColorMatrixB" | "ColorMatrixNumber" | "ColorProfileSettings" | "ColorTempAsShot" | "ColorTempAuto" | "ColorTempCloudy" | "ColorTempCustom" | "ColorTempDaylight" | "ColorTemperature" | "ColorTemperatureAuto" | "ColorTemperatureCustom" | "ColorTemperatureSet" | "ColorTemperatureSetting" | "ColorTempFlash" | "ColorTempFluorescent" | "ColorTempKelvin" | "ColorTempMeasured" | "ColorTempShade" | "ColorTempTungsten" | "ColorTint" | "ColorTone" | "ColorToneAuto" | "ColorToneFaithful" | "ColorToneLandscape" | "ColorToneNeutral" | "ColorTonePortrait" | "ColorToneStandard" | "CommandDials" | "CommandDialsApertureSetting" | "CommandDialsChangeMainSub" | "CommandDialsMenuAndPlayback" | "CommandDialsReverseRotation" | "CommanderChannel" | "CommanderGroupAManualOutput" | "CommanderGroupAMode" | "CommanderGroupBManualOutput" | "CommanderGroupBMode" | "CommanderInternalFlash" | "CommanderInternalManualOutput" | "CommanderInternalTTLComp" | "CommanderInternalTTLCompBuiltin" | "CommanderInternalTTLCompGroupA" | "CommanderInternalTTLCompGroupB" | "ComponentBitDepth" | "ComponentVersion" | "CompositeImageMode" | "CompositionAdjust" | "CompositionAdjustRotation" | "CompositionAdjustX" | "CompositionAdjustY" | "CompressedImageSize" | "CompressionFactor" | "CompressionRatio" | "CompressorVersion" | "ContentIdentifier" | "ContinuousBracketing" | "ContinuousDrive" | "ContinuousModeDisplay" | "ContinuousModeLiveView" | "ContinuousShootingSpeed" | "ContinuousShotLimit" | "ContrastAuto" | "ContrastCurve" | "ContrastDetectAFArea" | "ContrastDetectAFInFocus" | "ContrastFaithful" | "ContrastHighlight" | "ContrastHighlightShadowAdj" | "ContrastLandscape" | "ContrastMode" | "ContrastMonochrome" | "ContrastNeutral" | "ContrastPortrait" | "ContrastSetting" | "ContrastShadow" | "ContrastStandard" | "ControlDialSet" | "ControllerBoardVersion" | "ControlMode" | "ControlRingResponse" | "ControlRingRotation" | "ConversionLens" | "Converter" | "CoringFilter" | "CorrelatedColorTemp" | "CountryCode" | "CPUFirmwareVersion" | "CPUVersions" | "CreativeStyle" | "CreativeStyleSetting" | "CropArea" | "CropBottomMargin" | "CropHeight" | "CropHiSpeed" | "CropLeftMargin" | "CropMode" | "CroppedImageHeight" | "CroppedImageLeft" | "CroppedImageTop" | "CroppedImageWidth" | "CropRightMargin" | "CropTopMargin" | "CropWidth" | "CrossProcess" | "CustomControls" | "CustomizeDials" | "CustomPictureStyleFileName" | "CustomSaturation" | "CustomSettingsAllDefault" | "CustomSettingsBank" | "CustomWBBlueLevel" | "CustomWBError" | "CustomWBGreenLevel" | "CustomWBRedLevel" | "CustomWBSetting" | "DarkFocusEnvironment" | "DataDump" | "DataScaling" | "Date" | "DateDisplayFormat" | "DateImprint" | "DateStampMode" | "DateTimeStamp" | "DateTimeUTC" | "DaylightSavings" | "DECPosition" | "DefaultEraseOption" | "DeletedImageCount" | "DestinationCity" | "DestinationCityCode" | "DestinationDST" | "DevelopmentDynamicRange" | "DeviceCodename" | "DeviceHardwareRevision" | "DeviceMake" | "DeviceType" | "DialDirectionTvAv" | "DiffractionCompensation" | "DiffractionCorrection" | "DigitalFilter" | "DigitalGain" | "DigitalICE" | "DigitalLensOptimizer" | "DigitalLensOptimizerSetting" | "DirectoryIndex" | "DirectoryNumber" | "DispButton" | "DisplayAllAFPoints" | "DisplayAperture" | "DistortionControl" | "DistortionCorrectionSetting" | "DistortionCorrectionValue" | "DistortionCorrectionVersion" | "DistortionCorrParamsNumber" | "DistortionCorrParamsPresent" | "DriveModeSetting" | "DriveSpeed" | "DSPFirmwareVersion" | "DualPixelRaw" | "DustRemovalData" | "DXCropAlert" | "DynamicAFArea" | "DynamicAreaAFAssist" | "DynamicAreaAFDisplay" | "DynamicRange" | "DynamicRangeBoost" | "DynamicRangeExpansion" | "DynamicRangeOptimizer" | "DynamicRangeOptimizerBracket" | "DynamicRangeOptimizerLevel" | "DynamicRangeOptimizerMode" | "DynamicRangeOptimizerSetting" | "DynamicRangeSetting" | "EasyExposureComp" | "EasyExposureCompensation" | "EasyMode" | "EffectiveLV" | "EffectiveMaxAperture" | "ElectronicFrontCurtainShutter" | "EnergySavingMode" | "Enhancement" | "Enhancer" | "EpsonImageHeight" | "EpsonImageWidth" | "EpsonSoftware" | "EquipmentVersion" | "ETTLII" | "EventNumber" | "EVSteps" | "EVStepSize" | "ExitPupilPosition" | "ExposureBracketingIndicatorLast" | "ExposureBracketShotNumber" | "ExposureBracketStepSize" | "ExposureBracketValue" | "ExposureCompAutoCancel" | "ExposureCompensationMode" | "ExposureCompensationSet" | "ExposureCompensationSetting" | "ExposureCompStepSize" | "ExposureControlStep" | "ExposureControlStepSize" | "ExposureCount" | "ExposureDelayMode" | "ExposureDifference" | "ExposureIndicator" | "ExposureLevelIncrements" | "ExposureModeInManual" | "ExposureShift" | "ExposureStandardAdjustment" | "ExposureTimeMax" | "ExposureTimeMin" | "ExposureTuning" | "ExposureWarning" | "EXRAuto" | "EXRMode" | "ExtendedMenuBanks" | "ExtendedShutterSpeeds" | "ExtendedWBDetect" | "Extender" | "ExtenderFirmwareVersion" | "ExtenderModel" | "ExtenderSerialNumber" | "ExternalFlash" | "ExternalFlashBounce" | "ExternalFlashCompensation" | "ExternalFlashExposureComp" | "ExternalFlashFirmware" | "ExternalFlashFlags" | "ExternalFlashGuideNumber" | "ExternalFlashGValue" | "ExternalFlashMode" | "ExternalFlashReadyState" | "ExternalFlashStatus" | "ExternalFlashZoom" | "ExternalFlashZoomOverride" | "ExternalSensorBrightnessValue" | "ExtraInfoVersion" | "EyeDetection" | "EyeStartAF" | "FaceDetect" | "FaceDetectArea" | "FaceDetectFrameCrop" | "FaceDetectFrameSize" | "FaceDetection" | "FaceElementPositions" | "FaceElementSelected" | "FaceElementTypes" | "FaceImageSize" | "FaceInfoLength" | "FaceInfoOffset" | "FaceName" | "FacePosition" | "FacePositions" | "FaceRecognition" | "FacesDetected" | "FacesDetectedA" | "FacesDetectedB" | "FacesRecognized" | "FaceWidth" | "Fade" | "FEMicroadjustment" | "FileFormat" | "FileIndex" | "FileInfoVersion" | "FileNumberMemory" | "FileNumberSequence" | "FillFlashAutoReduction" | "FilmGrainEffect" | "FilmMode" | "FilmType" | "FilterEffect" | "FilterEffectAuto" | "FilterEffectMonochrome" | "FinderDisplayDuringExposure" | "FineSharpness" | "FineTuneOptCenterWeighted" | "FineTuneOptHighlightWeighted" | "FineTuneOptMatrixMetering" | "FineTuneOptSpotMetering" | "FinishedImage" | "Firmware" | "FirmwareDate" | "FirmwareID" | "FirmwareName" | "FirmwareRevision" | "FirstFrameActionInAFC" | "FisheyeFilter" | "FlashAction" | "FlashActionExternal" | "FlashActivity" | "FlashBatteryLevel" | "FlashBias" | "FlashBits" | "FlashBurstPriority" | "FlashButtonFunction" | "FlashChargeLevel" | "FlashColorFilter" | "FlashCommanderMode" | "FlashCompensation" | "FlashControl" | "FlashControlMode" | "FlashCurtain" | "FlashDefault" | "FlashDevice" | "FlashDistance" | "FlashExposureBracketValue" | "FlashExposureComp" | "FlashExposureCompArea" | "FlashExposureCompSet" | "FlashExposureIndicator" | "FlashExposureIndicatorLast" | "FlashExposureIndicatorNext" | "FlashExposureLock" | "FlashFired" | "FlashFiring" | "FlashFirmwareVersion" | "FlashFocalLength" | "FlashFunction" | "FlashGNDistance" | "FlashGroupACompensation" | "FlashGroupAControlMode" | "FlashGroupBCompensation" | "FlashGroupBControlMode" | "FlashGroupCCompensation" | "FlashGroupCControlMode" | "FlashGuideNumber" | "FlashIlluminationPattern" | "FlashInfoVersion" | "FlashIntensity" | "FlashLevel" | "FlashMasterControlMode" | "FlashMetering" | "FlashMeteringMode" | "FlashMeteringSegments" | "FlashMode" | "FlashModel" | "FlashOptions" | "FlashOutput" | "FlashRemoteControl" | "FlashSerialNumber" | "FlashSetting" | "FlashSource" | "FlashStatus" | "FlashStatusExternal" | "FlashSyncMode" | "FlashSyncSpeed" | "FlashSyncSpeedAv" | "FlashThreshold" | "FlashWarning" | "FlexibleSpotPosition" | "FlickAdvanceDirection" | "FlickerReduce" | "FlickerReduction" | "FlickerReductionIndicator" | "FlickerReductionShooting" | "FlightDegree" | "FlightSpeed" | "FocalLengthTeleZoom" | "FocalPlaneAFPointArea" | "FocalPlaneAFPointsUsed" | "FocalPlaneDiagonal" | "FocalPlaneXSize" | "FocalPlaneYSize" | "FocalType" | "FocalUnits" | "FocusArea" | "FocusAreaSelection" | "FocusBracket" | "FocusBracketing" | "FocusBracketStepSize" | "FocusContinuous" | "FocusDisplayAIServoAndMF" | "FocusDistanceLower" | "FocusDistanceRange" | "FocusDistanceUpper" | "FocusFrameSize" | "FocusHoldButton" | "FocusInfoVersion" | "FocusingScreen" | "FocusLocation" | "FocusLocked" | "FocusModeSetting" | "FocusModeSwitch" | "FocusPeakingHighlightColor" | "FocusPeakingLevel" | "FocusPixel" | "FocusPointBrightness" | "FocusPointPersistence" | "FocusPointSchema" | "FocusPointSelectionSpeed" | "FocusPointWrap" | "FocusPosition" | "FocusPositionHorizontal" | "FocusPositionVertical" | "FocusProcess" | "FocusRange" | "FocusRangeIndex" | "FocusResult" | "FocusRingRotation" | "FocusSetting" | "FocusShiftExposureLock" | "FocusShiftInterval" | "FocusShiftNumberShots" | "FocusShiftShooting" | "FocusShiftStepWidth" | "FocusStatus" | "FocusStepInfinity" | "FocusStepNear" | "FocusTrackingLockOn" | "FocusWarning" | "FolderName" | "FolderNumber" | "FrameCount" | "FrameNumber" | "FramingGridDisplay" | "FreeBytes" | "FreeMemoryCardImages" | "FujiFlashMode" | "FujiModel" | "FullImageSize" | "FullPressSnap" | "Func1Button" | "Func1ButtonPlusDials" | "Func2Button" | "Func3Button" | "FuncButton" | "FuncButtonPlusDials" | "FunctionButton" | "GainBase" | "GEImageSize" | "GEMake" | "GEModel" | "GimbalDegree" | "Gradation" | "GrainEffectRoughness" | "GrainEffectSize" | "GrainyBWFilter" | "GreenGain" | "GridDisplay" | "GripBatteryADLoad" | "GripBatteryADNoLoad" | "GripBatteryPercent" | "GripBatteryState" | "GripBatteryVoltage" | "GroupAreaAFIllumination" | "HDMIBitDepth" | "HDMIExternalRecorder" | "HDMIOutputRange" | "HDMIOutputResolution" | "HDR" | "HDREffect" | "HDRGain" | "HDRHeadroom" | "HDRImageType" | "HDRInfoVersion" | "HDRLevel" | "HDRPSoftware" | "HDRSmoothing" | "HiddenDataLength" | "HiddenDataOffset" | "HighFrameRate" | "HighISONoiseReduction" | "Highlight" | "Highlights" | "HighlightShadow" | "HighlightTone" | "HighlightTonePriority" | "HighlightWarning" | "HighLowKeyAdj" | "HighSpeedSync" | "Histogram" | "HometownCity" | "HometownCityCode" | "HometownDST" | "HostSoftwareExportVersion" | "HostSoftwareRendering" | "Hue" | "HueAdjust" | "HueAdjustment" | "HyperlapsDebugInfo" | "Illumination" | "ImageAdjustment" | "ImageArea" | "ImageAuthentication" | "ImageBoundary" | "ImageCaptureType" | "ImageCount" | "ImageData" | "ImageDataSize" | "ImageEditCount" | "ImageEditing" | "ImageEffects" | "ImageGeneration" | "ImageIDNumber" | "ImageName" | "ImageOptimization" | "ImageProcessing" | "ImageProcessingVersion" | "ImageQuality" | "ImageReview" | "ImageReviewMonitorOffTime" | "ImageReviewTime" | "ImageRotated" | "ImageSizeRAW" | "ImageStabilization" | "ImageStabilizationSetting" | "ImageStyle" | "ImageTemperatureMax" | "ImageTemperatureMin" | "ImageTone" | "InfoButtonWhenShooting" | "InfraredIlluminator" | "InitialAFPointAIServoAF" | "InitialAFPointInServo" | "InitialZoomLiveView" | "InitialZoomSetting" | "InitParamsText" | "InstantPlaybackSetup" | "InstantPlaybackTime" | "IntelligentAuto" | "IntelligentContrast" | "IntelligentExposure" | "IntelligentResolution" | "InternalFlash" | "InternalFlashMode" | "InternalFlashStrength" | "InternalFlashTable" | "InternalNDFilter" | "InternalSerialNumber" | "IntervalDurationHours" | "IntervalDurationMinutes" | "IntervalDurationSeconds" | "IntervalExposureSmoothing" | "IntervalLength" | "IntervalMode" | "IntervalNumber" | "IntervalPriority" | "Intervals" | "IntervalShooting" | "ISO2" | "ISOAuto" | "ISOAutoFlashLimit" | "ISOAutoHiLimit" | "ISOAutoMax" | "ISOAutoMin" | "ISOAutoMinSpeed" | "ISOAutoShutterTime" | "ISODisplay" | "ISOExpansion" | "ISOFloor" | "ISOMax" | "ISOMin" | "ISOSelected" | "ISOSelection" | "ISOSensitivityStep" | "ISOSetting" | "ISOSpeedExpansion" | "ISOSpeedIncrements" | "ISOSpeedRange" | "ISOStepSize" | "ISOValue" | "JPEGQuality" | "JPGCompression" | "JpgRecordedPixels" | "KeepExposure" | "KeystoneCompensation" | "KeystoneDirection" | "KeystoneValue" | "KodakImageHeight" | "KodakImageWidth" | "KodakInfoType" | "KodakMake" | "KodakMaker" | "KodakModel" | "KodakVersion" | "Landmark" | "Language" | "LastFileNumber" | "LateralChromaticAberration" | "LCDDisplayAtPowerOn" | "LCDDisplayReturnToShoot" | "LCDIllumination" | "LCDIlluminationDuringBulb" | "LCDPanels" | "LensApertureRange" | "LensControlRing" | "LensDataVersion" | "LensDistortionParams" | "LensDriveNoAF" | "LensDriveWhenAFImpossible" | "LensFirmware" | "LensFirmwareVersion" | "LensFocalLength" | "LensFocalRange" | "LensFocusFunctionButtons" | "LensFormat" | "LensFStops" | "LensFunc1Button" | "LensFunc2Button" | "LensIDNumber" | "LensMaxApertureRange" | "LensModulationOptimizer" | "LensMount" | "LensMountType" | "LensPositionAbsolute" | "LensProfileName" | "LensProperties" | "LensShading" | "LensShutterLock" | "LensSpecFeatures" | "LensTemperature" | "LensType2" | "LensType3" | "LensTypeMake" | "LensTypeModel" | "LensZoomPosition" | "LevelIndicator" | "LevelOrientation" | "LightCondition" | "LightingMode" | "LightReading" | "LightSourceSpecial" | "LightSwitch" | "LightValueCenter" | "LightValuePeriphery" | "LimitAFAreaModeSelection" | "LinearityUpperMargin" | "LinkAEToAFPoint" | "LivePhotoVideoIndex" | "LiveView" | "LiveViewAF" | "LiveViewAFAreaMode" | "LiveViewAFMethod" | "LiveViewAFMode" | "LiveViewButtonOptions" | "LiveViewExposureSimulation" | "LiveViewFocusMode" | "LiveViewMetering" | "LiveViewMonitorOffTime" | "LiveViewShooting" | "LocalLocationName" | "Location" | "LocationInfoVersion" | "LocationName" | "LockMicrophoneButton" | "LoggingMetadataText" | "LongExposureNoiseReduction" | "LongExposureNRUsed" | "LowLightAF" | "LuminanceNoiseAmplitude" | "LuminanceNoiseReduction" | "LVShootingAreaDisplay" | "M16CVersion" | "MacroLED" | "MacroMode" | "MagicFilter" | "MagnifiedView" | "MainDialExposureComp" | "MakerNoteOffset" | "MakerNoteType" | "MakerNoteVersion" | "ManometerPressure" | "ManometerReading" | "ManualAFPointSelectPattern" | "ManualAFPointSelPattern" | "ManualFlash" | "ManualFlashOutput" | "ManualFlashStrength" | "ManualFocusDistance" | "ManualFocusPointIllumination" | "ManualFocusRingInAFMode" | "ManualTv" | "MasterGain" | "MatrixMetering" | "MaxAnalogISO" | "MaxAperture" | "MaxApertureAtMaxFocal" | "MaxApertureAtMinFocal" | "MaxContinuousRelease" | "MaxFaces" | "MaxFocalLength" | "MaxNumAFPoints" | "MCCData" | "MCUVersion" | "MeasuredEV" | "MeasuredLV" | "MeasuredRGGB" | "MeasuredRGGBData" | "MechanicalShutterCount" | "MemoAudioQuality" | "MemoryCardConfiguration" | "MemoryCardNumber" | "MenuButtonDisplayPosition" | "MenuButtonReturn" | "MenuMonitorOffTime" | "MergedImage" | "MergedImages" | "MetaVersion" | "Metering" | "MeteringButton" | "MeteringFrameCount" | "MeteringOffScaleIndicator" | "MeteringTime" | "MeterMode" | "MidRangeSharpness" | "MinAperture" | "MinFocalLength" | "MinFocusDistance" | "MiniatureFilter" | "MiniatureFilterOrientation" | "MiniatureFilterParameter" | "MiniatureFilterPosition" | "MinimumISO" | "MinoltaDate" | "MinoltaImageSize" | "MinoltaModelID" | "MinoltaQuality" | "MinoltaTime" | "MirrorLockup" | "ModeDialPosition" | "ModelingFlash" | "ModelReleaseYear" | "ModifiedColorTemp" | "ModifiedDigitalGain" | "ModifiedParamFlag" | "ModifiedPictureStyle" | "ModifiedSaturation" | "ModifiedSensorBlueLevel" | "ModifiedSensorRedLevel" | "ModifiedSharpness" | "ModifiedSharpnessFreq" | "ModifiedToneCurve" | "ModifiedWhiteBalance" | "ModifiedWhiteBalanceBlue" | "ModifiedWhiteBalanceRed" | "MonitorBrightness" | "MonitorDisplayOff" | "MonitorOffTime" | "MonochromeColor" | "MonochromeFilterEffect" | "MonochromeGrainEffect" | "MonochromeProfileSettings" | "MonochromeToning" | "MonochromeVignetting" | "MonthDayCreated" | "MoonPhase" | "MotionSensitivity" | "MovieAELockButtonAssignment" | "MovieAFAreaMode" | "MovieAFTrackingSensitivity" | "MovieFlickerReduction" | "MovieFunc1Button" | "MovieFunc2Button" | "MovieFunc3Button" | "MovieFunctionButton" | "MovieFunctionButtonPlusDials" | "MovieHighlightDisplayPattern" | "MovieHighlightDisplayThreshold" | "MovieISOAutoControlManualMode" | "MovieISOAutoHiLimit" | "MovieLensControlRing" | "MovieMultiSelector" | "MoviePreviewButton" | "MoviePreviewButtonPlusDials" | "MovieShutterButton" | "MovieSubSelectorAssignment" | "MovieSubSelectorAssignmentPlusDials" | "MovieType" | "MovieWhiteBalanceSameAsPhoto" | "MultiControllerWhileMetering" | "MultiExposure" | "MultiExposureAutoGain" | "MultiExposureControl" | "MultiExposureMode" | "MultiExposureOverlayMode" | "MultiExposureShots" | "MultiExposureVersion" | "MultiFrameNoiseReduction" | "MultiFrameNREffect" | "MultiFunctionLock" | "MultipleExposureMode" | "MultipleExposureSet" | "MultiSelector" | "MultiSelectorLiveView" | "MultiSelectorPlaybackMode" | "MultiSelectorShootMode" | "MyColorMode" | "NDFilter" | "NEFBitDepth" | "NEFCompression" | "NEFLinearizationTable" | "NeutralDensityFilter" | "NikonCaptureVersion" | "NikonImageSize" | "NikonMeteringMode" | "NoiseFilter" | "NoiseReduction" | "NoiseReductionStrength" | "NoMemoryCard" | "NominalMaxAperture" | "NominalMinAperture" | "NormalWhiteLevel" | "NumAFPoints" | "NumberOfFocusPoints" | "NumberOffsets" | "NumCAFPoints" | "NumFaceElements" | "NumFacePositions" | "OISMode" | "OKButton" | "OlympusImageHeight" | "OlympusImageWidth" | "OneTouchWB" | "OpticalVR" | "OpticalZoom" | "OpticalZoomCode" | "OpticalZoomMode" | "OpticalZoomOn" | "OrderNumber" | "OrientationLinkedAF" | "OrientationLinkedAFPoint" | "OriginalDecisionDataOffset" | "OriginalDirectory" | "OriginalFileName" | "OriginalImageHeight" | "OriginalImageWidth" | "OriginalPayloadFrameCount" | "OtherInfo" | "OutputLUT" | "PaintingFilter" | "PanasonicDateTime" | "PanasonicExifVersion" | "PanasonicImageHeight" | "PanasonicImageWidth" | "PanoramaAngle" | "PanoramaCropBottom" | "PanoramaCropLeft" | "PanoramaCropRight" | "PanoramaCropTop" | "PanoramaDirection" | "PanoramaFrameHeight" | "PanoramaFrameWidth" | "PanoramaFullHeight" | "PanoramaFullWidth" | "PanoramaMode" | "PanoramaSize3D" | "PanoramaSourceHeight" | "PanoramaSourceWidth" | "PayloadMetadataText" | "PentaxImageSize" | "PentaxModelID" | "PentaxModelType" | "PerChannelBlackLevel" | "PeripheralIlluminationCorr" | "PeripheralLighting" | "PeripheralLightingSetting" | "PeripheralLightingValue" | "PhotoEffect" | "PhotoIdentifier" | "PhotoInfoPlayback" | "PhotosAppFeatureFlags" | "PhotoShootingMenuBank" | "PhotoShootingMenuBankImageArea" | "PhotoStyle" | "PictureControlAdjust" | "PictureControlBase" | "PictureControlName" | "PictureControlQuickAdjust" | "PictureControlVersion" | "PictureEffect" | "PictureFinish" | "PictureMode" | "PictureModeBWFilter" | "PictureModeContrast" | "PictureModeEffect" | "PictureModeSaturation" | "PictureModeSharpness" | "PictureModeStrength" | "PictureModeTone" | "PictureProfile" | "PictureStyle" | "PictureStylePC" | "PictureStyleUserDef" | "Pitch" | "PitchAngle" | "PixelAspectRatio" | "PixelShiftID" | "PixelShiftInfo" | "PixelShiftResolution" | "PixelShiftShooting" | "PlaybackFlickDown" | "PlaybackFlickUp" | "PlaybackMenusTime" | "PlaybackMonitorOffTime" | "PlaybackZoom" | "PlayDisplay" | "POILevel" | "PopupFlash" | "PortraitImpressionBalance" | "PortraitRefiner" | "PostFocusMerging" | "PostReleaseBurstLength" | "PowerAvailable" | "PowerSource" | "PowerUpTime" | "PreAF" | "PreCaptureFrames" | "PreReleaseBurstLength" | "PresetWhiteBalance" | "PreviewButton" | "PreviewButtonPlusDials" | "PreviewImageBorders" | "PreviewImageValid" | "PrimaryAFPoint" | "PrimarySlot" | "PrioritySetupShutterRelease" | "ProcessingNotes" | "ProductionCode" | "ProgramISO" | "ProgramLine" | "ProgramMode" | "ProgramShift" | "QuickControlDialInMeter" | "QuickShot" | "QuietShutterShootingSpeed" | "RangeFinder" | "RawAndJpgRecording" | "RawBurstImageCount" | "RawBurstImageNum" | "RawDataByteOrder" | "RawDataCFAPattern" | "RawDataLength" | "RawDepth" | "RawDevArtFilter" | "RawDevAutoGradation" | "RawDevColorSpace" | "RawDevContrastValue" | "RawDevEditStatus" | "RawDevelopmentProcess" | "RawDevEngine" | "RawDevExposureBiasValue" | "RawDevGradation" | "RawDevGrayPoint" | "RawDevMemoryColorEmphasis" | "RawDevNoiseReduction" | "RawDevPictureMode" | "RawDevPMContrast" | "RawDevPMNoiseFilter" | "RawDevPMPictureTone" | "RawDevPMSaturation" | "RawDevPMSharpness" | "RawDevSaturationEmphasis" | "RawDevSettings" | "RawDevSharpnessValue" | "RawDevVersion" | "RawDevWBFineAdjustment" | "RawDevWhiteBalance" | "RawDevWhiteBalanceValue" | "RAWFileType" | "RawImageCenter" | "RawImageHeight" | "RawImageWidth" | "RawJpgQuality" | "RawJpgSize" | "RawMeasuredRGGB" | "RearControPanelDisplay" | "RearDisplay" | "RecordDisplay" | "RecordID" | "RecordingFormat" | "RecordingMode" | "RecordMode" | "RecordShutterRelease" | "RectifaceText" | "RedEyeRemoval" | "RedGain" | "ReleaseButtonToUseDial" | "ReleaseMode" | "RemoteFuncButton" | "RemoteOnDuration" | "RepeatingFlashCount" | "RepeatingFlashOutput" | "RepeatingFlashOutputExternal" | "RepeatingFlashRate" | "Resaved" | "ResolutionMode" | "RestrictDriveModes" | "RetouchHistory" | "RetouchInfoVersion" | "RetouchNEFProcessing" | "RetractLensOnPowerOff" | "ReverseExposureCompDial" | "ReverseFocusRing" | "ReverseIndicators" | "ReverseShutterSpeedAperture" | "RFLensMFFocusRingSensitivity" | "RFLensType" | "RicohDate" | "RicohImageHeight" | "RicohImageWidth" | "RicohMake" | "RicohModel" | "Roll" | "RollAngle" | "ROMOperationMode" | "RunTimeEpoch" | "RunTimeFlags" | "RunTimeScale" | "RunTimeValue" | "SafetyShift" | "SafetyShiftInAvOrTv" | "SameExposureForNewAperture" | "SamsungModelID" | "SanyoQuality" | "SanyoThumbnail" | "SaturationAdj" | "SaturationAuto" | "SaturationFaithful" | "SaturationLandscape" | "SaturationNeutral" | "SaturationPortrait" | "SaturationSetting" | "SaturationStandard" | "SaveFocus" | "ScanImageEnhancer" | "SceneAssist" | "SceneDetect" | "SceneMode" | "SceneModeUsed" | "SceneRecognition" | "SceneSelect" | "ScreenTips" | "SecondarySlotFunction" | "SelectableAFPoint" | "SelectAFAreaSelectionMode" | "SelectAFAreaSelectMode" | "SelfTimer" | "SelfTimerInterval" | "SelfTimerShotCount" | "SelfTimerShotInterval" | "SelfTimerTime" | "SemanticStyle" | "SemanticStylePreset" | "SemanticStyleRenderingVer" | "SensitivityAdjust" | "SensitivitySteps" | "Sensor" | "SensorBitDepth" | "SensorBlueLevel" | "SensorCalibration" | "SensorCleaning" | "SensorFullHeight" | "SensorFullWidth" | "SensorID" | "SensorPixelSize" | "SensorRedLevel" | "SensorSize" | "SensorTemperature" | "Sequence" | "SequenceFileNumber" | "SequenceImageNumber" | "SequenceLength" | "SequenceNumber" | "SequenceShotInterval" | "SequentialShot" | "SerialNumberFormat" | "ServoAFCharacteristics" | "SetButtonCrossKeysFunc" | "SetButtonWhenShooting" | "SetFunctionWhenShooting" | "ShadingCompensation" | "Shadow" | "ShadowCorrection" | "Shadows" | "ShadowTone" | "ShakeReduction" | "Sharpening" | "SharpnessAuto" | "SharpnessFactor" | "SharpnessFaithful" | "SharpnessFreqTable" | "SharpnessFrequency" | "SharpnessLandscape" | "SharpnessMonochrome" | "SharpnessNeutral" | "SharpnessPortrait" | "SharpnessRange" | "SharpnessSetting" | "SharpnessStandard" | "SharpnessTable" | "ShootingInfoDisplay" | "ShootingInfoMonitorOffTime" | "ShootingModeSetting" | "ShortOwnerName" | "ShortReleaseTimeLag" | "ShotInfoVersion" | "ShotLogDataText" | "ShotNumber" | "ShotNumberSincePowerUp" | "ShotParamsText" | "ShotsPerInterval" | "Shutter" | "ShutterAELButton" | "ShutterButtonAFOnButton" | "ShutterCount" | "ShutterCount2" | "ShutterCount3" | "ShutterCurtainSync" | "ShutterMode" | "ShutterReleaseMethod" | "ShutterReleaseNoCFCard" | "ShutterReleaseTiming" | "ShutterReleaseWithoutLens" | "ShutterSpeedLock" | "ShutterSpeedRange" | "ShutterSpeedSetting" | "ShutterType" | "SignalToNoiseRatio" | "SilentPhotography" | "SingleFrame" | "SingleFrameBracketing" | "SkinToneCorrection" | "SlaveFlashMeteringSegments" | "SlowShutter" | "SlowSync" | "SmartAlbumColor" | "SmileShutter" | "SmileShutterMode" | "SoftFocusFilter" | "SoftSkinEffect" | "SoftwareDate" | "SonyDateTime" | "SonyDateTime2" | "SonyExposureTime" | "SonyFNumber" | "SonyImageHeight" | "SonyImageHeightMax" | "SonyImageSize" | "SonyImageWidth" | "SonyImageWidthMax" | "SonyISO" | "SonyMaxAperture" | "SonyMaxApertureValue" | "SonyMinAperture" | "SonyModelID" | "SonyQuality" | "SonyTimeMinSec" | "SourceDirectoryIndex" | "SourceFileIndex" | "SpecialEffectLevel" | "SpecialEffectMode" | "SpecialEffectSetting" | "SpecialMode" | "SpecularWhiteLevel" | "SpeedX" | "SpeedY" | "SpeedZ" | "SportEvents" | "SpotFocusPointX" | "SpotFocusPointY" | "SpotMeteringMode" | "SpotMeterLinkToAFPoint" | "SRActive" | "SRAWQuality" | "SRFocalLength" | "SRHalfPressTime" | "SRResult" | "StackedImage" | "StandbyMonitorOffTime" | "StandbyTimer" | "StartMovieShooting" | "StaticMetadataText" | "StepCropShooting" | "StopsAboveBaseISO" | "StorageMethod" | "StoreByOrientation" | "SubDialFrameAdvance" | "SubjectDetectArea" | "SubjectDetectDetail" | "SubjectDetectFrameSize" | "SubjectDetection" | "SubjectDetectionAreaMF" | "SubjectDetectStatus" | "SubjectMotion" | "SubjectProgram" | "SubjectRecognition" | "SubjectSwitching" | "SubjectToDetect" | "SubSelector" | "SubSelectorAssignment" | "SubSelectorCenter" | "SubSelectorPlusDials" | "SummaryText" | "SuperimposedDisplay" | "SuperMacro" | "SvISOSetting" | "SweepPanoramaDirection" | "SweepPanoramaFieldOfView" | "SweepPanoramaSize" | "SwitchToRegisteredAFPoint" | "SyncReleaseMode" | "TargetAperture" | "TargetCompressionRatio" | "TargetDistanceSetting" | "TargetExposureTime" | "TargetImageType" | "Teleconverter" | "TextEncoding" | "TextStamp" | "ThumbnailFileName" | "ThumbnailImageValidArea" | "TiffMeteringImage" | "TiffMeteringImageHeight" | "TiffMeteringImageWidth" | "Time" | "TimeLapseShotNumber" | "TimeLogText" | "TimerFunctionButton" | "TimerLength" | "TimerRecording" | "TimeSincePowerOn" | "TimeStamp" | "TimeZone" | "TimeZoneCity" | "TimeZoneCode" | "TimeZoneInfo" | "Title" | "ToneComp" | "ToneCurve" | "ToneCurveMatching" | "ToneCurveTable" | "ToneLevel" | "ToningEffect" | "ToningEffectAuto" | "ToningEffectMonochrome" | "ToningSaturation" | "TotalZoom" | "TouchAE" | "ToyCameraFilter" | "Transform" | "TrashButtonFunction" | "TravelDay" | "TriggerMode" | "TvExposureTimeSetting" | "UniqueID" | "UnknownNumber" | "UnsharpMaskFineness" | "UnsharpMaskThreshold" | "UnusedLoggingMetadata" | "UsableMeteringModes" | "UsableShootingModes" | "USBPowerDelivery" | "UserDef1PictureStyle" | "UserDef2PictureStyle" | "UserDef3PictureStyle" | "UserLabel" | "UserProfile" | "USMLensElectronicMF" | "ValidAFPoints" | "ValidBits" | "VariableLowPassFilter" | "VariProgram" | "VerticalAFOnButton" | "VerticalFuncButton" | "VerticalFuncButtonPlusDials" | "VerticalMovieAFOnButton" | "VerticalMovieFuncButton" | "VerticalMultiSelector" | "VFDisplayIllumination" | "VibrationReduction" | "VideoBurstMode" | "VideoBurstResolution" | "VideoFrameRate" | "VideoPreburst" | "ViewfinderDisplay" | "ViewfinderWarning" | "ViewfinderWarnings" | "ViewInfoDuringExposure" | "ViewingMode" | "Vignette" | "VignetteControl" | "VignetteCorrectionVersion" | "Vignetting" | "VignettingCorrVersion" | "VoiceMemo" | "VRDOffset" | "VRInfoVersion" | "VRMode" | "VRType" | "WatercolorFilter" | "WBBlue" | "WBBracketingSteps" | "WBBracketMode" | "WBBracketShotNumber" | "WBBracketValueAB" | "WBBracketValueGM" | "WBButtonPlaybackMode" | "WBGreen" | "WBMediaImageSizeSetting" | "WBMode" | "WBRed" | "WBScale" | "WBShiftAB" | "WBShiftCreativeControl" | "WBShiftGM" | "WBShiftIntelligentAuto" | "WhiteBalanceAutoAdjustment" | "WhiteBalanceBias" | "WhiteBalanceBlue" | "WhiteBalanceBracket" | "WhiteBalanceBracketing" | "WhiteBalanceFineTune" | "WhiteBalanceMatching" | "WhiteBalanceMode" | "WhiteBalanceRed" | "WhiteBalanceSet" | "WhiteBalanceSetting" | "WhiteBalanceSetup" | "WhiteBalanceTable" | "WhiteBalanceTemperature" | "WhiteBoard" | "WholeAreaTracking" | "WideAdapter" | "WideFocusZone" | "WideRange" | "WorldTimeLocation" | "X3FillLight" | "Xidiri" | "Yaw" | "YawAngle" | "YearCreated" | "ZoneMatching" | "ZoneMatchingMode" | "ZoneMatchingOn" | "ZoneMatchingValue" | "ZoomedPreviewImage" | "ZoomedPreviewLength" | "ZoomedPreviewSize" | "ZoomedPreviewStart" | "ZoomSourceWidth" | "ZoomStepCount" | "ZoomTargetWidth" | "BorderID" | "BorderLocation" | "BorderName" | "BordersVersion" | "BorderType" | "CameraOwner" | "CaptureConditionsPAR" | "DigitalEffectsName" | "DigitalEffectsType" | "DigitalEffectsVersion" | "EditTagArray" | "FilmGencode" | "FilmProductCode" | "FilmSize" | "ImageSourceEK" | "MetadataNumber" | "ModelAndVersion" | "WatermarkType" | "DistortionScale" | "NumWBEntries" | "CopyrightFlag" | "DisplayedUnitsX" | "DisplayedUnitsY" | "GlobalAltitude" | "GlobalAngle" | "HasRealMergedData" | "IPTCDigest" | "NumSlices" | "PhotoshopFormat" | "PhotoshopQuality" | "PhotoshopThumbnail" | "PrintPosition" | "PrintScale" | "PrintStyle" | "ReaderName" | "SlicesGroupName" | "WriterName" | "PrintIMVersion" | "AndroidCaptureFPS" | "AndroidVersion" | "AndroidVideoTemporalLayersCount" | "AudioBitsPerSample" | "AudioChannels" | "AudioFormat" | "AudioSampleRate" | "AudioVendorID" | "Author" | "BackgroundColor" | "ChapterListTrackID" | "CleanApertureDimensions" | "ColorPrimaries" | "ColorProfiles" | "CompatibleBrands" | "CompressorID" | "CompressorName" | "ContentDescribes" | "CreationDate" | "CurrentTime" | "EncodedPixelsDimensions" | "FontName" | "Format" | "GenBalance" | "GenFlags" | "GenGraphicsMode" | "GenMediaVersion" | "GenOpColor" | "GPSCoordinates" | "GraphicsMode" | "HandlerClass" | "HandlerDescription" | "HandlerType" | "HandlerVendorID" | "LayoutFlags" | "LocationAccuracyHorizontal" | "MajorBrand" | "MatrixCoefficients" | "MatrixStructure" | "MediaCreateDate" | "MediaDataOffset" | "MediaDataSize" | "MediaDuration" | "MediaHeaderVersion" | "MediaLanguageCode" | "MediaModifyDate" | "MediaTimeScale" | "MediaUID" | "MetaFormat" | "MinorVersion" | "MovieHeaderVersion" | "NextTrackID" | "OpColor" | "OtherFormat" | "PlaybackFrameRate" | "PlayMode" | "PosterTime" | "PreferredRate" | "PreferredVolume" | "PreviewDuration" | "PreviewTime" | "ProductionApertureDimensions" | "PurchaseFileFormat" | "SampleDuration" | "SampleTime" | "SelectionDuration" | "SelectionTime" | "SerialNumberHash" | "SourceImageHeight" | "SourceImageWidth" | "TextColor" | "TextFace" | "TextFont" | "TextSize" | "TimecodeTrack" | "TimeScale" | "TrackCreateDate" | "TrackDuration" | "TrackHeaderVersion" | "TrackID" | "TrackLayer" | "TrackModifyDate" | "TrackVolume" | "TransferCharacteristics" | "VendorID" | "VideoFullRangeFlag" | "ChromaticAberrationParams" | "FujiLayout" | "GeometricDistortionParams" | "RAFCompression" | "RawExposureBias" | "RawImageAspectRatio" | "RawImageCroppedSize" | "RawImageCropTopLeft" | "RawImageFullHeight" | "RawImageFullSize" | "RawImageFullWidth" | "RawZoomActive" | "RawZoomSize" | "RawZoomTopLeft" | "VignettingParams" | "XTransLayout" | "AudioCodec" | "AudioSampleCount" | "AvgBytesPerSec" | "Encoding" | "MaxDataRate" | "NumChannels" | "SampleRate" | "SampleSize" | "StreamCount" | "StreamType" | "VideoCodec" | "VideoFrameCount" | "About" | "AbsoluteAltitude" | "Album" | "AlreadyApplied" | "AltitudeType" | "ApproximateFocusDistance" | "AsrClimaxDuration" | "AsrClimaxScene" | "AsrIsMacroRange" | "AsrSceneCondition" | "AsrSceneMode" | "AutoLateralCA" | "BandName" | "BlueHue" | "BlueSaturation" | "BurstID" | "BurstPrimary" | "CameraBurstID" | "CameraFacing" | "CameraModelID" | "CameraProfile" | "CameraProfileDigest" | "Cameras" | "CamReverse" | "CaptureMode" | "CaptureSoftware" | "CatalogSets" | "CellGlobalID" | "CellR" | "CellTowerID" | "CentralTemperature" | "CentralWavelength" | "Changes" | "ChromaticAberrationB" | "ChromaticAberrationR" | "CircularGradientBasedCorrections" | "ColorClass" | "ColorGradeBlending" | "ColorGradeGlobalHue" | "ColorGradeGlobalLum" | "ColorGradeGlobalSat" | "ColorGradeHighlightLum" | "ColorGradeMidtoneHue" | "ColorGradeMidtoneLum" | "ColorGradeMidtoneSat" | "ColorGradeShadowLum" | "ColorLabel" | "Colorlabels" | "ColorNoiseReduction" | "ColorNoiseReductionDetail" | "ColorNoiseReductionSmoothness" | "Container" | "ContainerDirectory" | "ConvertToGrayscale" | "CreationTime" | "CreatorAppID" | "CreatorContactInfo" | "CreatorOpenWithUIOptions" | "Creatortool" | "CreatorTool" | "CropAngle" | "CropConstrainToWarp" | "CroppedAreaImageHeightPixels" | "CroppedAreaImageWidthPixels" | "CroppedAreaLeftPixels" | "CroppedAreaTopPixels" | "DateAcquired" | "DateTime" | "DateTimeDigitized" | "DateUTC" | "DefringeGreenAmount" | "DefringeGreenHueHi" | "DefringeGreenHueLo" | "DefringePurpleAmount" | "DefringePurpleHueHi" | "DefringePurpleHueLo" | "Dehaze" | "DepthImage" | "DerivedFrom" | "DisableAutoCreation" | "DistortionCorrectionAlreadyApplied" | "DocumentID" | "DroneModel" | "DroneSerialNumber" | "Face" | "FaceNum" | "FaceSelectedIndex" | "Far" | "Filters" | "FlashManufacturer" | "FlashPixVersion" | "FlightPitchDegree" | "FlightRollDegree" | "FlightXSpeed" | "FlightYawDegree" | "FlightYSpeed" | "FlightZSpeed" | "FocusAreaHeight" | "FocusAreaNum" | "FocusAreaWidth" | "FocusIsLensMoving" | "FocusPosX" | "FocusPosY" | "FocusState" | "FullPanoHeightPixels" | "FullPanoWidthPixels" | "GimbalPitchDegree" | "GimbalReverse" | "GimbalRollDegree" | "GimbalYawDegree" | "GpsStatus" | "GrainAmount" | "GreenHue" | "GreenSaturation" | "HasCrop" | "HasExtendedXMP" | "HasSettings" | "HDRPlusMakerNote" | "HDRPMakerNote" | "HierarchicalSubject" | "History" | "HueAdjustmentAqua" | "HueAdjustmentBlue" | "HueAdjustmentGreen" | "HueAdjustmentMagenta" | "HueAdjustmentOrange" | "HueAdjustmentPurple" | "HueAdjustmentRed" | "HueAdjustmentYellow" | "ICCProfileName" | "ImageMimeType" | "ImageSource" | "InitialViewHeadingDegrees" | "InitialViewPitchDegrees" | "InitialViewRollDegrees" | "InteroperabilityIndex" | "InteroperabilityVersion" | "IsBokehActive" | "IsHDRActive" | "IsNightModeActive" | "Label" | "LastKeywordXMP" | "LateralChromaticAberrationCorrectionAlreadyApplied" | "LegacyIPTCDigest" | "LensFacing" | "LensManualDistortionAmount" | "LensManufacturer" | "LensProfileDigest" | "LensProfileDistortionScale" | "LensProfileEnable" | "LensProfileIsEmbedded" | "LensProfileSetup" | "LensProfileVignettingScale" | "LocationAreaCode" | "Look" | "LuminanceAdjustmentAqua" | "LuminanceAdjustmentBlue" | "LuminanceAdjustmentGreen" | "LuminanceAdjustmentMagenta" | "LuminanceAdjustmentOrange" | "LuminanceAdjustmentPurple" | "LuminanceAdjustmentRed" | "LuminanceAdjustmentYellow" | "LuminanceNoiseReductionContrast" | "LuminanceNoiseReductionDetail" | "LuminanceSmoothing" | "MakerNote" | "Marked" | "Mask" | "MetadataDate" | "MicroVideo" | "MicroVideoOffset" | "MicroVideoPresentationTimestampUs" | "MicroVideoVersion" | "Mime" | "MobileCountryCode" | "MobileNetworkCode" | "ModificationDate" | "MotionPhoto" | "MotionPhotoPresentationTimestampUs" | "MotionPhotoVersion" | "NativeDigest" | "Near" | "Notes" | "ObjectAreaHeight" | "ObjectAreaWidth" | "ObjectNum" | "ObjectPosX" | "ObjectPosY" | "OriginalCreateDateTime" | "OriginalDocumentID" | "OverrideLookVignette" | "ParametricDarks" | "ParametricHighlights" | "ParametricHighlightSplit" | "ParametricLights" | "ParametricMidtoneSplit" | "ParametricShadows" | "ParametricShadowSplit" | "PersonInImage" | "PerspectiveAspect" | "PerspectiveHorizontal" | "PerspectiveRotate" | "PerspectiveScale" | "PerspectiveUpright" | "PerspectiveVertical" | "PerspectiveX" | "PerspectiveY" | "PhotographicSensitivity" | "PickLabel" | "PipelineVersion" | "PMVersion" | "PortraitVersion" | "PoseHeadingDegrees" | "PosePitchDegrees" | "PoseRollDegrees" | "PostCropVignetteAmount" | "PreservedFileName" | "ProcessVersion" | "Profiles" | "ProjectionType" | "RawFileName" | "RedHue" | "RedSaturation" | "RegionInfo" | "RegionInfoMP" | "RegistryID" | "RelativeAltitude" | "Rights" | "SaturationAdjustmentAqua" | "SaturationAdjustmentBlue" | "SaturationAdjustmentGreen" | "SaturationAdjustmentMagenta" | "SaturationAdjustmentOrange" | "SaturationAdjustmentPurple" | "SaturationAdjustmentRed" | "SaturationAdjustmentYellow" | "Scene" | "SceneDetectResultConfidences" | "SceneDetectResultIds" | "SelfData" | "ShadowTint" | "SharpenDetail" | "SharpenEdgeMasking" | "SharpenRadius" | "ShotLogData" | "SourcePhotosCount" | "SpecialTypeID" | "SplitToningBalance" | "SplitToningHighlightHue" | "SplitToningHighlightSaturation" | "SplitToningShadowHue" | "SplitToningShadowSaturation" | "StitchingSoftware" | "Subject" | "SubsecTime" | "SurveyingMode" | "Tag" | "Tagged" | "TagsList" | "Texture" | "Tint" | "TlinearGain" | "ToneCurveBlue" | "ToneCurveGreen" | "ToneCurveName" | "ToneCurvePV2012Blue" | "ToneCurvePV2012Green" | "ToneCurvePV2012Red" | "ToneCurveRed" | "ToneMapStrength" | "UprightCenterMode" | "UprightCenterNormX" | "UprightCenterNormY" | "UprightFocalLength35mm" | "UprightFocalMode" | "UprightFourSegmentsCount" | "UprightPreview" | "UprightTransformCount" | "UprightVersion" | "UsePanoramaViewer" | "UTCAtExposure" | "Versions" | "Vibrance" | "VignetteAmount" | "WavelengthFWHM" | "XMPMeta" | "XMPToolkit">;
|
|
18985
|
+
export declare const TagNames: StrEnum<"zone" | "AboveColor" | "Again" | "AmbientTemperature" | "Aperture" | "AtmosphericTemperature" | "AutoISOMax" | "AutoISOMin" | "AutoRotation" | "B5100" | "Balance" | "Barcode" | "BelowColor" | "Bgain" | "BHighLight" | "BHL" | "BitsPerSample" | "Blk0" | "Blk1" | "BMean" | "Boff" | "BSD" | "BSd" | "BStrobe" | "CameraModel" | "CameraPartNumber" | "CameraSerialNumber" | "CameraSoftware" | "CameraType" | "Case" | "CBal" | "Color" | "COLOR1" | "COLOR2" | "COLOR3" | "COLOR4" | "ColorComponents" | "ColorMode" | "ColorSpace" | "ColorTransform" | "Compass" | "Compression" | "ContTake" | "CreatorSoftware" | "DateTimeGenerated" | "DateTimeOriginal" | "DCTEncodeVersion" | "DeviceName" | "DiagonalFieldOfView" | "DigitalZoom" | "DigitalZoomOn" | "EmbeddedImage" | "EmbeddedImageHeight" | "EmbeddedImageType" | "EmbeddedImageWidth" | "Emissivity" | "EXP1" | "EXP2" | "EXP3" | "ExposRatio" | "Exposure" | "ExposureCompensation" | "ExposureTime" | "ExposureType" | "FieldOfView" | "FilterModel" | "FilterPartNumber" | "FilterSerialNumber" | "FinalRatio" | "FirmwareVersion" | "Flash" | "FlashTime" | "FMean" | "FNumber" | "Fnumber" | "FocusDistance" | "FocusMode" | "FocusPos" | "FocusStepCount" | "FrameRate" | "Gain" | "Gamma" | "GBgain" | "GBoff" | "GHighLight" | "GHL" | "GMean" | "GPSAltitude" | "GPSDOP" | "GPSImgDirection" | "GPSImgDirectionRef" | "GPSLatitude" | "GPSLatitudeRef" | "GPSLongitude" | "GPSLongitudeRef" | "GPSMapDatum" | "GPSSpeed" | "GPSSpeedRef" | "GPSTrack" | "GPSTrackRef" | "GPSValid" | "GPSVersionID" | "GRgain" | "GRoff" | "GSD" | "GSd" | "HDRGainCurve" | "HDRGainCurveSize" | "HDRSetting" | "ID" | "ImageHeight" | "ImageSize" | "ImageWidth" | "IRWindowTemperature" | "IRWindowTransmission" | "Isotherm1Color" | "Isotherm2Color" | "JPEG1" | "LensModel" | "LensPartNumber" | "LensProjection" | "LensSerialNumber" | "LightS" | "Macro" | "Mean" | "Meas1Label" | "Meas1Params" | "Meas1Type" | "Meas2Label" | "Meas2Params" | "Meas2Type" | "MediaUniqueID" | "MetadataVersion" | "Model" | "MotorPos" | "ObjectDistance" | "Offset" | "OffsetX" | "OffsetY" | "OverflowColor" | "Palette" | "PaletteColors" | "PaletteFileName" | "PaletteMethod" | "PaletteName" | "PaletteStretch" | "Param0" | "PhotoResolution" | "PicLen" | "PreviewImageHeight" | "PreviewImageWidth" | "PreviewQuality" | "Protect" | "Protune" | "Quality" | "R5100" | "Rate" | "RawThermalImage" | "RawThermalImageHeight" | "RawThermalImageType" | "RawThermalImageWidth" | "RawValueMedian" | "RawValueRange" | "RawValueRangeMax" | "RawValueRangeMin" | "Real2IR" | "ReflectedApparentTemperature" | "RelativeHumidity" | "Resolution" | "ResolutionUnit" | "REV" | "Rgain" | "RHighLight" | "RHL" | "RMean" | "Roff" | "RSD" | "RSd" | "RStrobe" | "S0" | "SerialNumber" | "Sharpness" | "SpotMeter" | "StrobeTime" | "T0" | "TagB" | "TagQ" | "TagR" | "TagS" | "ThmLen" | "UnderflowColor" | "Version" | "WhiteBalance" | "XResolution" | "YLevel" | "YResolution" | "YTarget" | "Zoom" | "ZoomPos" | "AdvancedSceneMode" | "AutoFocus" | "AvgBitrate" | "BlueBalance" | "CFAPattern" | "CircleOfConfusion" | "ConditionalFEC" | "ContrastDetectAF" | "Copyright" | "Country" | "CreateDate" | "Creator" | "DateCreated" | "DateTimeCreated" | "Description" | "DigitalCreationDateTime" | "DOF" | "DriveMode" | "Duration" | "ExtenderStatus" | "FileNumber" | "FlashType" | "FocalLength35efl" | "FOV" | "GPSAltitudeRef" | "GPSDateTime" | "GPSDestLatitude" | "GPSDestLongitude" | "GPSPosition" | "HyperfocalDistance" | "ISO" | "Keywords" | "Lens" | "Lens35efl" | "LensID" | "LensSpec" | "LensType" | "LightValue" | "Megapixels" | "ModifyDate" | "Orientation" | "OriginalDecisionData" | "PeakSpectralSensitivity" | "PhaseDetectAF" | "PreviewImage" | "PreviewImageSize" | "Rating" | "RedBalance" | "RedEyeReduction" | "RicohPitch" | "RicohRoll" | "Rotation" | "RunTimeSincePowerUp" | "ScaleFactor35efl" | "ShootingMode" | "ShutterCurtainHack" | "ShutterSpeed" | "State" | "SubSecCreateDate" | "SubSecDateTimeOriginal" | "SubSecModifyDate" | "ThumbnailTIFF" | "Acceleration" | "ActiveArea" | "AnalogBalance" | "AntiAliasStrength" | "ApertureValue" | "Artist" | "AsShotNeutral" | "AsShotWhiteXY" | "BaselineExposure" | "BaselineNoise" | "BaselineSharpness" | "BayerGreenSplit" | "BestQualityScale" | "BlackLevel" | "BlackLevelBlue" | "BlackLevelGreen" | "BlackLevelRed" | "BlackLevelRepeatDim" | "BrightnessValue" | "CameraElevationAngle" | "CFALayout" | "CFAPlaneColor" | "CFARepeatPatternDim" | "ChromaticAberrationCorrection" | "ChromaticAberrationCorrParams" | "CompositeImage" | "CompositeImageCount" | "CompositeImageExposureTimes" | "CompressedBitsPerPixel" | "Contrast" | "CropBottom" | "CropLeft" | "CropRight" | "CropTop" | "CustomRendered" | "DefaultBlackRender" | "DefaultCropOrigin" | "DefaultCropSize" | "DefaultScale" | "DefaultUserCrop" | "DeviceSettingDescription" | "DigitalZoomRatio" | "DistortionCorrection" | "DistortionCorrParams" | "DNGBackwardVersion" | "DNGVersion" | "DocumentName" | "ExifImageHeight" | "ExifImageWidth" | "ExifVersion" | "ExposureIndex" | "ExposureMode" | "ExposureProgram" | "FileSource" | "FlashEnergy" | "FocalLength" | "FocalLengthIn35mmFormat" | "FocalPlaneResolutionUnit" | "FocalPlaneXResolution" | "FocalPlaneYResolution" | "GainControl" | "GPSAreaInformation" | "GPSDateStamp" | "GPSDestBearing" | "GPSDestBearingRef" | "GPSDestDistance" | "GPSDestDistanceRef" | "GPSDestLatitudeRef" | "GPSDestLongitudeRef" | "GPSDifferential" | "GPSHPositioningError" | "GPSMeasureMode" | "GPSProcessingMethod" | "GPSSatellites" | "GPSStatus" | "GPSTimeStamp" | "HighISOMultiplierBlue" | "HighISOMultiplierGreen" | "HighISOMultiplierRed" | "HostComputer" | "ImageDescription" | "ImageNumber" | "ImageTitle" | "ImageUniqueID" | "InteropIndex" | "InteropVersion" | "ISOSpeed" | "JpgFromRaw" | "JpgFromRawLength" | "JpgFromRawStart" | "LensInfo" | "LensMake" | "LightSource" | "LinearityLimitBlue" | "LinearityLimitGreen" | "LinearityLimitRed" | "LinearizationTable" | "LinearResponseLimit" | "Make" | "MakerNoteSafety" | "MakerNoteSamsung1a" | "MakerNoteUnknownBinary" | "MakerNoteUnknownText" | "MaxApertureValue" | "MeteringMode" | "Model2" | "NewRawImageDigest" | "Noise" | "NoiseProfile" | "NoiseReductionApplied" | "NoiseReductionParams" | "OffsetSchema" | "OffsetTime" | "OffsetTimeDigitized" | "OffsetTimeOriginal" | "OtherImage" | "OtherImageLength" | "OtherImageStart" | "OwnerName" | "Padding" | "PageName" | "PanasonicRawVersion" | "Photographer" | "PhotometricInterpretation" | "PlanarConfiguration" | "Pressure" | "PreviewColorSpace" | "PreviewDateTime" | "PreviewImageLength" | "PreviewImageStart" | "PreviewTIFF" | "PrimaryChromaticities" | "ProcessingSoftware" | "ProfileEmbedPolicy" | "ProfileGainTableMap" | "ProfileName" | "ProfileToneCurve" | "RatingPercent" | "RawDataOffset" | "RawDataUniqueID" | "RawFormat" | "RawImageSegmentation" | "RecommendedExposureIndex" | "ReferenceBlackWhite" | "RelatedImageFileFormat" | "RelatedImageHeight" | "RelatedImageWidth" | "RelatedSoundFile" | "RowsPerStrip" | "SamplesPerPixel" | "Saturation" | "SceneCaptureType" | "SceneType" | "SemanticName" | "SensingMethod" | "SensitivityType" | "SensorBottomBorder" | "SensorHeight" | "SensorLeftBorder" | "SensorRightBorder" | "SensorTopBorder" | "SensorWidth" | "ShadowScale" | "ShutterSpeedValue" | "Software" | "SonyCropSize" | "SonyCropTopLeft" | "SonyRawFileType" | "SonyRawImageSize" | "SonyToneCurve" | "SpatialFrequencyResponse" | "SRawType" | "StandardOutputSensitivity" | "StripByteCounts" | "StripOffsets" | "SubfileType" | "SubjectArea" | "SubjectDistance" | "SubjectDistanceRange" | "SubjectLocation" | "SubSecTime" | "SubSecTimeDigitized" | "SubSecTimeOriginal" | "ThumbnailImage" | "ThumbnailLength" | "ThumbnailOffset" | "TileByteCounts" | "TileLength" | "TileOffsets" | "TileWidth" | "TimeZoneOffset" | "TransferFunction" | "UniqueCameraModel" | "UserComment" | "VignettingCorrection" | "VignettingCorrParams" | "WaterDepth" | "WBBlueLevel" | "WBGreenLevel" | "WBRedLevel" | "WhiteLevel" | "WhitePoint" | "XiaomiModel" | "XPAuthor" | "XPComment" | "XPKeywords" | "XPSubject" | "XPTitle" | "YCbCrCoefficients" | "YCbCrPositioning" | "YCbCrSubSampling" | "Error" | "ExifToolVersion" | "SourceFile" | "Warning" | "tz" | "tzSource" | "zoneSource" | "errors" | "warnings" | "BitDepth" | "BMPVersion" | "Comment" | "CurrentIPTCDigest" | "Directory" | "EncodingProcess" | "ExifByteOrder" | "FileAccessDate" | "FileCreateDate" | "FileInodeChangeDate" | "FileModifyDate" | "FileName" | "FilePermissions" | "FileSize" | "FileType" | "FileTypeExtension" | "ImageDataMD5" | "ImageLength" | "MakerNoteByteOrder" | "MIMEType" | "NumColors" | "NumImportantColors" | "PixelsPerMeterX" | "PixelsPerMeterY" | "Planes" | "AudioStream" | "CodePage" | "CreatingApplication" | "ExtensionClassID" | "ExtensionCreateDate" | "ExtensionDescription" | "ExtensionModifyDate" | "ExtensionName" | "ExtensionPersistence" | "ScreenNail" | "UsedExtensionNumbers" | "GeolocationBearing" | "GeolocationCity" | "GeolocationCountry" | "GeolocationCountryCode" | "GeolocationDistance" | "GeolocationFeatureCode" | "GeolocationFeatureType" | "GeolocationPopulation" | "GeolocationPosition" | "GeolocationRegion" | "GeolocationSubregion" | "GeolocationTimeZone" | "GeolocationWarning" | "ColorSpaceData" | "ConnectionSpaceIlluminant" | "DeviceAttributes" | "DeviceManufacturer" | "DeviceMfgDesc" | "DeviceModel" | "DeviceModelDesc" | "Luminance" | "ProfileDescription" | "ApplicationRecordVersion" | "ObjectTypeReference" | "ObjectAttributeReference" | "ObjectName" | "EditStatus" | "EditorialUpDate" | "Urgency" | "SubjectReference" | "Category" | "SupplementalCategories" | "FixtureIdentifier" | "ContentLocationCode" | "ContentLocationName" | "ReleaseDate" | "ReleaseTime" | "ExpirationDate" | "ExpirationTime" | "SpecialInstructions" | "ActionAdvised" | "ReferenceService" | "ReferenceDate" | "ReferenceNumber" | "OriginatingProgram" | "ProgramVersion" | "ObjectCycle" | "By-line" | "By-lineTitle" | "City" | "Sub-location" | "Province-State" | "Country-PrimaryLocationCode" | "Country-PrimaryLocationName" | "OriginalTransmissionReference" | "Headline" | "Credit" | "Source" | "CopyrightNotice" | "Contact" | "Caption-Abstract" | "LocalCaption" | "Writer-Editor" | "ImageType" | "ImageOrientation" | "LanguageIdentifier" | "AudioType" | "AudioSamplingRate" | "AudioSamplingResolution" | "AudioDuration" | "AudioOutcue" | "JobID" | "MasterDocumentID" | "ShortDocumentID" | "UniqueDocumentID" | "OwnerID" | "ObjectPreviewFileFormat" | "ObjectPreviewFileVersion" | "Prefs" | "ClassifyState" | "SimilarityIndex" | "DocumentNotes" | "DocumentHistory" | "ExifCameraInfo" | "CodedCharacterSet" | "DigitalCreationDate" | "DigitalCreationTime" | "EnvelopeRecordVersion" | "TimeCreated" | "ImageDataHash" | "JFIFVersion" | "ThumbnailHeight" | "ThumbnailWidth" | "UniformResourceName" | "AIScene" | "FilterId" | "Hdr" | "Mirror" | "OpMode" | "SensorType" | "ZoomMultiple" | "Actions" | "Alg" | "Exclusions" | "Hash" | "InstanceID" | "Item0" | "Item1" | "Item3" | "JUMDLabel" | "JUMDType" | "Pad" | "Pad2" | "Parts" | "Signature" | "DependentImage1EntryNumber" | "DependentImage2EntryNumber" | "ImageUIDList" | "MPFVersion" | "MPImageFlags" | "MPImageFormat" | "MPImageLength" | "MPImageStart" | "MPImageType" | "NumberOfImages" | "TotalFrames" | "Collections" | "KeywordInfo" | "HierarchicalKeywords" | "AccelerationTracking" | "AccelerationVector" | "Accelerometer" | "AccelerometerX" | "AccelerometerY" | "AccelerometerZ" | "AccessorySerialNumber" | "AccessoryType" | "ActionInAFCCont" | "ActionPriority" | "ActualCompensation" | "AddIPTCInformation" | "AddOriginalDecisionData" | "ADJDebugInfo" | "AdjustmentMode" | "ADLBracketingStep" | "ADLBracketingType" | "AdvancedFilter" | "AdvancedSceneType" | "AEAperture" | "AEApertureSteps" | "AEAverage" | "AEBAutoCancel" | "AEBBracketValue" | "AEBracketingSteps" | "AEBSequence" | "AEBSequenceAutoCancel" | "AEBShotCount" | "AEBXv" | "AEDebugInfo" | "AEExposureTime" | "AEHistogramInfo" | "AELButton" | "AELExposureIndicator" | "AELiveViewHistogramInfo" | "AELiveViewLocalHistogram" | "AELocalHistogram" | "AELock" | "AELockButton" | "AELockButtonPlusDials" | "AELockMeterModeAfterFocus" | "AEMaxAperture" | "AEMeteringMode" | "AEMeteringSegments" | "AEMicroadjustment" | "AEMinAperture" | "AEMinExposureTime" | "AEProgramMode" | "AESetting" | "AEStable" | "AETarget" | "AEWhiteBalance" | "AEXv" | "AFActivation" | "AFAdjustment" | "AFAndMeteringButtons" | "AFAperture" | "AFAreaHeight" | "AFAreaHeights" | "AFAreaIllumination" | "AFAreaMode" | "AFAreaModeSetting" | "AFAreaPointSize" | "AFAreas" | "AFAreaSelectMethod" | "AFAreaSize" | "AFAreaWidth" | "AFAreaWidths" | "AFAreaXPosition" | "AFAreaXPositions" | "AFAreaYPosition" | "AFAreaYPositions" | "AFAreaZoneSize" | "AFAssist" | "AFAssistBeam" | "AFAssistLamp" | "AFButtonPressed" | "AFCHold" | "AFConfidence" | "AFCoordinatesAvailable" | "AFCPointTracking" | "AFCSensitivity" | "AFDebugInfo" | "AFDefocus" | "AFDetectionMethod" | "AFDuringLiveView" | "AFFineTune" | "AFFineTuneAdj" | "AFFineTuneAdjTele" | "AFFineTuneIndex" | "AFFocusArea" | "AFFrameSize" | "AFIlluminator" | "AFImageHeight" | "AFImageWidth" | "AFInfo2Version" | "AFIntegrationTime" | "AFMeasuredDepth" | "AFMicroAdj" | "AFMicroAdjMode" | "AFMicroAdjRegisteredLenses" | "AFMicroadjustment" | "AFMicroAdjValue" | "AFMode" | "AFModeRestrictions" | "AFOnAELockButtonSwitch" | "AFOnButton" | "AFPerformance" | "AFPoint" | "AFPointActivationArea" | "AFPointAreaExpansion" | "AFPointAtShutterRelease" | "AFPointAutoSelection" | "AFPointBrightness" | "AFPointDetails" | "AFPointDisplayDuringFocus" | "AFPointIllumination" | "AFPointInFocus" | "AFPointMode" | "AFPointPosition" | "AFPointRegistration" | "AFPoints" | "AFPointSel" | "AFPointSelected" | "AFPointSelection" | "AFPointSelectionMethod" | "AFPointSetting" | "AFPointsInFocus" | "AFPointsInFocus1D" | "AFPointsInFocus5D" | "AFPointSpotMetering" | "AFPointsSelected" | "AFPointsSpecial" | "AFPointsUsed" | "AFPredictor" | "AFTracking" | "AFType" | "AFWithShutter" | "AIServoContinuousShooting" | "AIServoFirstImagePriority" | "AIServoImagePriority" | "AIServoSecondImagePriority" | "AIServoTrackingMethod" | "AIServoTrackingSensitivity" | "AISubjectTrackingMode" | "Altitude" | "AmbienceSelection" | "AmbientTemperatureFahrenheit" | "AndroidRelease" | "AntiFlicker" | "AntiShockWaitingTime" | "ApertureLock" | "ApertureRange" | "ApertureRingUse" | "ApertureSetting" | "Application" | "ApplySettingsToLiveView" | "ApplyShootingMeteringMode" | "ApproximateFNumber" | "AppVersion" | "ArtFilter" | "ArtFilterEffect" | "ArtMode" | "ArtModeParameters" | "AspectFrame" | "AspectRatio" | "AssignBktButton" | "AssignFuncButton" | "AssignMovieFunc1ButtonPlusDials" | "AssignMovieFunc2Button" | "AssignMoviePreviewButtonPlusDials" | "AssignMovieRecordButton" | "AssignMovieRecordButtonPlusDials" | "AssignMovieSubselector" | "AssignMovieSubselectorPlusDials" | "AssignRemoteFnButton" | "AssistButtonFunction" | "Audio" | "AudioCompression" | "AutoAFPointColorTracking" | "AutoAFPointSelEOSiTRAF" | "AutoAperture" | "AutoBracket" | "AutoBracketing" | "AutoBracketingMode" | "AutoBracketingSet" | "AutoBracketModeM" | "AutoBracketOrder" | "AutoBracketSet" | "AutoDistortionControl" | "AutoDynamicRange" | "AutoExposureBracketing" | "AutoFlashISOSensitivity" | "AutoFocusModeRestrictions" | "AutoFP" | "AutoISO" | "AutoISOMinShutterSpeed" | "AutoLightingOptimizer" | "AutoPortraitFramed" | "AutoRotate" | "AuxiliaryLens" | "AvApertureSetting" | "AverageBlackLevel" | "AverageLV" | "AvSettingWithoutLens" | "BabyAge" | "BabyName" | "BarometerInfoVersion" | "BaseExposureCompensation" | "BaseISO" | "BatteryLevel" | "BatteryOrder" | "BatteryState" | "BatteryTemperature" | "BatteryType" | "BatteryVoltage" | "BayerPattern" | "Beep" | "BeepPitch" | "BeepVolume" | "BestShotMode" | "BlackLevels" | "BlackMaskBottomBorder" | "BlackMaskLeftBorder" | "BlackMaskRightBorder" | "BlackMaskTopBorder" | "BlackPoint" | "BleachBypassToning" | "BlueGain" | "BlurControl" | "BlurWarning" | "BoardTemperature" | "BodyBatteryADLoad" | "BodyBatteryADNoLoad" | "BodyBatteryPercent" | "BodyBatteryState" | "BodyBatteryVoltage" | "BodyFirmware" | "BodyFirmwareVersion" | "BodySerialNumber" | "BracketIncrement" | "BracketingBurstOptions" | "BracketMode" | "BracketProgram" | "BracketSequence" | "BracketSet" | "BracketSettings" | "BracketShotNumber" | "BracketStep" | "BracketValue" | "Brightness" | "BuildNumber" | "BulbDuration" | "BurstGroupID" | "BurstMode" | "BurstShot" | "BurstSpeed" | "BurstUUID" | "ButtonFunctionControlOff" | "BWFilter" | "BWMode" | "CAFArea" | "CAFGridSize" | "CAFPointsInFocus" | "CAFPointsSelected" | "Calibration" | "CameraDateTime" | "CameraID" | "CameraISO" | "CameraOrientation" | "CameraParameters" | "CameraPictureStyle" | "CameraPitch" | "CameraRoll" | "CameraSettingsVersion" | "CameraYaw" | "CanonExposureMode" | "CanonFileDescription" | "CanonFileLength" | "CanonFirmwareVersion" | "CanonFlashMode" | "CanonImageHeight" | "CanonImageSize" | "CanonImageType" | "CanonImageWidth" | "CanonModelID" | "CardShutterLock" | "CaseAutoSetting" | "Categories" | "CCDBoardVersion" | "CCDScanMode" | "CCDSensitivity" | "CCDVersion" | "CenterAFArea" | "CenterFocusPoint" | "CenterWeightedAreaSize" | "CHModeShootingSpeed" | "ChromaticAberrationCorr" | "ChromaticAberrationSetting" | "ChrominanceNoiseReduction" | "City2" | "Clarity" | "ClarityControl" | "ClearRetouch" | "CmdDialsApertureSetting" | "CmdDialsChangeMainSub" | "CmdDialsMenuAndPlayback" | "CmdDialsReverseRotation" | "CmdDialsReverseRotExposureComp" | "ColorAdjustment" | "ColorAdjustmentMode" | "ColorBalanceBlue" | "ColorBalanceGreen" | "ColorBalanceRed" | "ColorBalanceVersion" | "ColorBitDepth" | "ColorBW" | "ColorChromeEffect" | "ColorChromeFXBlue" | "ColorCompensationFilter" | "ColorCompensationFilterCustom" | "ColorCompensationFilterSet" | "ColorControl" | "ColorCreatorEffect" | "ColorDataVersion" | "ColorEffect" | "ColorFilter" | "ColorGain" | "ColorHue" | "ColorMatrix" | "ColorMatrixA" | "ColorMatrixB" | "ColorMatrixNumber" | "ColorProfileSettings" | "ColorTempAsShot" | "ColorTempAuto" | "ColorTempCloudy" | "ColorTempCustom" | "ColorTempDaylight" | "ColorTemperature" | "ColorTemperatureAuto" | "ColorTemperatureCustom" | "ColorTemperatureSet" | "ColorTemperatureSetting" | "ColorTempFlash" | "ColorTempFluorescent" | "ColorTempKelvin" | "ColorTempMeasured" | "ColorTempShade" | "ColorTempTungsten" | "ColorTint" | "ColorTone" | "ColorToneAuto" | "ColorToneFaithful" | "ColorToneLandscape" | "ColorToneNeutral" | "ColorTonePortrait" | "ColorToneStandard" | "CommandDials" | "CommandDialsApertureSetting" | "CommandDialsChangeMainSub" | "CommandDialsMenuAndPlayback" | "CommandDialsReverseRotation" | "CommanderChannel" | "CommanderGroupAManualOutput" | "CommanderGroupAMode" | "CommanderGroupBManualOutput" | "CommanderGroupBMode" | "CommanderInternalFlash" | "CommanderInternalManualOutput" | "CommanderInternalTTLComp" | "CommanderInternalTTLCompBuiltin" | "CommanderInternalTTLCompGroupA" | "CommanderInternalTTLCompGroupB" | "ComponentBitDepth" | "ComponentVersion" | "CompositeImageMode" | "CompositionAdjust" | "CompositionAdjustRotation" | "CompositionAdjustX" | "CompositionAdjustY" | "CompressedImageSize" | "CompressionFactor" | "CompressionRatio" | "CompressorVersion" | "ContentIdentifier" | "ContinuousBracketing" | "ContinuousDrive" | "ContinuousModeDisplay" | "ContinuousModeLiveView" | "ContinuousShootingSpeed" | "ContinuousShotLimit" | "ContrastAuto" | "ContrastCurve" | "ContrastDetectAFArea" | "ContrastDetectAFInFocus" | "ContrastFaithful" | "ContrastHighlight" | "ContrastHighlightShadowAdj" | "ContrastLandscape" | "ContrastMode" | "ContrastMonochrome" | "ContrastNeutral" | "ContrastPortrait" | "ContrastSetting" | "ContrastShadow" | "ContrastStandard" | "ControlDialSet" | "ControllerBoardVersion" | "ControlMode" | "ControlRingResponse" | "ControlRingRotation" | "ConversionLens" | "Converter" | "CoringFilter" | "CorrelatedColorTemp" | "CountryCode" | "CPUFirmwareVersion" | "CPUVersions" | "CreativeStyle" | "CreativeStyleSetting" | "CropArea" | "CropBottomMargin" | "CropHeight" | "CropHiSpeed" | "CropLeftMargin" | "CropMode" | "CroppedImageHeight" | "CroppedImageLeft" | "CroppedImageTop" | "CroppedImageWidth" | "CropRightMargin" | "CropTopMargin" | "CropWidth" | "CrossProcess" | "CustomControls" | "CustomizeDials" | "CustomPictureStyleFileName" | "CustomSaturation" | "CustomSettingsAllDefault" | "CustomSettingsBank" | "CustomWBBlueLevel" | "CustomWBError" | "CustomWBGreenLevel" | "CustomWBRedLevel" | "CustomWBSetting" | "DarkFocusEnvironment" | "DataDump" | "DataScaling" | "Date" | "DateDisplayFormat" | "DateImprint" | "DateStampMode" | "DateTimeStamp" | "DateTimeUTC" | "DaylightSavings" | "DECPosition" | "DefaultEraseOption" | "DeletedImageCount" | "DestinationCity" | "DestinationCityCode" | "DestinationDST" | "DevelopmentDynamicRange" | "DeviceCodename" | "DeviceHardwareRevision" | "DeviceMake" | "DeviceType" | "DialDirectionTvAv" | "DiffractionCompensation" | "DiffractionCorrection" | "DigitalFilter" | "DigitalGain" | "DigitalICE" | "DigitalLensOptimizer" | "DigitalLensOptimizerSetting" | "DirectoryIndex" | "DirectoryNumber" | "DispButton" | "DisplayAllAFPoints" | "DisplayAperture" | "DistortionControl" | "DistortionCorrectionSetting" | "DistortionCorrectionValue" | "DistortionCorrectionVersion" | "DistortionCorrParamsPresent" | "DriveModeSetting" | "DriveSpeed" | "DSPFirmwareVersion" | "DualPixelRaw" | "DustRemovalData" | "DXCropAlert" | "DynamicAFArea" | "DynamicAreaAFAssist" | "DynamicAreaAFDisplay" | "DynamicRange" | "DynamicRangeBoost" | "DynamicRangeExpansion" | "DynamicRangeOptimizer" | "DynamicRangeOptimizerBracket" | "DynamicRangeOptimizerLevel" | "DynamicRangeOptimizerMode" | "DynamicRangeOptimizerSetting" | "DynamicRangeSetting" | "EasyExposureComp" | "EasyExposureCompensation" | "EasyMode" | "EffectiveLV" | "EffectiveMaxAperture" | "ElectronicFrontCurtainShutter" | "EnergySavingMode" | "Enhancement" | "Enhancer" | "EpsonImageHeight" | "EpsonImageWidth" | "EpsonSoftware" | "EquipmentVersion" | "ETTLII" | "EventNumber" | "EVSteps" | "EVStepSize" | "ExitPupilPosition" | "ExposureBracketingIndicatorLast" | "ExposureBracketShotNumber" | "ExposureBracketStepSize" | "ExposureBracketValue" | "ExposureCompAutoCancel" | "ExposureCompensationMode" | "ExposureCompensationSet" | "ExposureCompensationSetting" | "ExposureCompStepSize" | "ExposureControlStep" | "ExposureControlStepSize" | "ExposureCount" | "ExposureDelayMode" | "ExposureDifference" | "ExposureIndicator" | "ExposureLevelIncrements" | "ExposureModeInManual" | "ExposureShift" | "ExposureStandardAdjustment" | "ExposureTimeMax" | "ExposureTimeMin" | "ExposureTuning" | "ExposureWarning" | "EXRAuto" | "EXRMode" | "ExtendedMenuBanks" | "ExtendedShutterSpeeds" | "ExtendedWBDetect" | "Extender" | "ExtenderFirmwareVersion" | "ExtenderModel" | "ExtenderSerialNumber" | "ExternalFlash" | "ExternalFlashBounce" | "ExternalFlashCompensation" | "ExternalFlashExposureComp" | "ExternalFlashFirmware" | "ExternalFlashFlags" | "ExternalFlashGuideNumber" | "ExternalFlashGValue" | "ExternalFlashMode" | "ExternalFlashReadyState" | "ExternalFlashStatus" | "ExternalFlashZoom" | "ExternalFlashZoomOverride" | "ExternalSensorBrightnessValue" | "ExtraInfoVersion" | "EyeDetection" | "EyeStartAF" | "FaceDetect" | "FaceDetectArea" | "FaceDetectFrameCrop" | "FaceDetectFrameSize" | "FaceDetection" | "FaceElementPositions" | "FaceElementSelected" | "FaceElementTypes" | "FaceImageSize" | "FaceInfoLength" | "FaceInfoOffset" | "FaceName" | "FacePosition" | "FacePositions" | "FaceRecognition" | "FacesDetected" | "FacesDetectedA" | "FacesDetectedB" | "FacesRecognized" | "FaceWidth" | "Fade" | "FEMicroadjustment" | "FileFormat" | "FileIndex" | "FileInfoVersion" | "FileNumberMemory" | "FileNumberSequence" | "FillFlashAutoReduction" | "FilmGrainEffect" | "FilmMode" | "FilmType" | "FilterEffect" | "FilterEffectAuto" | "FilterEffectMonochrome" | "FinderDisplayDuringExposure" | "FineSharpness" | "FineTuneOptCenterWeighted" | "FineTuneOptHighlightWeighted" | "FineTuneOptMatrixMetering" | "FinishedImage" | "Firmware" | "FirmwareDate" | "FirmwareID" | "FirmwareName" | "FirmwareRevision" | "FirstFrameActionInAFC" | "FisheyeFilter" | "FlashAction" | "FlashActionExternal" | "FlashActivity" | "FlashBatteryLevel" | "FlashBias" | "FlashBits" | "FlashBurstPriority" | "FlashButtonFunction" | "FlashChargeLevel" | "FlashColorFilter" | "FlashCommanderMode" | "FlashCompensation" | "FlashControl" | "FlashControlMode" | "FlashCurtain" | "FlashDefault" | "FlashDevice" | "FlashDistance" | "FlashExposureBracketValue" | "FlashExposureComp" | "FlashExposureCompArea" | "FlashExposureCompSet" | "FlashExposureIndicator" | "FlashExposureIndicatorLast" | "FlashExposureIndicatorNext" | "FlashExposureLock" | "FlashFired" | "FlashFiring" | "FlashFirmwareVersion" | "FlashFocalLength" | "FlashFunction" | "FlashGNDistance" | "FlashGroupACompensation" | "FlashGroupAControlMode" | "FlashGroupBCompensation" | "FlashGroupBControlMode" | "FlashGroupCCompensation" | "FlashGroupCControlMode" | "FlashGuideNumber" | "FlashIlluminationPattern" | "FlashInfoVersion" | "FlashIntensity" | "FlashLevel" | "FlashMasterControlMode" | "FlashMetering" | "FlashMeteringMode" | "FlashMeteringSegments" | "FlashMode" | "FlashModel" | "FlashOptions" | "FlashOutput" | "FlashRemoteControl" | "FlashSerialNumber" | "FlashSetting" | "FlashSource" | "FlashStatus" | "FlashStatusExternal" | "FlashSyncMode" | "FlashSyncSpeed" | "FlashSyncSpeedAv" | "FlashThreshold" | "FlashWarning" | "FlexibleSpotPosition" | "FlickAdvanceDirection" | "FlickerReduce" | "FlickerReduction" | "FlickerReductionIndicator" | "FlickerReductionShooting" | "FlightDegree" | "FlightSpeed" | "FocalLengthTeleZoom" | "FocalPlaneAFPointArea" | "FocalPlaneDiagonal" | "FocalPlaneXSize" | "FocalPlaneYSize" | "FocalType" | "FocalUnits" | "FocusArea" | "FocusAreaSelection" | "FocusBracket" | "FocusBracketing" | "FocusBracketingCropDepthComposite" | "FocusBracketingDepthComposite" | "FocusBracketingExposureSmoothing" | "FocusBracketingFlashInterval" | "FocusBracketingFocusIncrement" | "FocusBracketingImageCount" | "FocusBracketStepSize" | "FocusContinuous" | "FocusDisplayAIServoAndMF" | "FocusDistanceLower" | "FocusDistanceRange" | "FocusDistanceUpper" | "FocusFrameSize" | "FocusHoldButton" | "FocusInfoVersion" | "FocusingScreen" | "FocusLocation" | "FocusLocked" | "FocusModeSetting" | "FocusModeSwitch" | "FocusPeakingHighlightColor" | "FocusPeakingLevel" | "FocusPixel" | "FocusPointBrightness" | "FocusPointPersistence" | "FocusPointSchema" | "FocusPointSelectionSpeed" | "FocusPointWrap" | "FocusPosition" | "FocusPositionHorizontal" | "FocusPositionVertical" | "FocusProcess" | "FocusRange" | "FocusRangeIndex" | "FocusResult" | "FocusRingRotation" | "FocusSetting" | "FocusShiftExposureLock" | "FocusShiftInterval" | "FocusShiftNumberShots" | "FocusShiftShooting" | "FocusShiftStepWidth" | "FocusStatus" | "FocusStepInfinity" | "FocusStepNear" | "FocusTrackingLockOn" | "FocusWarning" | "FolderName" | "FolderNumber" | "FrameCount" | "FrameNumber" | "FramingGridDisplay" | "FreeBytes" | "FreeMemoryCardImages" | "FujiFlashMode" | "FujiModel" | "FullImageSize" | "FullPressSnap" | "Func1Button" | "Func1ButtonPlusDials" | "Func2Button" | "Func3Button" | "FuncButton" | "FuncButtonPlusDials" | "FunctionButton" | "GainBase" | "GEImageSize" | "GEMake" | "GEModel" | "GimbalDegree" | "Gradation" | "GrainEffectRoughness" | "GrainEffectSize" | "GrainyBWFilter" | "GreenGain" | "GridDisplay" | "GripBatteryADLoad" | "GripBatteryADNoLoad" | "GripBatteryPercent" | "GripBatteryState" | "GripBatteryVoltage" | "GroupAreaAFIllumination" | "HDMIBitDepth" | "HDMIExternalRecorder" | "HDMIOutputRange" | "HDMIOutputResolution" | "HDR" | "HDREffect" | "HDRGain" | "HDRHeadroom" | "HDRImageType" | "HDRInfoVersion" | "HDRLevel" | "HDRPSoftware" | "HDRSmoothing" | "HiddenDataLength" | "HiddenDataOffset" | "HighFrameRate" | "HighISONoiseReduction" | "Highlight" | "Highlights" | "HighlightShadow" | "HighlightTone" | "HighlightTonePriority" | "HighlightWarning" | "HighLowKeyAdj" | "HighSpeedSync" | "Histogram" | "HometownCity" | "HometownCityCode" | "HometownDST" | "HostSoftwareExportVersion" | "HostSoftwareRendering" | "Hue" | "HueAdjust" | "HueAdjustment" | "HybridLogGamma" | "HyperlapsDebugInfo" | "Illumination" | "ImageAdjustment" | "ImageArea" | "ImageAuthentication" | "ImageBoundary" | "ImageCaptureType" | "ImageCount" | "ImageData" | "ImageDataSize" | "ImageEditCount" | "ImageEditing" | "ImageEffects" | "ImageGeneration" | "ImageIDNumber" | "ImageName" | "ImageOptimization" | "ImageProcessing" | "ImageProcessingVersion" | "ImageQuality" | "ImageReview" | "ImageReviewMonitorOffTime" | "ImageReviewTime" | "ImageRotated" | "ImageSizeRAW" | "ImageStabilization" | "ImageStabilizationSetting" | "ImageStyle" | "ImageTemperatureMax" | "ImageTemperatureMin" | "ImageTone" | "InfoButtonWhenShooting" | "InfraredIlluminator" | "InitialAFPointAIServoAF" | "InitialAFPointInServo" | "InitialZoomLiveView" | "InitialZoomSetting" | "InitParamsText" | "InstantPlaybackSetup" | "InstantPlaybackTime" | "IntelligentAuto" | "IntelligentContrast" | "IntelligentExposure" | "IntelligentResolution" | "InternalFlash" | "InternalFlashMode" | "InternalFlashStrength" | "InternalFlashTable" | "InternalSerialNumber" | "IntervalDurationHours" | "IntervalDurationMinutes" | "IntervalDurationSeconds" | "IntervalExposureSmoothing" | "IntervalLength" | "IntervalMode" | "IntervalNumber" | "IntervalPriority" | "Intervals" | "IntervalShooting" | "ISO2" | "ISOAuto" | "ISOAutoFlashLimit" | "ISOAutoHiLimit" | "ISOAutoMax" | "ISOAutoMin" | "ISOAutoMinSpeed" | "ISOAutoShutterTime" | "ISODisplay" | "ISOExpansion" | "ISOFloor" | "ISOMax" | "ISOMin" | "ISOSelected" | "ISOSelection" | "ISOSensitivityStep" | "ISOSetting" | "ISOSpeedExpansion" | "ISOSpeedIncrements" | "ISOSpeedRange" | "ISOStepSize" | "ISOValue" | "JPEGQuality" | "JPGCompression" | "JpgRecordedPixels" | "KeepExposure" | "KeystoneCompensation" | "KeystoneDirection" | "KeystoneValue" | "KodakImageHeight" | "KodakImageWidth" | "KodakInfoType" | "KodakMake" | "KodakMaker" | "KodakModel" | "KodakVersion" | "Landmark" | "Language" | "LastFileNumber" | "LateralChromaticAberration" | "LCDDisplayAtPowerOn" | "LCDDisplayReturnToShoot" | "LCDIllumination" | "LCDIlluminationDuringBulb" | "LCDPanels" | "LensApertureRange" | "LensControlRing" | "LensDataVersion" | "LensDistortionParams" | "LensDriveNoAF" | "LensFirmware" | "LensFirmwareVersion" | "LensFocalLength" | "LensFocalRange" | "LensFocusFunctionButtons" | "LensFormat" | "LensFStops" | "LensFunc1Button" | "LensFunc2Button" | "LensIDNumber" | "LensMaxApertureRange" | "LensModulationOptimizer" | "LensMount" | "LensMountType" | "LensPositionAbsolute" | "LensProfileName" | "LensProperties" | "LensShading" | "LensShutterLock" | "LensSpecFeatures" | "LensTemperature" | "LensType2" | "LensType3" | "LensTypeMake" | "LensTypeModel" | "LensZoomPosition" | "LevelIndicator" | "LevelOrientation" | "LightCondition" | "LightingMode" | "LightReading" | "LightSourceSpecial" | "LightSwitch" | "LightValueCenter" | "LightValuePeriphery" | "LimitAFAreaModeSelection" | "LinearityUpperMargin" | "LinkAEToAFPoint" | "LivePhotoVideoIndex" | "LiveView" | "LiveViewAF" | "LiveViewAFAreaMode" | "LiveViewAFMethod" | "LiveViewAFMode" | "LiveViewButtonOptions" | "LiveViewExposureSimulation" | "LiveViewFocusMode" | "LiveViewMetering" | "LiveViewMonitorOffTime" | "LiveViewShooting" | "LocalLocationName" | "Location" | "LocationInfoVersion" | "LocationName" | "LockMicrophoneButton" | "LoggingMetadataText" | "LongExposureNoiseReduction" | "LongExposureNRUsed" | "LowLightAF" | "LuminanceNoiseAmplitude" | "LuminanceNoiseReduction" | "LUT1Name" | "LUT1Opacity" | "LUT2Name" | "LUT2Opacity" | "LVShootingAreaDisplay" | "M16CVersion" | "MacroLED" | "MacroMode" | "MagicFilter" | "MagnifiedView" | "MainDialExposureComp" | "MakerNoteOffset" | "MakerNoteType" | "MakerNoteVersion" | "ManometerPressure" | "ManometerReading" | "ManualAFPointSelectPattern" | "ManualFlash" | "ManualFlashOutput" | "ManualFlashStrength" | "ManualFocusDistance" | "ManualFocusPointIllumination" | "ManualFocusRingInAFMode" | "ManualTv" | "MasterGain" | "MatrixMetering" | "MaxAnalogISO" | "MaxAperture" | "MaxApertureAtMaxFocal" | "MaxApertureAtMinFocal" | "MaxContinuousRelease" | "MaxFaces" | "MaxFocalLength" | "MaxNumAFPoints" | "MCCData" | "MCUVersion" | "MeasuredEV" | "MeasuredLV" | "MeasuredRGGB" | "MeasuredRGGBData" | "MechanicalShutterCount" | "MemoAudioQuality" | "MemoryCardConfiguration" | "MemoryCardNumber" | "MenuButtonDisplayPosition" | "MenuButtonReturn" | "MenuMonitorOffTime" | "MergedImage" | "MergedImages" | "MetaVersion" | "Metering" | "MeteringButton" | "MeteringFrameCount" | "MeteringOffScaleIndicator" | "MeteringTime" | "MeterMode" | "MidRangeSharpness" | "MinAperture" | "MinFocalLength" | "MinFocusDistance" | "MiniatureFilter" | "MiniatureFilterOrientation" | "MiniatureFilterParameter" | "MiniatureFilterPosition" | "MinimumISO" | "MinoltaDate" | "MinoltaImageSize" | "MinoltaModelID" | "MinoltaQuality" | "MinoltaTime" | "MirrorLockup" | "ModeDialPosition" | "ModelingFlash" | "ModelReleaseYear" | "ModifiedColorTemp" | "ModifiedDigitalGain" | "ModifiedParamFlag" | "ModifiedPictureStyle" | "ModifiedSaturation" | "ModifiedSensorBlueLevel" | "ModifiedSensorRedLevel" | "ModifiedSharpness" | "ModifiedSharpnessFreq" | "ModifiedToneCurve" | "ModifiedWhiteBalance" | "ModifiedWhiteBalanceBlue" | "ModifiedWhiteBalanceRed" | "MonitorBrightness" | "MonitorDisplayOff" | "MonitorOffTime" | "MonochromeColor" | "MonochromeFilterEffect" | "MonochromeGrainEffect" | "MonochromeProfileSettings" | "MonochromeToning" | "MonochromeVignetting" | "MonthDayCreated" | "MoonPhase" | "MotionSensitivity" | "MovieAELockButtonAssignment" | "MovieAFAreaMode" | "MovieAFTrackingSensitivity" | "MovieFlickerReduction" | "MovieFunc1Button" | "MovieFunc2Button" | "MovieFunc3Button" | "MovieFunctionButton" | "MovieFunctionButtonPlusDials" | "MovieHighlightDisplayPattern" | "MovieHighlightDisplayThreshold" | "MovieISOAutoControlManualMode" | "MovieISOAutoHiLimit" | "MovieLensControlRing" | "MovieMultiSelector" | "MoviePreviewButton" | "MoviePreviewButtonPlusDials" | "MovieShutterButton" | "MovieSubSelectorAssignment" | "MovieSubSelectorAssignmentPlusDials" | "MovieType" | "MovieWhiteBalanceSameAsPhoto" | "MultiControllerWhileMetering" | "MultiExposure" | "MultiExposureAutoGain" | "MultiExposureMode" | "MultiExposureOverlayMode" | "MultiExposureShots" | "MultiExposureVersion" | "MultiFrameNoiseReduction" | "MultiFrameNREffect" | "MultiFunctionLock" | "MultipleExposureMode" | "MultipleExposureSet" | "MultiSelector" | "MultiSelectorLiveView" | "MultiSelectorPlaybackMode" | "MultiSelectorShootMode" | "MyColorMode" | "NDFilter" | "NEFBitDepth" | "NEFCompression" | "NEFLinearizationTable" | "NeutralDensityFilter" | "NikonCaptureVersion" | "NikonImageSize" | "NikonMeteringMode" | "NoiseFilter" | "NoiseReduction" | "NoiseReductionStrength" | "NoMemoryCard" | "NominalMaxAperture" | "NominalMinAperture" | "NormalWhiteLevel" | "NumAFPoints" | "NumberOfFocusPoints" | "NumberOffsets" | "NumCAFPoints" | "NumFaceElements" | "NumFacePositions" | "OISMode" | "OKButton" | "OlympusImageHeight" | "OlympusImageWidth" | "OneTouchWB" | "OpticalVR" | "OpticalZoom" | "OpticalZoomCode" | "OpticalZoomMode" | "OpticalZoomOn" | "OrderNumber" | "OrientationLinkedAFPoint" | "OriginalDecisionDataOffset" | "OriginalDirectory" | "OriginalFileName" | "OriginalImageHeight" | "OriginalImageWidth" | "OriginalPayloadFrameCount" | "OtherInfo" | "OutputLUT" | "PaintingFilter" | "PanasonicDateTime" | "PanasonicExifVersion" | "PanasonicImageHeight" | "PanasonicImageWidth" | "PanoramaAngle" | "PanoramaCropBottom" | "PanoramaCropLeft" | "PanoramaCropRight" | "PanoramaCropTop" | "PanoramaDirection" | "PanoramaFrameHeight" | "PanoramaFrameWidth" | "PanoramaFullHeight" | "PanoramaFullWidth" | "PanoramaMode" | "PanoramaSize3D" | "PanoramaSourceHeight" | "PanoramaSourceWidth" | "PayloadMetadataText" | "PentaxImageSize" | "PentaxModelID" | "PentaxModelType" | "PerChannelBlackLevel" | "PeripheralIlluminationCorr" | "PeripheralLighting" | "PeripheralLightingSetting" | "PeripheralLightingValue" | "PhotoEffect" | "PhotoIdentifier" | "PhotoInfoPlayback" | "PhotosAppFeatureFlags" | "PhotoShootingMenuBank" | "PhotoShootingMenuBankImageArea" | "PictureControlAdjust" | "PictureControlBase" | "PictureControlName" | "PictureControlQuickAdjust" | "PictureControlVersion" | "PictureEffect" | "PictureFinish" | "PictureMode" | "PictureModeBWFilter" | "PictureModeContrast" | "PictureModeEffect" | "PictureModeSaturation" | "PictureModeSharpness" | "PictureModeStrength" | "PictureModeTone" | "PictureProfile" | "PictureStyle" | "PictureStylePC" | "PictureStyleUserDef" | "Pitch" | "PitchAngle" | "PixelAspectRatio" | "PixelShiftID" | "PixelShiftInfo" | "PixelShiftResolution" | "PixelShiftShooting" | "PlaybackFlickDown" | "PlaybackFlickUp" | "PlaybackMenusTime" | "PlaybackMonitorOffTime" | "PlaybackZoom" | "PlayDisplay" | "POILevel" | "PopupFlash" | "PortraitImpressionBalance" | "PortraitRefiner" | "PostFocusMerging" | "PostReleaseBurstLength" | "PowerAvailable" | "PowerSource" | "PowerUpTime" | "PreAF" | "PreCaptureFrames" | "PreReleaseBurstLength" | "PresetWhiteBalance" | "PreviewButton" | "PreviewButtonPlusDials" | "PreviewImageBorders" | "PreviewImageValid" | "PrimaryAFPoint" | "PrimarySlot" | "PrioritySetupShutterRelease" | "ProcessingNotes" | "ProductionCode" | "ProgramISO" | "ProgramLine" | "ProgramMode" | "ProgramShift" | "QuickControlDialInMeter" | "QuickShot" | "QuietShutterShootingSpeed" | "RangeFinder" | "RawAndJpgRecording" | "RawBurstImageCount" | "RawBurstImageNum" | "RawDataByteOrder" | "RawDataCFAPattern" | "RawDataLength" | "RawDepth" | "RawDevArtFilter" | "RawDevAutoGradation" | "RawDevColorSpace" | "RawDevContrastValue" | "RawDevEditStatus" | "RawDevelopmentProcess" | "RawDevEngine" | "RawDevExposureBiasValue" | "RawDevGradation" | "RawDevGrayPoint" | "RawDevMemoryColorEmphasis" | "RawDevNoiseReduction" | "RawDevPictureMode" | "RawDevPMContrast" | "RawDevPMNoiseFilter" | "RawDevPMPictureTone" | "RawDevPMSaturation" | "RawDevPMSharpness" | "RawDevSaturationEmphasis" | "RawDevSettings" | "RawDevSharpnessValue" | "RawDevVersion" | "RawDevWBFineAdjustment" | "RawDevWhiteBalance" | "RawDevWhiteBalanceValue" | "RAWFileType" | "RawImageCenter" | "RawImageHeight" | "RawImageWidth" | "RawJpgQuality" | "RawJpgSize" | "RawMeasuredRGGB" | "RearControPanelDisplay" | "RearDisplay" | "RecordDisplay" | "RecordID" | "RecordingFormat" | "RecordingMode" | "RecordMode" | "RecordShutterRelease" | "RectifaceText" | "RedEyeRemoval" | "RedGain" | "ReleaseButtonToUseDial" | "ReleaseMode" | "RemoteFuncButton" | "RemoteOnDuration" | "RepeatingFlashCount" | "RepeatingFlashOutput" | "RepeatingFlashOutputExternal" | "RepeatingFlashRate" | "Resaved" | "ResolutionMode" | "RestrictDriveModes" | "RetouchHistory" | "RetouchInfoVersion" | "RetouchNEFProcessing" | "RetractLensOnPowerOff" | "ReverseExposureCompDial" | "ReverseFocusRing" | "ReverseIndicators" | "ReverseShutterSpeedAperture" | "RFLensMFFocusRingSensitivity" | "RicohDate" | "RicohImageHeight" | "RicohImageWidth" | "RicohMake" | "RicohModel" | "Roll" | "RollAngle" | "ROMOperationMode" | "RunTimeEpoch" | "RunTimeFlags" | "RunTimeScale" | "RunTimeValue" | "SafetyShift" | "SafetyShiftInAvOrTv" | "SameExposureForNewAperture" | "SamsungModelID" | "SanyoQuality" | "SanyoThumbnail" | "SaturationAdj" | "SaturationAuto" | "SaturationFaithful" | "SaturationLandscape" | "SaturationNeutral" | "SaturationPortrait" | "SaturationSetting" | "SaturationStandard" | "SaveFocus" | "ScanImageEnhancer" | "SceneAssist" | "SceneDetect" | "SceneMode" | "SceneModeUsed" | "SceneRecognition" | "SceneSelect" | "ScreenTips" | "SecondarySlotFunction" | "SelectableAFPoint" | "SelectAFAreaSelectMode" | "SelfTimer" | "SelfTimerInterval" | "SelfTimerShotCount" | "SelfTimerShotInterval" | "SelfTimerTime" | "SemanticStyle" | "SemanticStylePreset" | "SemanticStyleRenderingVer" | "SensitivityAdjust" | "SensitivitySteps" | "Sensor" | "SensorBitDepth" | "SensorBlueLevel" | "SensorCalibration" | "SensorCleaning" | "SensorFullHeight" | "SensorFullWidth" | "SensorID" | "SensorPixelSize" | "SensorRedLevel" | "SensorSize" | "SensorTemperature" | "Sequence" | "SequenceFileNumber" | "SequenceImageNumber" | "SequenceLength" | "SequenceNumber" | "SequenceShotInterval" | "SequentialShot" | "ServoAFCharacteristics" | "SetButtonCrossKeysFunc" | "SetButtonWhenShooting" | "SetFunctionWhenShooting" | "ShadingCompensation" | "Shadow" | "ShadowCorrection" | "Shadows" | "ShadowTone" | "ShakeReduction" | "Sharpening" | "SharpnessAuto" | "SharpnessFactor" | "SharpnessFaithful" | "SharpnessFreqTable" | "SharpnessFrequency" | "SharpnessLandscape" | "SharpnessMonochrome" | "SharpnessNeutral" | "SharpnessPortrait" | "SharpnessRange" | "SharpnessSetting" | "SharpnessStandard" | "SharpnessTable" | "ShootingInfoDisplay" | "ShootingInfoMonitorOffTime" | "ShootingModeSetting" | "ShortOwnerName" | "ShortReleaseTimeLag" | "ShotInfoVersion" | "ShotLogDataText" | "ShotNumber" | "ShotNumberSincePowerUp" | "ShotParamsText" | "ShotsPerInterval" | "Shutter" | "ShutterAELButton" | "ShutterButtonAFOnButton" | "ShutterCount" | "ShutterCount2" | "ShutterCount3" | "ShutterCurtainSync" | "ShutterMode" | "ShutterReleaseMethod" | "ShutterReleaseNoCFCard" | "ShutterReleaseTiming" | "ShutterReleaseWithoutLens" | "ShutterSpeedLock" | "ShutterSpeedRange" | "ShutterSpeedSetting" | "ShutterType" | "SignalToNoiseRatio" | "SilentPhotography" | "SingleFrame" | "SingleFrameBracketing" | "SkinToneCorrection" | "SlaveFlashMeteringSegments" | "SlowShutter" | "SlowSync" | "SmartAlbumColor" | "SmileShutter" | "SmileShutterMode" | "SoftFocusFilter" | "SoftSkinEffect" | "SoftwareDate" | "SonyDateTime" | "SonyDateTime2" | "SonyExposureTime" | "SonyFNumber" | "SonyImageHeight" | "SonyImageHeightMax" | "SonyImageSize" | "SonyImageWidth" | "SonyImageWidthMax" | "SonyISO" | "SonyMaxAperture" | "SonyMaxApertureValue" | "SonyMinAperture" | "SonyModelID" | "SonyQuality" | "SonyTimeMinSec" | "SourceDirectoryIndex" | "SourceFileIndex" | "SpecialEffectLevel" | "SpecialEffectMode" | "SpecialEffectSetting" | "SpecialMode" | "SpecularWhiteLevel" | "SpeedX" | "SpeedY" | "SpeedZ" | "SportEvents" | "SpotFocusPointX" | "SpotFocusPointY" | "SpotMeterLinkToAFPoint" | "SRActive" | "SRAWQuality" | "SRFocalLength" | "SRHalfPressTime" | "SRResult" | "StackedImage" | "StandbyMonitorOffTime" | "StandbyTimer" | "StartMovieShooting" | "StaticMetadataText" | "StepCropShooting" | "StopsAboveBaseISO" | "StorageMethod" | "StoreByOrientation" | "SubDialFrameAdvance" | "SubjectDetectArea" | "SubjectDetectDetail" | "SubjectDetectFrameSize" | "SubjectDetection" | "SubjectDetectionAreaMF" | "SubjectDetectStatus" | "SubjectMotion" | "SubjectProgram" | "SubjectRecognition" | "SubjectSwitching" | "SubjectToDetect" | "SubSelector" | "SubSelectorAssignment" | "SubSelectorCenter" | "SubSelectorPlusDials" | "SummaryText" | "SuperimposedDisplay" | "SuperMacro" | "SvISOSetting" | "SweepPanoramaDirection" | "SweepPanoramaFieldOfView" | "SweepPanoramaSize" | "SwitchToRegisteredAFPoint" | "SyncReleaseMode" | "TargetAperture" | "TargetCompressionRatio" | "TargetDistanceSetting" | "TargetExposureTime" | "TargetImageType" | "Teleconverter" | "TextEncoding" | "TextStamp" | "ThumbnailFileName" | "ThumbnailImageValidArea" | "TiffMeteringImage" | "TiffMeteringImageHeight" | "TiffMeteringImageWidth" | "Time" | "TimeLapseShotNumber" | "TimeLogText" | "TimerFunctionButton" | "TimerLength" | "TimerRecording" | "TimeSincePowerOn" | "TimeStamp" | "TimeZone" | "TimeZoneCity" | "TimeZoneCode" | "TimeZoneInfo" | "Title" | "ToneComp" | "ToneCurve" | "ToneCurveMatching" | "ToneCurveTable" | "ToneLevel" | "ToningEffect" | "ToningEffectAuto" | "ToningEffectMonochrome" | "ToningSaturation" | "TotalZoom" | "TouchAE" | "ToyCameraFilter" | "Transform" | "TrashButtonFunction" | "TravelDay" | "TriggerMode" | "TvExposureTimeSetting" | "UniqueID" | "UnknownNumber" | "UnsharpMaskFineness" | "UnsharpMaskThreshold" | "UnusedLoggingMetadata" | "UsableMeteringModes" | "UsableShootingModes" | "USBPowerDelivery" | "UserDef1PictureStyle" | "UserDef2PictureStyle" | "UserDef3PictureStyle" | "UserLabel" | "UserProfile" | "USMLensElectronicMF" | "ValidAFPoints" | "ValidBits" | "VariableLowPassFilter" | "VariProgram" | "VerticalAFOnButton" | "VerticalFuncButton" | "VerticalFuncButtonPlusDials" | "VerticalMovieAFOnButton" | "VerticalMovieFuncButton" | "VerticalMultiSelector" | "VFDisplayIllumination" | "VibrationReduction" | "VideoBurstMode" | "VideoBurstResolution" | "VideoFrameRate" | "VideoPreburst" | "ViewfinderDisplay" | "ViewfinderWarning" | "ViewfinderWarnings" | "ViewInfoDuringExposure" | "ViewingMode" | "Vignette" | "VignetteControl" | "VignetteCorrectionVersion" | "Vignetting" | "VignettingCorrVersion" | "VoiceMemo" | "VRDOffset" | "VRInfoVersion" | "VRMode" | "VRType" | "WatercolorFilter" | "WBBlue" | "WBBracketingSteps" | "WBBracketMode" | "WBBracketShotNumber" | "WBBracketValueAB" | "WBBracketValueGM" | "WBButtonPlaybackMode" | "WBGreen" | "WBMediaImageSizeSetting" | "WBMode" | "WBRed" | "WBScale" | "WBShiftAB" | "WBShiftCreativeControl" | "WBShiftGM" | "WhiteBalanceAutoAdjustment" | "WhiteBalanceBias" | "WhiteBalanceBlue" | "WhiteBalanceBracket" | "WhiteBalanceBracketing" | "WhiteBalanceFineTune" | "WhiteBalanceMatching" | "WhiteBalanceMode" | "WhiteBalanceRed" | "WhiteBalanceSet" | "WhiteBalanceSetting" | "WhiteBalanceSetup" | "WhiteBalanceTable" | "WhiteBalanceTemperature" | "WhiteBoard" | "WholeAreaTracking" | "WideAdapter" | "WideFocusZone" | "WideRange" | "WorldTimeLocation" | "X3FillLight" | "Xidiri" | "Yaw" | "YawAngle" | "YearCreated" | "ZoneMatching" | "ZoneMatchingMode" | "ZoneMatchingOn" | "ZoneMatchingValue" | "ZoomedPreviewImage" | "ZoomedPreviewLength" | "ZoomedPreviewSize" | "ZoomedPreviewStart" | "ZoomSourceWidth" | "ZoomStepCount" | "ZoomTargetWidth" | "BorderID" | "BorderLocation" | "BorderName" | "BordersVersion" | "BorderType" | "CameraOwner" | "CaptureConditionsPAR" | "DigitalEffectsName" | "DigitalEffectsType" | "DigitalEffectsVersion" | "EditTagArray" | "FilmGencode" | "FilmProductCode" | "FilmSize" | "ImageSourceEK" | "MetadataNumber" | "ModelAndVersion" | "WatermarkType" | "DistortionScale" | "NumWBEntries" | "CopyrightFlag" | "GlobalAltitude" | "GlobalAngle" | "HasRealMergedData" | "IPTCDigest" | "NumSlices" | "PhotoshopFormat" | "PhotoshopQuality" | "PhotoshopThumbnail" | "PrintPosition" | "PrintScale" | "PrintStyle" | "ReaderName" | "SlicesGroupName" | "WriterName" | "PrintIMVersion" | "AndroidCaptureFPS" | "AndroidVersion" | "AndroidVideoTemporalLayersCount" | "AudioBitsPerSample" | "AudioChannels" | "AudioFormat" | "AudioSampleRate" | "AudioVendorID" | "Author" | "BackgroundColor" | "ChapterListTrackID" | "CleanApertureDimensions" | "ColorPrimaries" | "ColorProfiles" | "CompatibleBrands" | "CompressorID" | "CompressorName" | "ContentDescribes" | "CreationDate" | "CurrentTime" | "EncodedPixelsDimensions" | "FontName" | "Format" | "FullFrameRatePlaybackIntent" | "GenBalance" | "GenFlags" | "GenGraphicsMode" | "GenMediaVersion" | "GenOpColor" | "GPSCoordinates" | "GraphicsMode" | "HandlerClass" | "HandlerDescription" | "HandlerType" | "HandlerVendorID" | "LayoutFlags" | "LocationAccuracyHorizontal" | "MajorBrand" | "MatrixCoefficients" | "MatrixStructure" | "MediaCreateDate" | "MediaDataOffset" | "MediaDataSize" | "MediaDuration" | "MediaHeaderVersion" | "MediaLanguageCode" | "MediaModifyDate" | "MediaTimeScale" | "MediaUID" | "MetaFormat" | "MinorVersion" | "MovieHeaderVersion" | "NextTrackID" | "OpColor" | "OtherFormat" | "PlaybackFrameRate" | "PlayMode" | "PosterTime" | "PreferredRate" | "PreferredVolume" | "PreviewDuration" | "PreviewTime" | "ProductionApertureDimensions" | "PurchaseFileFormat" | "SampleDuration" | "SampleTime" | "SelectionDuration" | "SelectionTime" | "SerialNumberHash" | "SourceImageHeight" | "SourceImageWidth" | "TextColor" | "TextFace" | "TextFont" | "TextSize" | "TimecodeTrack" | "TimeScale" | "TrackCreateDate" | "TrackDuration" | "TrackHeaderVersion" | "TrackID" | "TrackLayer" | "TrackModifyDate" | "TrackVolume" | "TransferCharacteristics" | "VendorID" | "VideoFullRangeFlag" | "ChromaticAberrationParams" | "FujiLayout" | "GeometricDistortionParams" | "RAFCompression" | "RawExposureBias" | "RawImageAspectRatio" | "RawImageCroppedSize" | "RawImageCropTopLeft" | "RawImageFullHeight" | "RawImageFullSize" | "RawImageFullWidth" | "RawZoomActive" | "RawZoomSize" | "RawZoomTopLeft" | "VignettingParams" | "XTransLayout" | "AudioCodec" | "AudioSampleCount" | "AvgBytesPerSec" | "Encoding" | "MaxDataRate" | "NumChannels" | "SampleRate" | "SampleSize" | "StreamCount" | "StreamType" | "VideoCodec" | "VideoFrameCount" | "About" | "AbsoluteAltitude" | "Album" | "AlreadyApplied" | "AltitudeType" | "ApproximateFocusDistance" | "AsrClimaxDuration" | "AsrClimaxScene" | "AsrIsMacroRange" | "AsrSceneCondition" | "AsrSceneMode" | "AutoLateralCA" | "BandName" | "BlueHue" | "BlueSaturation" | "BurstID" | "BurstPrimary" | "CameraBurstID" | "CameraFacing" | "CameraModelID" | "CameraProfile" | "CameraProfileDigest" | "Cameras" | "CamReverse" | "CaptureMode" | "CaptureSoftware" | "CatalogSets" | "CellGlobalID" | "CellR" | "CellTowerID" | "CentralTemperature" | "CentralWavelength" | "Changes" | "ChromaticAberrationB" | "ChromaticAberrationR" | "CircularGradientBasedCorrections" | "ColorClass" | "ColorGradeBlending" | "ColorGradeGlobalHue" | "ColorGradeGlobalLum" | "ColorGradeGlobalSat" | "ColorGradeHighlightLum" | "ColorGradeMidtoneHue" | "ColorGradeMidtoneLum" | "ColorGradeMidtoneSat" | "ColorGradeShadowLum" | "ColorLabel" | "Colorlabels" | "ColorNoiseReduction" | "ColorNoiseReductionDetail" | "ColorNoiseReductionSmoothness" | "Container" | "ContainerDirectory" | "ConvertToGrayscale" | "CreationTime" | "CreatorAppID" | "CreatorContactInfo" | "CreatorOpenWithUIOptions" | "Creatortool" | "CreatorTool" | "CropAngle" | "CropConstrainToWarp" | "CroppedAreaImageHeightPixels" | "CroppedAreaImageWidthPixels" | "CroppedAreaLeftPixels" | "CroppedAreaTopPixels" | "DateAcquired" | "DateTime" | "DateTimeDigitized" | "DateUTC" | "DefringeGreenAmount" | "DefringeGreenHueHi" | "DefringeGreenHueLo" | "DefringePurpleAmount" | "DefringePurpleHueHi" | "DefringePurpleHueLo" | "Dehaze" | "DepthImage" | "DerivedFrom" | "DisableAutoCreation" | "DistortionCorrectionAlreadyApplied" | "DocumentID" | "DroneModel" | "DroneSerialNumber" | "Face" | "FaceNum" | "FaceSelectedIndex" | "Far" | "Filters" | "FlashManufacturer" | "FlashPixVersion" | "FlightPitchDegree" | "FlightRollDegree" | "FlightXSpeed" | "FlightYawDegree" | "FlightYSpeed" | "FlightZSpeed" | "FocusAreaHeight" | "FocusAreaNum" | "FocusAreaWidth" | "FocusIsLensMoving" | "FocusPosX" | "FocusPosY" | "FocusState" | "FullPanoHeightPixels" | "FullPanoWidthPixels" | "GimbalPitchDegree" | "GimbalReverse" | "GimbalRollDegree" | "GimbalYawDegree" | "GpsStatus" | "GrainAmount" | "GreenHue" | "GreenSaturation" | "HasCrop" | "HasExtendedXMP" | "HasSettings" | "HDRPlusMakerNote" | "HDRPMakerNote" | "HierarchicalSubject" | "History" | "HueAdjustmentAqua" | "HueAdjustmentBlue" | "HueAdjustmentGreen" | "HueAdjustmentMagenta" | "HueAdjustmentOrange" | "HueAdjustmentPurple" | "HueAdjustmentRed" | "HueAdjustmentYellow" | "ICCProfileName" | "ImageMimeType" | "ImageSource" | "InitialViewHeadingDegrees" | "InitialViewPitchDegrees" | "InitialViewRollDegrees" | "InteroperabilityIndex" | "InteroperabilityVersion" | "IsBokehActive" | "IsHDRActive" | "IsNightModeActive" | "Label" | "LastKeywordXMP" | "LateralChromaticAberrationCorrectionAlreadyApplied" | "LegacyIPTCDigest" | "LensFacing" | "LensManualDistortionAmount" | "LensManufacturer" | "LensProfileDigest" | "LensProfileDistortionScale" | "LensProfileEnable" | "LensProfileIsEmbedded" | "LensProfileSetup" | "LensProfileVignettingScale" | "LocationAreaCode" | "Look" | "LuminanceAdjustmentAqua" | "LuminanceAdjustmentBlue" | "LuminanceAdjustmentGreen" | "LuminanceAdjustmentMagenta" | "LuminanceAdjustmentOrange" | "LuminanceAdjustmentPurple" | "LuminanceAdjustmentRed" | "LuminanceAdjustmentYellow" | "LuminanceNoiseReductionContrast" | "LuminanceNoiseReductionDetail" | "LuminanceSmoothing" | "MakerNote" | "Marked" | "Mask" | "MetadataDate" | "MicroVideo" | "MicroVideoOffset" | "MicroVideoPresentationTimestampUs" | "MicroVideoVersion" | "Mime" | "MobileCountryCode" | "MobileNetworkCode" | "ModificationDate" | "MotionPhoto" | "MotionPhotoPresentationTimestampUs" | "MotionPhotoVersion" | "NativeDigest" | "Near" | "Notes" | "ObjectAreaHeight" | "ObjectAreaWidth" | "ObjectNum" | "ObjectPosX" | "ObjectPosY" | "OriginalCreateDateTime" | "OriginalDocumentID" | "OverrideLookVignette" | "ParametricDarks" | "ParametricHighlights" | "ParametricHighlightSplit" | "ParametricLights" | "ParametricMidtoneSplit" | "ParametricShadows" | "ParametricShadowSplit" | "PersonInImage" | "PersonInImageWDetails" | "PerspectiveAspect" | "PerspectiveHorizontal" | "PerspectiveRotate" | "PerspectiveScale" | "PerspectiveUpright" | "PerspectiveVertical" | "PerspectiveX" | "PerspectiveY" | "PhotographicSensitivity" | "PickLabel" | "PipelineVersion" | "PMVersion" | "PortraitVersion" | "PoseHeadingDegrees" | "PosePitchDegrees" | "PoseRollDegrees" | "PostCropVignetteAmount" | "PreservedFileName" | "ProcessVersion" | "Profiles" | "ProjectionType" | "RawFileName" | "RedHue" | "RedSaturation" | "RegionAppliedToDimensionsH" | "RegionAppliedToDimensionsUnit" | "RegionAppliedToDimensionsW" | "RegionAreaH" | "RegionAreaUnit" | "RegionAreaW" | "RegionAreaX" | "RegionAreaY" | "RegionInfo" | "RegionInfoMP" | "RegionName" | "RegionPersonDisplayName" | "RegionRotation" | "RegionType" | "RegistryID" | "RelativeAltitude" | "Rights" | "SaturationAdjustmentAqua" | "SaturationAdjustmentBlue" | "SaturationAdjustmentGreen" | "SaturationAdjustmentMagenta" | "SaturationAdjustmentOrange" | "SaturationAdjustmentPurple" | "SaturationAdjustmentRed" | "SaturationAdjustmentYellow" | "Scene" | "SceneDetectResultConfidences" | "SceneDetectResultIds" | "SelfData" | "ShadowTint" | "SharpenDetail" | "SharpenEdgeMasking" | "SharpenRadius" | "ShotLogData" | "SourcePhotosCount" | "SpecialTypeID" | "SplitToningBalance" | "SplitToningHighlightHue" | "SplitToningHighlightSaturation" | "SplitToningShadowHue" | "SplitToningShadowSaturation" | "StitchingSoftware" | "Subject" | "SubsecTime" | "SurveyingMode" | "Tag" | "Tagged" | "TagsList" | "Texture" | "Tint" | "TlinearGain" | "ToneCurveBlue" | "ToneCurveGreen" | "ToneCurveName" | "ToneCurvePV2012Blue" | "ToneCurvePV2012Green" | "ToneCurvePV2012Red" | "ToneCurveRed" | "ToneMapStrength" | "UprightCenterMode" | "UprightCenterNormX" | "UprightCenterNormY" | "UprightFocalLength35mm" | "UprightFocalMode" | "UprightFourSegmentsCount" | "UprightPreview" | "UprightTransformCount" | "UprightVersion" | "UsePanoramaViewer" | "UTCAtExposure" | "Versions" | "Vibrance" | "VignetteAmount" | "WavelengthFWHM" | "XMPMeta" | "XMPToolkit">;
|
|
18869
18986
|
export type TagName = StrEnumKeys<typeof TagNames>;
|