exiftool-vendored 30.0.0 → 30.2.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 +40 -0
- package/CLAUDE.md +40 -104
- package/README.md +30 -1
- package/RELEASE.md +29 -34
- package/dist/Array.js.map +1 -1
- package/dist/BinaryToBufferTask.js +1 -1
- package/dist/BinaryToBufferTask.js.map +1 -1
- package/dist/CoordinateParser.js +9 -0
- package/dist/CoordinateParser.js.map +1 -1
- package/dist/DateTime.js +1 -1
- package/dist/DateTime.js.map +1 -1
- package/dist/ExifDate.d.ts +47 -7
- package/dist/ExifDate.js +60 -1
- package/dist/ExifDate.js.map +1 -1
- package/dist/ExifDateTime.js +5 -1
- package/dist/ExifDateTime.js.map +1 -1
- package/dist/ExifTool.d.ts +9 -23
- package/dist/ExifTool.js +16 -1
- package/dist/ExifTool.js.map +1 -1
- package/dist/ExifToolVendoredTags.d.ts +0 -1
- package/dist/ExifToolVendoredTags.js +0 -4
- package/dist/ExifToolVendoredTags.js.map +1 -1
- package/dist/ExiftoolPath.js +5 -5
- package/dist/ExiftoolPath.js.map +1 -1
- package/dist/GPS.d.ts +3 -1
- package/dist/GPS.js +4 -15
- package/dist/GPS.js.map +1 -1
- package/dist/GeolocationTags.d.ts +1 -1
- package/dist/GeolocationTags.js +2 -2
- package/dist/GeolocationTags.js.map +1 -1
- package/dist/ICCProfileTags.d.ts +0 -1
- package/dist/ICCProfileTags.js +0 -4
- package/dist/ICCProfileTags.js.map +1 -1
- package/dist/IPTCApplicationRecordTags.d.ts +0 -4
- package/dist/IPTCApplicationRecordTags.js +0 -7
- package/dist/IPTCApplicationRecordTags.js.map +1 -1
- package/dist/ImageDataHashTag.d.ts +0 -1
- package/dist/ImageDataHashTag.js +0 -4
- package/dist/ImageDataHashTag.js.map +1 -1
- package/dist/JSON.d.ts +4 -0
- package/dist/JSON.js +7 -2
- package/dist/JSON.js.map +1 -1
- package/dist/MWGTags.d.ts +0 -8
- package/dist/MWGTags.js +0 -14
- package/dist/MWGTags.js.map +1 -1
- package/dist/Maybe.js +1 -1
- package/dist/Maybe.js.map +1 -1
- package/dist/Object.d.ts +2 -2
- package/dist/Object.js +3 -3
- package/dist/Object.js.map +1 -1
- package/dist/RawTags.d.ts +1 -4
- package/dist/ReadTask.js +5 -2
- package/dist/ReadTask.js.map +1 -1
- package/dist/StrEnum.d.ts +144 -4
- package/dist/StrEnum.js +2 -0
- package/dist/StrEnum.js.map +1 -1
- package/dist/String.js +1 -6
- package/dist/String.js.map +1 -1
- package/dist/Tags.d.ts +167 -171
- package/dist/Tags.js +5 -6
- package/dist/Tags.js.map +1 -1
- package/dist/TimeParsing.js +1 -1
- package/dist/TimeParsing.js.map +1 -1
- package/dist/Timezones.js +3 -1
- package/dist/Timezones.js.map +1 -1
- package/dist/WriteTags.d.ts +18 -2
- package/eslint.config.mjs +37 -18
- package/package.json +12 -11
- package/dist/ExifToolTags.d.ts +0 -7
- package/dist/ExifToolTags.js +0 -19
- package/dist/ExifToolTags.js.map +0 -1
- package/dist/FileTags.d.ts +0 -7
- package/dist/FileTags.js +0 -41
- package/dist/FileTags.js.map +0 -1
package/dist/Tags.d.ts
CHANGED
|
@@ -19,8 +19,8 @@ import { Version } from "./Version";
|
|
|
19
19
|
export interface ExifToolTags {
|
|
20
20
|
/** ☆☆☆☆ ✔ Example: "File is empty" */
|
|
21
21
|
Error?: string;
|
|
22
|
-
/** ★★★★ ✔ Example: 13.
|
|
23
|
-
ExifToolVersion?:
|
|
22
|
+
/** ★★★★ ✔ Example: "13.30" */
|
|
23
|
+
ExifToolVersion?: string;
|
|
24
24
|
/** ☆☆☆☆ Example: "path/to/file.jpg" */
|
|
25
25
|
SourceFile?: string;
|
|
26
26
|
/** ☆☆☆☆ ✔ Example: "Unrecognized IPTC record 0 (ignored)" */
|
|
@@ -47,15 +47,15 @@ export interface FileTags {
|
|
|
47
47
|
EncodingProcess?: string;
|
|
48
48
|
/** ★★★★ ✔ Example: "Little-endian (Intel, II)" */
|
|
49
49
|
ExifByteOrder?: string;
|
|
50
|
-
/** ★★★★ ✔ Example: "2025:05:
|
|
50
|
+
/** ★★★★ ✔ Example: "2025:05:22 21:23:30Z" */
|
|
51
51
|
FileAccessDate?: ExifDateTime | string;
|
|
52
52
|
/** ☆☆☆☆ Example: */
|
|
53
53
|
FileCreateDate?: ExifDateTime | string;
|
|
54
|
-
/** ★★★★ ✔ Example: "2025:05:
|
|
54
|
+
/** ★★★★ ✔ Example: "2025:05:22 05:00:38Z" */
|
|
55
55
|
FileInodeChangeDate?: ExifDateTime | string;
|
|
56
|
-
/** ★★★★ ✔ Example: "
|
|
56
|
+
/** ★★★★ ✔ Example: "2024:06:16 01:39:22Z" */
|
|
57
57
|
FileModifyDate?: ExifDateTime | string;
|
|
58
|
-
/** ★★★★ ✔ Example: "
|
|
58
|
+
/** ★★★★ ✔ Example: "truncated.mp4" */
|
|
59
59
|
FileName?: string;
|
|
60
60
|
/** ★★★★ ✔ Example: "-rwxrwxr-x" */
|
|
61
61
|
FilePermissions?: string;
|
|
@@ -88,101 +88,6 @@ export interface FileTags {
|
|
|
88
88
|
}
|
|
89
89
|
export declare const FileTagsNames: StrEnum<"BitsPerSample" | "BMPVersion" | "ColorComponents" | "CurrentIPTCDigest" | "Directory" | "EncodingProcess" | "ExifByteOrder" | "FileAccessDate" | "FileCreateDate" | "FileInodeChangeDate" | "FileModifyDate" | "FileName" | "FilePermissions" | "FileSize" | "FileType" | "FileTypeExtension" | "ImageDataMD5" | "ImageHeight" | "ImageWidth" | "MIMEType" | "NumColors" | "NumImportantColors" | "PixelsPerMeterX" | "PixelsPerMeterY" | "Planes" | "YCbCrSubSampling">;
|
|
90
90
|
export type FileTag = StrEnumKeys<typeof FileTagsNames>;
|
|
91
|
-
/**
|
|
92
|
-
* These are tags are derived from the values of one or more other tags.
|
|
93
|
-
* Only a few are writable directly.
|
|
94
|
-
* @see https://exiftool.org/TagNames/Composite.html
|
|
95
|
-
*/
|
|
96
|
-
export interface CompositeTags {
|
|
97
|
-
/** ☆☆☆☆ ✔ Example: "Unknown (49 5)" */
|
|
98
|
-
AdvancedSceneMode?: string;
|
|
99
|
-
/** ★★★★ ✔ Example: 90 */
|
|
100
|
-
Aperture?: number;
|
|
101
|
-
/** ★☆☆☆ ✔ Example: "On" */
|
|
102
|
-
AutoFocus?: string;
|
|
103
|
-
/** ☆☆☆☆ ✔ Example: "8.7 Mbps" */
|
|
104
|
-
AvgBitrate?: string;
|
|
105
|
-
/** ★★☆☆ ✔ Example: 46 */
|
|
106
|
-
BlueBalance?: number;
|
|
107
|
-
/** ☆☆☆☆ ✔ Example: "[Red,Green][Green,Blue]" */
|
|
108
|
-
CFAPattern?: string;
|
|
109
|
-
/** ★★★★ ✔ Example: "1.030 mm" */
|
|
110
|
-
CircleOfConfusion?: string;
|
|
111
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
112
|
-
ConditionalFEC?: number;
|
|
113
|
-
/** ☆☆☆☆ ✔ Example: "On" */
|
|
114
|
-
ContrastDetectAF?: string;
|
|
115
|
-
/** ☆☆☆☆ ✔ Example: "2021:03:16 18:14:25" */
|
|
116
|
-
DigitalCreationDateTime?: ExifDateTime | string;
|
|
117
|
-
/** ★★☆☆ ✔ Example: "inf (9.66 m - inf)" */
|
|
118
|
-
DOF?: string;
|
|
119
|
-
/** ★★☆☆ ✔ Example: "Unknown (3152)" */
|
|
120
|
-
DriveMode?: string;
|
|
121
|
-
/** ☆☆☆☆ ✔ Example: "Not attached" */
|
|
122
|
-
ExtenderStatus?: string;
|
|
123
|
-
/** ☆☆☆☆ ✔ Example: "Optional,TTL" */
|
|
124
|
-
FlashType?: string;
|
|
125
|
-
/** ★★★★ ✔ Example: "99.7 mm (35 mm equivalent: 554.0 mm)" */
|
|
126
|
-
FocalLength35efl?: string;
|
|
127
|
-
/** ★★★★ ✔ Example: "97.7 deg" */
|
|
128
|
-
FOV?: string;
|
|
129
|
-
/** ☆☆☆☆ ✔ Example: "2024:04:21 04:09:51Z" */
|
|
130
|
-
GPSDateTime?: ExifDateTime | string;
|
|
131
|
-
/** ☆☆☆☆ ✔ Example: "7.196465 134.376806666667" */
|
|
132
|
-
GPSPosition?: string;
|
|
133
|
-
/** ★★★★ ✔ Example: "Inf m" */
|
|
134
|
-
HyperfocalDistance?: string;
|
|
135
|
-
/** ★★★★ ✔ Example: "8x8" */
|
|
136
|
-
ImageSize?: string;
|
|
137
|
-
/** ★★☆☆ ✔ Example: "smc PENTAX-D FA 50mm F2.8 Macro" */
|
|
138
|
-
Lens?: string;
|
|
139
|
-
/** ★★☆☆ ✔ Example: "9.2 - 92.0 mm (35 mm equivalent: 24.9 - 248.8 mm)" */
|
|
140
|
-
Lens35efl?: string;
|
|
141
|
-
/** ★★☆☆ ✔ Example: "smc PENTAX-FA 28-105mm F3.2-4.5 AL[IF]" */
|
|
142
|
-
LensID?: string;
|
|
143
|
-
/** ★★★★ ✔ Example: 9.9 */
|
|
144
|
-
LightValue?: number;
|
|
145
|
-
/** ★★★★ ✔ Example: 9.5 */
|
|
146
|
-
Megapixels?: number;
|
|
147
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data 512 bytes, use -b option to extract)" */
|
|
148
|
-
OriginalDecisionData?: BinaryField | string;
|
|
149
|
-
/** ☆☆☆☆ Example: "9.9 um" */
|
|
150
|
-
PeakSpectralSensitivity?: string;
|
|
151
|
-
/** ☆☆☆☆ ✔ Example: "On (73-point)" */
|
|
152
|
-
PhaseDetectAF?: string;
|
|
153
|
-
/** ★★★☆ ✔ Example: "(Binary data 37244 bytes, use -b option to extract)" */
|
|
154
|
-
PreviewImage?: BinaryField;
|
|
155
|
-
/** ★★☆☆ ✔ Example: 38.625 */
|
|
156
|
-
RedBalance?: number;
|
|
157
|
-
/** ☆☆☆☆ ✔ Example: "On" */
|
|
158
|
-
RedEyeReduction?: string;
|
|
159
|
-
/** ☆☆☆☆ Example: 11.2 */
|
|
160
|
-
RicohPitch?: number;
|
|
161
|
-
/** ☆☆☆☆ Example: 1.59 */
|
|
162
|
-
RicohRoll?: number;
|
|
163
|
-
/** ★☆☆☆ ✔ Example: "Unknown (0)" */
|
|
164
|
-
Rotation?: number;
|
|
165
|
-
/** ☆☆☆☆ ✔ Example: "9:30:01" */
|
|
166
|
-
RunTimeSincePowerUp?: string;
|
|
167
|
-
/** ★★★★ ✔ Example: 9.9 */
|
|
168
|
-
ScaleFactor35efl?: number;
|
|
169
|
-
/** ★★☆☆ ✔ Example: "Unknown (83)" */
|
|
170
|
-
ShootingMode?: string;
|
|
171
|
-
/** ☆☆☆☆ ✔ Example: "1st-curtain sync" */
|
|
172
|
-
ShutterCurtainHack?: string;
|
|
173
|
-
/** ★★★★ ✔ Example: "inf" */
|
|
174
|
-
ShutterSpeed?: string;
|
|
175
|
-
/** ★☆☆☆ ✔ Example: "2025:04:28 16:06:17.88+01:00" */
|
|
176
|
-
SubSecCreateDate?: ExifDateTime | string;
|
|
177
|
-
/** ★☆☆☆ ✔ Example: "2025:04:28 16:06:17.88+01:00" */
|
|
178
|
-
SubSecDateTimeOriginal?: ExifDateTime | string;
|
|
179
|
-
/** ☆☆☆☆ Example: */
|
|
180
|
-
SubSecMediaCreateDate?: ExifDateTime | string;
|
|
181
|
-
/** ★☆☆☆ ✔ Example: "2025:04:28 16:06:17.88+01:00" */
|
|
182
|
-
SubSecModifyDate?: ExifDateTime | string;
|
|
183
|
-
}
|
|
184
|
-
export declare const CompositeTagsNames: StrEnum<"AdvancedSceneMode" | "Aperture" | "AutoFocus" | "AvgBitrate" | "BlueBalance" | "CFAPattern" | "CircleOfConfusion" | "ConditionalFEC" | "ContrastDetectAF" | "DigitalCreationDateTime" | "DOF" | "DriveMode" | "ExtenderStatus" | "FlashType" | "FocalLength35efl" | "FOV" | "GPSDateTime" | "GPSPosition" | "HyperfocalDistance" | "ImageSize" | "Lens" | "Lens35efl" | "LensID" | "LightValue" | "Megapixels" | "OriginalDecisionData" | "PeakSpectralSensitivity" | "PhaseDetectAF" | "PreviewImage" | "RedBalance" | "RedEyeReduction" | "RicohPitch" | "RicohRoll" | "Rotation" | "RunTimeSincePowerUp" | "ScaleFactor35efl" | "ShootingMode" | "ShutterCurtainHack" | "ShutterSpeed" | "SubSecCreateDate" | "SubSecDateTimeOriginal" | "SubSecMediaCreateDate" | "SubSecModifyDate">;
|
|
185
|
-
export type CompositeTag = StrEnumKeys<typeof CompositeTagsNames>;
|
|
186
91
|
export interface APPTags {
|
|
187
92
|
/** ☆☆☆☆ Example: "59 128 128" */
|
|
188
93
|
AboveColor?: string;
|
|
@@ -260,7 +165,7 @@ export interface APPTags {
|
|
|
260
165
|
DiagonalFieldOfView?: number;
|
|
261
166
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
262
167
|
DigitalZoomOn?: string;
|
|
263
|
-
/** ☆☆☆☆ Example: "(Binary data
|
|
168
|
+
/** ☆☆☆☆ Example: "(Binary data 275008 bytes, use -b option to extract)" */
|
|
264
169
|
EmbeddedImage?: BinaryField | string;
|
|
265
170
|
/** ☆☆☆☆ Example: 960 */
|
|
266
171
|
EmbeddedImageHeight?: number;
|
|
@@ -332,6 +237,10 @@ export interface APPTags {
|
|
|
332
237
|
GSd?: number;
|
|
333
238
|
/** ☆☆☆☆ Example: 4 */
|
|
334
239
|
GSD?: number;
|
|
240
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 1458 bytes, use -b option to extract)" */
|
|
241
|
+
HDRGainCurve?: BinaryField | string;
|
|
242
|
+
/** ☆☆☆☆ ✔ Example: 377 */
|
|
243
|
+
HDRGainCurveSize?: number;
|
|
335
244
|
/** ☆☆☆☆ ✔ Example: "PDR-M60" */
|
|
336
245
|
ID?: string;
|
|
337
246
|
/** ☆☆☆☆ Example: "7.4 C" */
|
|
@@ -477,8 +386,103 @@ export interface APPTags {
|
|
|
477
386
|
/** ☆☆☆☆ Example: 9 */
|
|
478
387
|
ZoomPos?: number;
|
|
479
388
|
}
|
|
480
|
-
export declare const APPTagsNames: StrEnum<"AboveColor" | "Again" | "AtmosphericTemperature" | "AutoISOMax" | "AutoISOMin" | "AutoRotation" | "B5100" | "BelowColor" | "Bgain" | "BHighLight" | "BHL" | "Blk0" | "Blk1" | "BMean" | "Boff" | "BSd" | "BSD" | "BStrobe" | "CameraModel" | "CameraPartNumber" | "CameraSerialNumber" | "CameraSoftware" | "Case" | "CBal" | "Color" | "COLOR1" | "COLOR2" | "COLOR3" | "COLOR4" | "ColorTransform" | "Compass" | "ContTake" | "CreatorSoftware" | "DateTimeGenerated" | "DCTEncodeVersion" | "DeviceName" | "DiagonalFieldOfView" | "DigitalZoomOn" | "EmbeddedImage" | "EmbeddedImageHeight" | "EmbeddedImageType" | "EmbeddedImageWidth" | "Emissivity" | "EXP1" | "EXP2" | "EXP3" | "ExposRatio" | "Exposure" | "ExposureType" | "FieldOfView" | "FilterModel" | "FilterPartNumber" | "FilterSerialNumber" | "FinalRatio" | "FlashTime" | "FMean" | "Fnumber" | "FocusDistance" | "FocusPos" | "FocusStepCount" | "FrameRate" | "Gain" | "GBgain" | "GBoff" | "GHighLight" | "GHL" | "GMean" | "GPSTrack" | "GPSTrackRef" | "GPSValid" | "GRgain" | "GRoff" | "GSd" | "GSD" | "ID" | "IRWindowTemperature" | "IRWindowTransmission" | "Isotherm1Color" | "Isotherm2Color" | "JPEG1" | "LensPartNumber" | "LensProjection" | "LightS" | "Mean" | "Meas1Label" | "Meas1Params" | "Meas1Type" | "Meas2Label" | "Meas2Params" | "Meas2Type" | "MediaUniqueID" | "MetadataVersion" | "MotorPos" | "Offset" | "OffsetX" | "OffsetY" | "OverflowColor" | "Palette" | "PaletteColors" | "PaletteFileName" | "PaletteMethod" | "PaletteName" | "PaletteStretch" | "Param0" | "PhotoResolution" | "PicLen" | "Protect" | "Protune" | "R5100" | "Rate" | "RawThermalImage" | "RawThermalImageHeight" | "RawThermalImageType" | "RawThermalImageWidth" | "RawValueMedian" | "RawValueRange" | "RawValueRangeMax" | "RawValueRangeMin" | "Real2IR" | "ReflectedApparentTemperature" | "RelativeHumidity" | "Resolution" | "REV" | "Rgain" | "RHighLight" | "RHL" | "RMean" | "Roff" | "RSd" | "RSD" | "RStrobe" | "S0" | "SpotMeter" | "StrobeTime" | "T0" | "TagB" | "TagQ" | "TagR" | "TagS" | "ThmLen" | "UnderflowColor" | "Version" | "YLevel" | "YTarget" | "Zoom" | "ZoomPos">;
|
|
389
|
+
export declare const APPTagsNames: StrEnum<"AboveColor" | "Again" | "AtmosphericTemperature" | "AutoISOMax" | "AutoISOMin" | "AutoRotation" | "B5100" | "BelowColor" | "Bgain" | "BHighLight" | "BHL" | "Blk0" | "Blk1" | "BMean" | "Boff" | "BSd" | "BSD" | "BStrobe" | "CameraModel" | "CameraPartNumber" | "CameraSerialNumber" | "CameraSoftware" | "Case" | "CBal" | "Color" | "COLOR1" | "COLOR2" | "COLOR3" | "COLOR4" | "ColorTransform" | "Compass" | "ContTake" | "CreatorSoftware" | "DateTimeGenerated" | "DCTEncodeVersion" | "DeviceName" | "DiagonalFieldOfView" | "DigitalZoomOn" | "EmbeddedImage" | "EmbeddedImageHeight" | "EmbeddedImageType" | "EmbeddedImageWidth" | "Emissivity" | "EXP1" | "EXP2" | "EXP3" | "ExposRatio" | "Exposure" | "ExposureType" | "FieldOfView" | "FilterModel" | "FilterPartNumber" | "FilterSerialNumber" | "FinalRatio" | "FlashTime" | "FMean" | "Fnumber" | "FocusDistance" | "FocusPos" | "FocusStepCount" | "FrameRate" | "Gain" | "GBgain" | "GBoff" | "GHighLight" | "GHL" | "GMean" | "GPSTrack" | "GPSTrackRef" | "GPSValid" | "GRgain" | "GRoff" | "GSd" | "GSD" | "HDRGainCurve" | "HDRGainCurveSize" | "ID" | "IRWindowTemperature" | "IRWindowTransmission" | "Isotherm1Color" | "Isotherm2Color" | "JPEG1" | "LensPartNumber" | "LensProjection" | "LightS" | "Mean" | "Meas1Label" | "Meas1Params" | "Meas1Type" | "Meas2Label" | "Meas2Params" | "Meas2Type" | "MediaUniqueID" | "MetadataVersion" | "MotorPos" | "Offset" | "OffsetX" | "OffsetY" | "OverflowColor" | "Palette" | "PaletteColors" | "PaletteFileName" | "PaletteMethod" | "PaletteName" | "PaletteStretch" | "Param0" | "PhotoResolution" | "PicLen" | "Protect" | "Protune" | "R5100" | "Rate" | "RawThermalImage" | "RawThermalImageHeight" | "RawThermalImageType" | "RawThermalImageWidth" | "RawValueMedian" | "RawValueRange" | "RawValueRangeMax" | "RawValueRangeMin" | "Real2IR" | "ReflectedApparentTemperature" | "RelativeHumidity" | "Resolution" | "REV" | "Rgain" | "RHighLight" | "RHL" | "RMean" | "Roff" | "RSd" | "RSD" | "RStrobe" | "S0" | "SpotMeter" | "StrobeTime" | "T0" | "TagB" | "TagQ" | "TagR" | "TagS" | "ThmLen" | "UnderflowColor" | "Version" | "YLevel" | "YTarget" | "Zoom" | "ZoomPos">;
|
|
481
390
|
export type APPTag = StrEnumKeys<typeof APPTagsNames>;
|
|
391
|
+
/**
|
|
392
|
+
* These are tags are derived from the values of one or more other tags.
|
|
393
|
+
* Only a few are writable directly.
|
|
394
|
+
* @see https://exiftool.org/TagNames/Composite.html
|
|
395
|
+
*/
|
|
396
|
+
export interface CompositeTags {
|
|
397
|
+
/** ☆☆☆☆ ✔ Example: "Unknown (49 5)" */
|
|
398
|
+
AdvancedSceneMode?: string;
|
|
399
|
+
/** ★★★★ ✔ Example: 90 */
|
|
400
|
+
Aperture?: number;
|
|
401
|
+
/** ★☆☆☆ ✔ Example: "On" */
|
|
402
|
+
AutoFocus?: string;
|
|
403
|
+
/** ☆☆☆☆ ✔ Example: "8.7 Mbps" */
|
|
404
|
+
AvgBitrate?: string;
|
|
405
|
+
/** ★★☆☆ ✔ Example: 46 */
|
|
406
|
+
BlueBalance?: number;
|
|
407
|
+
/** ☆☆☆☆ ✔ Example: "[Red,Green][Green,Blue]" */
|
|
408
|
+
CFAPattern?: string;
|
|
409
|
+
/** ★★★★ ✔ Example: "1.030 mm" */
|
|
410
|
+
CircleOfConfusion?: string;
|
|
411
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
412
|
+
ConditionalFEC?: number;
|
|
413
|
+
/** ☆☆☆☆ ✔ Example: "On" */
|
|
414
|
+
ContrastDetectAF?: string;
|
|
415
|
+
/** ☆☆☆☆ ✔ Example: "2021:03:16 18:14:25" */
|
|
416
|
+
DigitalCreationDateTime?: ExifDateTime | string;
|
|
417
|
+
/** ★★☆☆ ✔ Example: "inf (9.66 m - inf)" */
|
|
418
|
+
DOF?: string;
|
|
419
|
+
/** ★★☆☆ ✔ Example: "Unknown (3152)" */
|
|
420
|
+
DriveMode?: string;
|
|
421
|
+
/** ☆☆☆☆ ✔ Example: "Not attached" */
|
|
422
|
+
ExtenderStatus?: string;
|
|
423
|
+
/** ☆☆☆☆ ✔ Example: "Optional,TTL" */
|
|
424
|
+
FlashType?: string;
|
|
425
|
+
/** ★★★★ ✔ Example: "99.7 mm (35 mm equivalent: 554.0 mm)" */
|
|
426
|
+
FocalLength35efl?: string;
|
|
427
|
+
/** ★★★★ ✔ Example: "97.7 deg" */
|
|
428
|
+
FOV?: string;
|
|
429
|
+
/** ☆☆☆☆ ✔ Example: "2024:04:21 04:09:51Z" */
|
|
430
|
+
GPSDateTime?: ExifDateTime | string;
|
|
431
|
+
/** ☆☆☆☆ ✔ Example: "7.196465 134.376806666667" */
|
|
432
|
+
GPSPosition?: string;
|
|
433
|
+
/** ★★★★ ✔ Example: "Inf m" */
|
|
434
|
+
HyperfocalDistance?: string;
|
|
435
|
+
/** ★★★★ ✔ Example: "8x8" */
|
|
436
|
+
ImageSize?: string;
|
|
437
|
+
/** ★★☆☆ ✔ Example: "smc PENTAX-D FA 50mm F2.8 Macro" */
|
|
438
|
+
Lens?: string;
|
|
439
|
+
/** ★★☆☆ ✔ Example: "9.2 - 92.0 mm (35 mm equivalent: 24.9 - 248.8 mm)" */
|
|
440
|
+
Lens35efl?: string;
|
|
441
|
+
/** ★★☆☆ ✔ Example: "smc PENTAX-FA 28-105mm F3.2-4.5 AL[IF]" */
|
|
442
|
+
LensID?: string;
|
|
443
|
+
/** ★★★★ ✔ Example: 9.9 */
|
|
444
|
+
LightValue?: number;
|
|
445
|
+
/** ★★★★ ✔ Example: 9.5 */
|
|
446
|
+
Megapixels?: number;
|
|
447
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 512 bytes, use -b option to extract)" */
|
|
448
|
+
OriginalDecisionData?: BinaryField | string;
|
|
449
|
+
/** ☆☆☆☆ Example: "9.9 um" */
|
|
450
|
+
PeakSpectralSensitivity?: string;
|
|
451
|
+
/** ☆☆☆☆ ✔ Example: "On (73-point)" */
|
|
452
|
+
PhaseDetectAF?: string;
|
|
453
|
+
/** ★★★☆ ✔ Example: "(Binary data 37244 bytes, use -b option to extract)" */
|
|
454
|
+
PreviewImage?: BinaryField;
|
|
455
|
+
/** ★★☆☆ ✔ Example: 38.625 */
|
|
456
|
+
RedBalance?: number;
|
|
457
|
+
/** ☆☆☆☆ ✔ Example: "On" */
|
|
458
|
+
RedEyeReduction?: string;
|
|
459
|
+
/** ☆☆☆☆ Example: 11.2 */
|
|
460
|
+
RicohPitch?: number;
|
|
461
|
+
/** ☆☆☆☆ Example: 1.59 */
|
|
462
|
+
RicohRoll?: number;
|
|
463
|
+
/** ★☆☆☆ ✔ Example: "Unknown (0)" */
|
|
464
|
+
Rotation?: number;
|
|
465
|
+
/** ☆☆☆☆ ✔ Example: "9:30:01" */
|
|
466
|
+
RunTimeSincePowerUp?: string;
|
|
467
|
+
/** ★★★★ ✔ Example: 9.9 */
|
|
468
|
+
ScaleFactor35efl?: number;
|
|
469
|
+
/** ★★☆☆ ✔ Example: "Unknown (83)" */
|
|
470
|
+
ShootingMode?: string;
|
|
471
|
+
/** ☆☆☆☆ ✔ Example: "1st-curtain sync" */
|
|
472
|
+
ShutterCurtainHack?: string;
|
|
473
|
+
/** ★★★★ ✔ Example: "inf" */
|
|
474
|
+
ShutterSpeed?: string;
|
|
475
|
+
/** ★☆☆☆ ✔ Example: "2025:04:28 16:06:17.88+01:00" */
|
|
476
|
+
SubSecCreateDate?: ExifDateTime | string;
|
|
477
|
+
/** ★☆☆☆ ✔ Example: "2025:04:28 16:06:17.88+01:00" */
|
|
478
|
+
SubSecDateTimeOriginal?: ExifDateTime | string;
|
|
479
|
+
/** ☆☆☆☆ Example: */
|
|
480
|
+
SubSecMediaCreateDate?: ExifDateTime | string;
|
|
481
|
+
/** ★☆☆☆ ✔ Example: "2025:04:28 16:06:17.88+01:00" */
|
|
482
|
+
SubSecModifyDate?: ExifDateTime | string;
|
|
483
|
+
}
|
|
484
|
+
export declare const CompositeTagsNames: StrEnum<"AdvancedSceneMode" | "Aperture" | "AutoFocus" | "AvgBitrate" | "BlueBalance" | "CFAPattern" | "CircleOfConfusion" | "ConditionalFEC" | "ContrastDetectAF" | "DigitalCreationDateTime" | "DOF" | "DriveMode" | "ExtenderStatus" | "FlashType" | "FocalLength35efl" | "FOV" | "GPSDateTime" | "GPSPosition" | "HyperfocalDistance" | "ImageSize" | "Lens" | "Lens35efl" | "LensID" | "LightValue" | "Megapixels" | "OriginalDecisionData" | "PeakSpectralSensitivity" | "PhaseDetectAF" | "PreviewImage" | "RedBalance" | "RedEyeReduction" | "RicohPitch" | "RicohRoll" | "Rotation" | "RunTimeSincePowerUp" | "ScaleFactor35efl" | "ShootingMode" | "ShutterCurtainHack" | "ShutterSpeed" | "SubSecCreateDate" | "SubSecDateTimeOriginal" | "SubSecMediaCreateDate" | "SubSecModifyDate">;
|
|
485
|
+
export type CompositeTag = StrEnumKeys<typeof CompositeTagsNames>;
|
|
482
486
|
/**
|
|
483
487
|
* @see https://exiftool.org/TagNames/FlashPix.html
|
|
484
488
|
*/
|
|
@@ -508,12 +512,6 @@ export interface FlashPixTags {
|
|
|
508
512
|
}
|
|
509
513
|
export declare const FlashPixTagsNames: StrEnum<"AudioStream" | "CodePage" | "CreatingApplication" | "ExtensionClassID" | "ExtensionCreateDate" | "ExtensionDescription" | "ExtensionModifyDate" | "ExtensionName" | "ExtensionPersistence" | "ScreenNail" | "UsedExtensionNumbers">;
|
|
510
514
|
export type FlashPixTag = StrEnumKeys<typeof FlashPixTagsNames>;
|
|
511
|
-
export interface JPEGTags {
|
|
512
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data 1417 bytes, use -b option to extract)" */
|
|
513
|
-
HDRGainCurve?: BinaryField | string;
|
|
514
|
-
}
|
|
515
|
-
export declare const JPEGTagsNames: StrEnum<"HDRGainCurve">;
|
|
516
|
-
export type JPEGTag = StrEnumKeys<typeof JPEGTagsNames>;
|
|
517
515
|
export interface JSONTags {
|
|
518
516
|
/** ☆☆☆☆ Example: 0 */
|
|
519
517
|
AIScene?: number;
|
|
@@ -530,6 +528,32 @@ export interface JSONTags {
|
|
|
530
528
|
}
|
|
531
529
|
export declare const JSONTagsNames: StrEnum<"AIScene" | "FilterId" | "Hdr" | "Mirror" | "OpMode" | "ZoomMultiple">;
|
|
532
530
|
export type JSONTag = StrEnumKeys<typeof JSONTagsNames>;
|
|
531
|
+
export interface MPFTags {
|
|
532
|
+
/** ★★☆☆ ✔ Example: 9697 */
|
|
533
|
+
DependentImage1EntryNumber?: number;
|
|
534
|
+
/** ★★☆☆ ✔ Example: 960 */
|
|
535
|
+
DependentImage2EntryNumber?: number;
|
|
536
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 66 bytes, use -b option to extract)" */
|
|
537
|
+
ImageUIDList?: BinaryField | string;
|
|
538
|
+
/** ★★☆☆ ✔ Example: "0100" */
|
|
539
|
+
MPFVersion?: string;
|
|
540
|
+
/** ★★☆☆ ✔ Example: "Representative image, Dependent parent image" */
|
|
541
|
+
MPImageFlags?: string;
|
|
542
|
+
/** ★★☆☆ ✔ Example: "Unknown (4)" */
|
|
543
|
+
MPImageFormat?: string;
|
|
544
|
+
/** ★★☆☆ ✔ Example: 999325 */
|
|
545
|
+
MPImageLength?: number;
|
|
546
|
+
/** ★★☆☆ ✔ Example: 9999872 */
|
|
547
|
+
MPImageStart?: number;
|
|
548
|
+
/** ★★☆☆ ✔ Example: "Undefined" */
|
|
549
|
+
MPImageType?: string;
|
|
550
|
+
/** ★★☆☆ ✔ Example: 3 */
|
|
551
|
+
NumberOfImages?: number;
|
|
552
|
+
/** ☆☆☆☆ ✔ Example: 1 */
|
|
553
|
+
TotalFrames?: number;
|
|
554
|
+
}
|
|
555
|
+
export declare const MPFTagsNames: StrEnum<"DependentImage1EntryNumber" | "DependentImage2EntryNumber" | "ImageUIDList" | "MPFVersion" | "MPImageFlags" | "MPImageFormat" | "MPImageLength" | "MPImageStart" | "MPImageType" | "NumberOfImages" | "TotalFrames">;
|
|
556
|
+
export type MPFTag = StrEnumKeys<typeof MPFTagsNames>;
|
|
533
557
|
/**
|
|
534
558
|
* @see https://exiftool.org/TagNames/EXIF.html
|
|
535
559
|
*/
|
|
@@ -577,7 +601,7 @@ export interface EXIFTags {
|
|
|
577
601
|
/** ★★★☆ ✔ Example: "© Chuckles McSnortypants, Inc." */
|
|
578
602
|
Copyright?: string;
|
|
579
603
|
/** ★★★★ ✔ Example: "2218:09:22 02:32:14" */
|
|
580
|
-
CreateDate?: ExifDateTime | string;
|
|
604
|
+
CreateDate?: ExifDateTime | ExifDate | string | number;
|
|
581
605
|
/** ★★★★ ✔ Example: "Unknown (Custom process)" */
|
|
582
606
|
CustomRendered?: string;
|
|
583
607
|
/** ★★★★ ✔ Example: "2218:09:22 02:32:14" */
|
|
@@ -710,7 +734,7 @@ export interface EXIFTags {
|
|
|
710
734
|
ISO?: number;
|
|
711
735
|
/** ☆☆☆☆ ✔ Example: 80 */
|
|
712
736
|
ISOSpeed?: number;
|
|
713
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data
|
|
737
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 532480 bytes, use -b option to extract)" */
|
|
714
738
|
JpgFromRaw?: BinaryField;
|
|
715
739
|
/** ☆☆☆☆ ✔ Example: 845574 */
|
|
716
740
|
JpgFromRawLength?: number;
|
|
@@ -878,7 +902,7 @@ export interface EXIFTags {
|
|
|
878
902
|
TileByteCounts?: BinaryField | string;
|
|
879
903
|
/** ☆☆☆☆ ✔ Example: 512 */
|
|
880
904
|
TileLength?: number;
|
|
881
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data
|
|
905
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 508 bytes, use -b option to extract)" */
|
|
882
906
|
TileOffsets?: BinaryField | string;
|
|
883
907
|
/** ☆☆☆☆ ✔ Example: 512 */
|
|
884
908
|
TileWidth?: number;
|
|
@@ -921,32 +945,6 @@ export interface EXIFTags {
|
|
|
921
945
|
}
|
|
922
946
|
export declare const EXIFTagsNames: StrEnum<"Acceleration" | "AntiAliasStrength" | "ApertureValue" | "Artist" | "AsShotNeutral" | "BaselineExposure" | "BlackLevel" | "BlackLevelBlue" | "BlackLevelGreen" | "BlackLevelRed" | "BlackLevelRepeatDim" | "BrightnessValue" | "CameraElevationAngle" | "CFAPlaneColor" | "CFARepeatPatternDim" | "ChromaticAberrationCorrection" | "ColorSpace" | "CompositeImage" | "CompressedBitsPerPixel" | "Contrast" | "Copyright" | "CreateDate" | "CustomRendered" | "DateTimeOriginal" | "DefaultCropOrigin" | "DefaultCropSize" | "DeviceSettingDescription" | "DigitalZoomRatio" | "DNGBackwardVersion" | "DNGVersion" | "DocumentName" | "ExifImageHeight" | "ExifImageWidth" | "ExposureIndex" | "ExposureMode" | "ExposureProgram" | "ExposureTime" | "FileSource" | "Flash" | "FlashEnergy" | "FNumber" | "FocalLength" | "FocalLengthIn35mmFormat" | "FocalPlaneResolutionUnit" | "FocalPlaneXResolution" | "FocalPlaneYResolution" | "GainControl" | "Gamma" | "GPSAltitude" | "GPSAltitudeRef" | "GPSAreaInformation" | "GPSDateStamp" | "GPSDestBearing" | "GPSDestBearingRef" | "GPSDestDistance" | "GPSDestDistanceRef" | "GPSDestLatitude" | "GPSDestLatitudeRef" | "GPSDestLongitude" | "GPSDestLongitudeRef" | "GPSDifferential" | "GPSDOP" | "GPSHPositioningError" | "GPSImgDirection" | "GPSImgDirectionRef" | "GPSLatitude" | "GPSLatitudeRef" | "GPSLongitude" | "GPSLongitudeRef" | "GPSMapDatum" | "GPSMeasureMode" | "GPSProcessingMethod" | "GPSSatellites" | "GPSSpeed" | "GPSSpeedRef" | "GPSStatus" | "GPSTimeStamp" | "GPSVersionID" | "HighISOMultiplierBlue" | "HighISOMultiplierGreen" | "HighISOMultiplierRed" | "HostComputer" | "ImageDescription" | "ImageTitle" | "InteropIndex" | "InteropVersion" | "ISO" | "ISOSpeed" | "JpgFromRaw" | "JpgFromRawLength" | "JpgFromRawStart" | "LensInfo" | "LensMake" | "LensModel" | "LensSerialNumber" | "LightSource" | "LinearityLimitBlue" | "LinearityLimitGreen" | "LinearityLimitRed" | "Make" | "MakerNoteSamsung1a" | "MakerNoteUnknownBinary" | "MakerNoteUnknownText" | "MaxApertureValue" | "MeteringMode" | "Model" | "Model2" | "ModifyDate" | "Noise" | "NoiseProfile" | "NoiseReductionParams" | "OffsetSchema" | "OffsetTime" | "OffsetTimeDigitized" | "OffsetTimeOriginal" | "Orientation" | "OtherImage" | "OtherImageLength" | "OtherImageStart" | "Padding" | "PageName" | "PanasonicRawVersion" | "Photographer" | "PhotometricInterpretation" | "PlanarConfiguration" | "Pressure" | "PreviewDateTime" | "PreviewTIFF" | "PrimaryChromaticities" | "ProcessingSoftware" | "RawDataOffset" | "RawDataUniqueID" | "RawFormat" | "RawImageSegmentation" | "RecommendedExposureIndex" | "ReferenceBlackWhite" | "RelatedImageFileFormat" | "RelatedImageHeight" | "RelatedImageWidth" | "RelatedSoundFile" | "ResolutionUnit" | "RowsPerStrip" | "SamplesPerPixel" | "Saturation" | "SceneCaptureType" | "SceneType" | "SensingMethod" | "SensitivityType" | "Sharpness" | "ShutterSpeedValue" | "Software" | "SonyRawFileType" | "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" | "WaterDepth" | "WhiteBalance" | "WhiteLevel" | "WhitePoint" | "XiaomiModel" | "XPAuthor" | "XPComment" | "XPKeywords" | "XPSubject" | "XPTitle" | "XResolution" | "YCbCrCoefficients" | "YCbCrPositioning" | "YResolution">;
|
|
923
947
|
export type EXIFTag = StrEnumKeys<typeof EXIFTagsNames>;
|
|
924
|
-
export interface MPFTags {
|
|
925
|
-
/** ★★☆☆ ✔ Example: 9697 */
|
|
926
|
-
DependentImage1EntryNumber?: number;
|
|
927
|
-
/** ★★☆☆ ✔ Example: 960 */
|
|
928
|
-
DependentImage2EntryNumber?: number;
|
|
929
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data 66 bytes, use -b option to extract)" */
|
|
930
|
-
ImageUIDList?: BinaryField | string;
|
|
931
|
-
/** ★★☆☆ ✔ Example: "0100" */
|
|
932
|
-
MPFVersion?: string;
|
|
933
|
-
/** ★★☆☆ ✔ Example: "Representative image, Dependent parent image" */
|
|
934
|
-
MPImageFlags?: string;
|
|
935
|
-
/** ★★☆☆ ✔ Example: "Unknown (4)" */
|
|
936
|
-
MPImageFormat?: string;
|
|
937
|
-
/** ★★☆☆ ✔ Example: 999325 */
|
|
938
|
-
MPImageLength?: number;
|
|
939
|
-
/** ★★☆☆ ✔ Example: 9999872 */
|
|
940
|
-
MPImageStart?: number;
|
|
941
|
-
/** ★★☆☆ ✔ Example: "Undefined" */
|
|
942
|
-
MPImageType?: string;
|
|
943
|
-
/** ★★☆☆ ✔ Example: 3 */
|
|
944
|
-
NumberOfImages?: number;
|
|
945
|
-
/** ☆☆☆☆ ✔ Example: 1 */
|
|
946
|
-
TotalFrames?: number;
|
|
947
|
-
}
|
|
948
|
-
export declare const MPFTagsNames: StrEnum<"DependentImage1EntryNumber" | "DependentImage2EntryNumber" | "ImageUIDList" | "MPFVersion" | "MPImageFlags" | "MPImageFormat" | "MPImageLength" | "MPImageStart" | "MPImageType" | "NumberOfImages" | "TotalFrames">;
|
|
949
|
-
export type MPFTag = StrEnumKeys<typeof MPFTagsNames>;
|
|
950
948
|
export interface MetaTags {
|
|
951
949
|
/** ☆☆☆☆ Example: 1 */
|
|
952
950
|
BorderID?: number;
|
|
@@ -1482,6 +1480,8 @@ export interface MakerNotesTags {
|
|
|
1482
1480
|
AFAreaSelectionMethod?: string;
|
|
1483
1481
|
/** ☆☆☆☆ ✔ Example: "AF area selection button" */
|
|
1484
1482
|
AFAreaSelectMethod?: string;
|
|
1483
|
+
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
1484
|
+
AFAreaSize?: string;
|
|
1485
1485
|
/** ☆☆☆☆ ✔ Example: 996 */
|
|
1486
1486
|
AFAreaWidth?: number;
|
|
1487
1487
|
/** ★☆☆☆ ✔ Example: "994 18 18 18 18 18 18 18 18" */
|
|
@@ -1852,6 +1852,12 @@ export interface MakerNotesTags {
|
|
|
1852
1852
|
BWFilter?: number;
|
|
1853
1853
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
1854
1854
|
BWMode?: string;
|
|
1855
|
+
/** ☆☆☆☆ Example: "7x7" */
|
|
1856
|
+
CAFGridSize?: string;
|
|
1857
|
+
/** ☆☆☆☆ Example: "" */
|
|
1858
|
+
CAFPointsInFocus?: string;
|
|
1859
|
+
/** ☆☆☆☆ Example: "9,10,11,12,13,16,17,18,19,20,23,24,25,26,27" */
|
|
1860
|
+
CAFPointsSelected?: string;
|
|
1855
1861
|
/** ☆☆☆☆ Example: "Starting calibration file for SD14F13_Rev3; S/N C75_00001…8:16:34" */
|
|
1856
1862
|
Calibration?: string;
|
|
1857
1863
|
/** ☆☆☆☆ Example: "2216/02/28 03:49:48" */
|
|
@@ -1862,7 +1868,7 @@ export interface MakerNotesTags {
|
|
|
1862
1868
|
CameraISO?: string;
|
|
1863
1869
|
/** ☆☆☆☆ ✔ Example: "Unknown (155)" */
|
|
1864
1870
|
CameraOrientation?: string;
|
|
1865
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data
|
|
1871
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 8290 bytes, use -b option to extract)" */
|
|
1866
1872
|
CameraParameters?: BinaryField | string;
|
|
1867
1873
|
/** ☆☆☆☆ ✔ Example: "User Defined 3" */
|
|
1868
1874
|
CameraPictureStyle?: string;
|
|
@@ -1920,8 +1926,6 @@ export interface MakerNotesTags {
|
|
|
1920
1926
|
ChromaticAberrationSetting?: string;
|
|
1921
1927
|
/** ☆☆☆☆ Example: "+0.500" */
|
|
1922
1928
|
ChrominanceNoiseReduction?: string;
|
|
1923
|
-
/** ☆☆☆☆ ✔ Example: "San Francisco" */
|
|
1924
|
-
City2?: string;
|
|
1925
1929
|
/** ☆☆☆☆ ✔ Example: 4 */
|
|
1926
1930
|
Clarity?: number;
|
|
1927
1931
|
/** ☆☆☆☆ Example: "Off" */
|
|
@@ -2030,8 +2034,6 @@ export interface MakerNotesTags {
|
|
|
2030
2034
|
ColorTone?: string;
|
|
2031
2035
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2032
2036
|
ColorToneAuto?: number;
|
|
2033
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2034
|
-
ColorToneFaithful?: number;
|
|
2035
2037
|
/** ☆☆☆☆ ✔ Example: 11 */
|
|
2036
2038
|
ColorToneLandscape?: number;
|
|
2037
2039
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
@@ -2208,7 +2210,7 @@ export interface MakerNotesTags {
|
|
|
2208
2210
|
CustomWBSetting?: string;
|
|
2209
2211
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
2210
2212
|
DarkFocusEnvironment?: string;
|
|
2211
|
-
/** ★★☆☆ ✔ Example: "(Binary data
|
|
2213
|
+
/** ★★☆☆ ✔ Example: "(Binary data 114 bytes, use -b option to extract)" */
|
|
2212
2214
|
DataDump?: BinaryField | string;
|
|
2213
2215
|
/** ☆☆☆☆ ✔ Example: 8289 */
|
|
2214
2216
|
DataScaling?: number;
|
|
@@ -2252,10 +2254,6 @@ export interface MakerNotesTags {
|
|
|
2252
2254
|
DigitalGain?: number;
|
|
2253
2255
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2254
2256
|
DigitalICE?: string;
|
|
2255
|
-
/** ☆☆☆☆ ✔ Example: "Standard" */
|
|
2256
|
-
DigitalLensOptimizer?: string;
|
|
2257
|
-
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2258
|
-
DigitalLensOptimizerSetting?: string;
|
|
2259
2257
|
/** ★★★☆ ✔ Example: "undef.0" */
|
|
2260
2258
|
DigitalZoom?: string;
|
|
2261
2259
|
/** ☆☆☆☆ ✔ Example: 897 */
|
|
@@ -2288,8 +2286,6 @@ export interface MakerNotesTags {
|
|
|
2288
2286
|
DriveSpeed?: string;
|
|
2289
2287
|
/** ☆☆☆☆ ✔ Example: "100.00.00.00" */
|
|
2290
2288
|
DSPFirmwareVersion?: string;
|
|
2291
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2292
|
-
DualPixelRaw?: string;
|
|
2293
2289
|
/** ☆☆☆☆ ✔ Example: "(Binary data 1024 bytes, use -b option to extract)" */
|
|
2294
2290
|
DustRemovalData?: BinaryField | string;
|
|
2295
2291
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
@@ -2411,8 +2407,6 @@ export interface MakerNotesTags {
|
|
|
2411
2407
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2412
2408
|
ExtenderFirmwareVersion?: number;
|
|
2413
2409
|
/** ☆☆☆☆ ✔ Example: "" */
|
|
2414
|
-
ExtenderModel?: string;
|
|
2415
|
-
/** ☆☆☆☆ ✔ Example: "" */
|
|
2416
2410
|
ExtenderSerialNumber?: string;
|
|
2417
2411
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2418
2412
|
ExternalFlash?: string;
|
|
@@ -2692,13 +2686,13 @@ export interface MakerNotesTags {
|
|
|
2692
2686
|
FocusBracket?: number;
|
|
2693
2687
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2694
2688
|
FocusBracketStepSize?: number;
|
|
2695
|
-
/**
|
|
2689
|
+
/** ★★☆☆ ✔ Example: "Single" */
|
|
2696
2690
|
FocusContinuous?: string;
|
|
2697
2691
|
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
2698
2692
|
FocusDisplayAIServoAndMF?: string;
|
|
2699
2693
|
/** ☆☆☆☆ ✔ Example: "7.68 - 36.90 m" */
|
|
2700
2694
|
FocusDistanceRange?: string;
|
|
2701
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2695
|
+
/** ☆☆☆☆ ✔ Example: "948x714" */
|
|
2702
2696
|
FocusFrameSize?: string;
|
|
2703
2697
|
/** ☆☆☆☆ ✔ Example: "Focus Hold" */
|
|
2704
2698
|
FocusHoldButton?: string;
|
|
@@ -2858,9 +2852,9 @@ export interface MakerNotesTags {
|
|
|
2858
2852
|
HDRSetting?: string;
|
|
2859
2853
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
2860
2854
|
HDRSmoothing?: string;
|
|
2861
|
-
/** ☆☆☆☆
|
|
2855
|
+
/** ☆☆☆☆ ✔ Example: 53248 */
|
|
2862
2856
|
HiddenDataLength?: number;
|
|
2863
|
-
/** ☆☆☆☆
|
|
2857
|
+
/** ☆☆☆☆ ✔ Example: 7995392 */
|
|
2864
2858
|
HiddenDataOffset?: number;
|
|
2865
2859
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2866
2860
|
HighFrameRate?: string;
|
|
@@ -3403,6 +3397,8 @@ export interface MakerNotesTags {
|
|
|
3403
3397
|
/** ☆☆☆☆ ✔ Example: "(none)" */
|
|
3404
3398
|
MonochromeColor?: string;
|
|
3405
3399
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3400
|
+
MonochromeFilterEffect?: string;
|
|
3401
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3406
3402
|
MonochromeGrainEffect?: string;
|
|
3407
3403
|
/** ☆☆☆☆ ✔ Example: "No Filter; 0; 8; Strength 2; 0; 3" */
|
|
3408
3404
|
MonochromeProfileSettings?: string;
|
|
@@ -3418,7 +3414,7 @@ export interface MakerNotesTags {
|
|
|
3418
3414
|
MotionSensitivity?: number;
|
|
3419
3415
|
/** ☆☆☆☆ ✔ Example: "AE/AF Lock" */
|
|
3420
3416
|
MovieAELockButtonAssignment?: string;
|
|
3421
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3417
|
+
/** ☆☆☆☆ ✔ Example: "Wide (S)" */
|
|
3422
3418
|
MovieAFAreaMode?: string;
|
|
3423
3419
|
/** ☆☆☆☆ ✔ Example: "4 (Normal)" */
|
|
3424
3420
|
MovieAFTrackingSensitivity?: string;
|
|
@@ -3502,7 +3498,7 @@ export interface MakerNotesTags {
|
|
|
3502
3498
|
NEFBitDepth?: string;
|
|
3503
3499
|
/** ☆☆☆☆ ✔ Example: "Uncompressed (reduced to 12 bit)" */
|
|
3504
3500
|
NEFCompression?: string;
|
|
3505
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data
|
|
3501
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 46 bytes, use -b option to extract)" */
|
|
3506
3502
|
NEFLinearizationTable?: BinaryField | string;
|
|
3507
3503
|
/** ☆☆☆☆ Example: "Off (Auto)" */
|
|
3508
3504
|
NeutralDensityFilter?: string;
|
|
@@ -3530,6 +3526,8 @@ export interface MakerNotesTags {
|
|
|
3530
3526
|
NumberOfFocusPoints?: string;
|
|
3531
3527
|
/** ☆☆☆☆ ✔ Example: 32 */
|
|
3532
3528
|
NumberOffsets?: number;
|
|
3529
|
+
/** ☆☆☆☆ Example: 49 */
|
|
3530
|
+
NumCAFPoints?: number;
|
|
3533
3531
|
/** ☆☆☆☆ ✔ Example: 3 */
|
|
3534
3532
|
NumFaceElements?: number;
|
|
3535
3533
|
/** ☆☆☆☆ ✔ Example: 65535 */
|
|
@@ -3940,8 +3938,6 @@ export interface MakerNotesTags {
|
|
|
3940
3938
|
SaturationAdj?: number;
|
|
3941
3939
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
3942
3940
|
SaturationAuto?: number;
|
|
3943
|
-
/** ☆☆☆☆ ✔ Example: 655360 */
|
|
3944
|
-
SaturationFaithful?: number;
|
|
3945
3941
|
/** ☆☆☆☆ ✔ Example: 8650752 */
|
|
3946
3942
|
SaturationLandscape?: number;
|
|
3947
3943
|
/** ☆☆☆☆ ✔ Example: 6619136 */
|
|
@@ -4198,7 +4194,7 @@ export interface MakerNotesTags {
|
|
|
4198
4194
|
SonyMaxApertureValue?: number;
|
|
4199
4195
|
/** ☆☆☆☆ ✔ Example: 34 */
|
|
4200
4196
|
SonyMinAperture?: number;
|
|
4201
|
-
/** ☆☆☆☆ ✔ Example: "ZV-
|
|
4197
|
+
/** ☆☆☆☆ ✔ Example: "ZV-E10M2" */
|
|
4202
4198
|
SonyModelID?: string;
|
|
4203
4199
|
/** ☆☆☆☆ ✔ Example: "Fine" */
|
|
4204
4200
|
SonyQuality?: string;
|
|
@@ -4438,7 +4434,7 @@ export interface MakerNotesTags {
|
|
|
4438
4434
|
Vignetting?: string;
|
|
4439
4435
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
4440
4436
|
VignettingCorrection?: string;
|
|
4441
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
4437
|
+
/** ☆☆☆☆ ✔ Example: "64 224 480 800 1184 1600 2048 2528 3008 3520 3872 4512 56…0 0 0 0" */
|
|
4442
4438
|
VignettingCorrParams?: string;
|
|
4443
4439
|
/** ☆☆☆☆ ✔ Example: 97 */
|
|
4444
4440
|
VignettingCorrVersion?: number;
|
|
@@ -4555,7 +4551,7 @@ export interface MakerNotesTags {
|
|
|
4555
4551
|
/** ★★☆☆ ✔ Example: 6000 */
|
|
4556
4552
|
ZoomTargetWidth?: number;
|
|
4557
4553
|
}
|
|
4558
|
-
export declare const MakerNotesTagsNames: StrEnum<"AccelerationTracking" | "AccelerationVector" | "Accelerometer" | "AccelerometerX" | "AccelerometerY" | "AccelerometerZ" | "AccessorySerialNumber" | "AccessoryType" | "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" | "AFAreaWidth" | "AFAreaWidths" | "AFAreaXPosition" | "AFAreaYPosition" | "AFAreaZoneSize" | "AFAssist" | "AFAssistBeam" | "AFAssistLamp" | "AFButtonPressed" | "AFConfidence" | "AFConfigTool" | "AFCoordinatesAvailable" | "AFDebugInfo" | "AFDefocus" | "AFDetectionMethod" | "AFDuringLiveView" | "AFFineTune" | "AFFineTuneAdj" | "AFFineTuneAdjTele" | "AFFineTuneIndex" | "AFIlluminator" | "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" | "AmbientTemperature" | "AmbientTemperatureFahrenheit" | "AntiFlicker" | "ApertureLock" | "ApertureRange" | "ApertureRingUse" | "ApertureSetting" | "ApplySettingsToLiveView" | "ApplyShootingMeteringMode" | "ApproximateFNumber" | "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" | "AutoFP" | "AutoISO" | "AutoISOMinShutterSpeed" | "AutoLightingOptimizer" | "AutoPortraitFramed" | "AutoRotate" | "AuxiliaryLens" | "AvApertureSetting" | "AverageBlackLevel" | "AverageLV" | "AvSettingWithoutLens" | "BabyAge" | "BabyName" | "Barcode" | "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" | "BodyBatteryState" | "BodyFirmware" | "BodyFirmwareVersion" | "BodySerialNumber" | "BracketIncrement" | "BracketMode" | "BracketProgram" | "BracketSequence" | "BracketSet" | "BracketSettings" | "BracketShotNumber" | "BracketStep" | "BracketValue" | "Brightness" | "BuildNumber" | "BulbDuration" | "BurstGroupID" | "BurstMode" | "BurstShot" | "BurstSpeed" | "BurstUUID" | "ButtonFunctionControlOff" | "BWFilter" | "BWMode" | "Calibration" | "CameraDateTime" | "CameraID" | "CameraISO" | "CameraOrientation" | "CameraParameters" | "CameraPictureStyle" | "CameraPitch" | "CameraRoll" | "CameraSettingsVersion" | "CameraType" | "CameraYaw" | "CanonExposureMode" | "CanonFileDescription" | "CanonFileLength" | "CanonFirmwareVersion" | "CanonFlashMode" | "CanonImageSize" | "CanonImageType" | "CanonModelID" | "CardShutterLock" | "Categories" | "CCDBoardVersion" | "CCDScanMode" | "CCDSensitivity" | "CCDVersion" | "CenterAFArea" | "CenterFocusPoint" | "CenterWeightedAreaSize" | "CHModeShootingSpeed" | "ChromaticAberrationCorr" | "ChromaticAberrationCorrParams" | "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" | "ColorMode" | "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" | "CompositionAdjust" | "CompositionAdjustRotation" | "CompositionAdjustX" | "CompositionAdjustY" | "CompressedImageSize" | "CompressionFactor" | "CompressionRatio" | "ContentIdentifier" | "ContinuousBracketing" | "ContinuousDrive" | "ContinuousModeDisplay" | "ContinuousModeLiveView" | "ContinuousShootingSpeed" | "ContinuousShotLimit" | "ContrastAuto" | "ContrastCurve" | "ContrastDetectAFArea" | "ContrastDetectAFInFocus" | "ContrastFaithful" | "ContrastHighlight" | "ContrastHighlightShadowAdj" | "ContrastLandscape" | "ContrastMode" | "ContrastNeutral" | "ContrastPortrait" | "ContrastSetting" | "ContrastShadow" | "ContrastStandard" | "ControlDialSet" | "ControllerBoardVersion" | "ControlMode" | "ControlRingResponse" | "ControlRingRotation" | "ConversionLens" | "Converter" | "CoringFilter" | "CorrelatedColorTemp" | "CPUFirmwareVersion" | "CPUVersions" | "CreativeStyle" | "CreativeStyleSetting" | "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" | "DeviceType" | "DialDirectionTvAv" | "DiffractionCompensation" | "DiffractionCorrection" | "DigitalFilter" | "DigitalGain" | "DigitalICE" | "DigitalLensOptimizer" | "DigitalLensOptimizerSetting" | "DigitalZoom" | "DirectoryIndex" | "DirectoryNumber" | "DispButton" | "DisplayAllAFPoints" | "DisplayAperture" | "DistortionControl" | "DistortionCorrection" | "DistortionCorrectionSetting" | "DistortionCorrectionValue" | "DistortionCorrParams" | "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" | "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" | "FaceInfoLength" | "FaceInfoOffset" | "FaceName" | "FacePosition" | "FacePositions" | "FacesDetected" | "FacesRecognized" | "FaceWidth" | "Fade" | "FEMicroadjustment" | "FileFormat" | "FileIndex" | "FileInfoVersion" | "FileNumber" | "FileNumberMemory" | "FileNumberSequence" | "FillFlashAutoReduction" | "FilmGrainEffect" | "FilmMode" | "FilmType" | "FilterEffect" | "FilterEffectAuto" | "FinderDisplayDuringExposure" | "FineSharpness" | "FineTuneOptCenterWeighted" | "FineTuneOptHighlightWeighted" | "FineTuneOptMatrixMetering" | "FineTuneOptSpotMetering" | "FirmwareDate" | "FirmwareName" | "FirmwareRevision" | "FirmwareVersion" | "FisheyeFilter" | "FlashAction" | "FlashActionExternal" | "FlashActivity" | "FlashBatteryLevel" | "FlashBias" | "FlashBits" | "FlashButtonFunction" | "FlashChargeLevel" | "FlashColorFilter" | "FlashCommanderMode" | "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" | "FlashShutterSpeed" | "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" | "FocusBracketStepSize" | "FocusContinuous" | "FocusDisplayAIServoAndMF" | "FocusDistanceRange" | "FocusFrameSize" | "FocusHoldButton" | "FocusInfoVersion" | "FocusingScreen" | "FocusLocation" | "FocusLocked" | "FocusMode" | "FocusModeSetting" | "FocusModeSwitch" | "FocusPeakingHighlightColor" | "FocusPeakingLevel" | "FocusPixel" | "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" | "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" | "GripBatteryState" | "GroupAreaAFIllumination" | "HDMIBitDepth" | "HDMIExternalRecorder" | "HDMIOutputRange" | "HDMIOutputResolution" | "HDR" | "HDREffect" | "HDRGain" | "HDRHeadroom" | "HDRImageType" | "HDRInfoVersion" | "HDRLevel" | "HDRSetting" | "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" | "ImageDataSize" | "ImageEditCount" | "ImageEditing" | "ImageEffects" | "ImageGeneration" | "ImageIDNumber" | "ImageOptimization" | "ImageProcessing" | "ImageProcessingVersion" | "ImageQuality" | "ImageReview" | "ImageReviewMonitorOffTime" | "ImageReviewTime" | "ImageRotated" | "ImageSizeRAW" | "ImageStabilization" | "ImageStabilizationSetting" | "ImageStyle" | "ImageTemperatureMax" | "ImageTemperatureMin" | "ImageTone" | "ImageUniqueID" | "InfoButtonWhenShooting" | "InfraredIlluminator" | "InitialAFPointAIServoAF" | "InitialAFPointInServo" | "InitialZoomLiveView" | "InitialZoomSetting" | "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" | "ISOSelected" | "ISOSelection" | "ISOSensitivityStep" | "ISOSetting" | "ISOSpeedExpansion" | "ISOSpeedIncrements" | "ISOSpeedRange" | "ISOStepSize" | "ISOValue" | "JPEGQuality" | "JPGCompression" | "JpgRecordedPixels" | "KeepExposure" | "KeystoneCompensation" | "KeystoneDirection" | "KeystoneValue" | "KodakImageHeight" | "KodakImageWidth" | "KodakInfoType" | "KodakMake" | "KodakMaker" | "KodakModel" | "KodakVersion" | "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" | "LensProperties" | "LensShading" | "LensShutterLock" | "LensSpec" | "LensSpecFeatures" | "LensTemperature" | "LensType" | "LensType2" | "LensType3" | "LensTypeMake" | "LensTypeModel" | "LensZoomPosition" | "LevelIndicator" | "LevelOrientation" | "LightCondition" | "LightingMode" | "LightSourceSpecial" | "LightSwitch" | "LightValueCenter" | "LightValuePeriphery" | "LimitAFAreaModeSelection" | "LinearityUpperMargin" | "LinkAEToAFPoint" | "LivePhotoVideoIndex" | "LiveView" | "LiveViewAF" | "LiveViewAFAreaMode" | "LiveViewAFMethod" | "LiveViewAFMode" | "LiveViewButtonOptions" | "LiveViewExposureSimulation" | "LiveViewFocusMode" | "LiveViewMetering" | "LiveViewMonitorOffTime" | "LiveViewShooting" | "LocalLocationName" | "Location" | "LocationInfoVersion" | "LocationName" | "LockMicrophoneButton" | "LongExposureNoiseReduction" | "LongExposureNRUsed" | "LowLightAF" | "LuminanceNoiseAmplitude" | "LuminanceNoiseReduction" | "LVShootingAreaDisplay" | "M16CVersion" | "Macro" | "MacroLED" | "MacroMode" | "MagicFilter" | "MagnifiedView" | "MainDialExposureComp" | "MakerNoteOffset" | "MakerNoteType" | "MakerNoteVersion" | "ManometerPressure" | "ManometerReading" | "ManualAFPointSelectPattern" | "ManualAFPointSelPattern" | "ManualFlash" | "ManualFlashOutput" | "ManualFlashStrength" | "ManualFocusDistance" | "ManualFocusPointIllumination" | "ManualFocusRingInAFMode" | "ManualTv" | "ManufactureDate" | "MasterGain" | "MatrixMetering" | "MaxAperture" | "MaxApertureAtMaxFocal" | "MaxApertureAtMinFocal" | "MaxContinuousRelease" | "MaxFaces" | "MaxFocalLength" | "MCCData" | "MCUVersion" | "MeasuredEV" | "MeasuredLV" | "MeasuredRGGB" | "MeasuredRGGBData" | "MechanicalShutterCount" | "MemoAudioQuality" | "MemoryCardConfiguration" | "MemoryCardNumber" | "MenuButtonDisplayPosition" | "MenuButtonReturn" | "MenuMonitorOffTime" | "MergedImages" | "MetaVersion" | "Metering" | "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" | "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" | "NumberOfFocusPoints" | "NumberOffsets" | "NumFaceElements" | "NumFacePositions" | "ObjectDistance" | "OISMode" | "OKButton" | "OlympusImageHeight" | "OlympusImageWidth" | "OneTouchWB" | "OpticalVR" | "OpticalZoom" | "OpticalZoomCode" | "OpticalZoomMode" | "OpticalZoomOn" | "OrderNumber" | "OrientationLinkedAF" | "OrientationLinkedAFPoint" | "OriginalDirectory" | "OriginalFileName" | "OriginalImageHeight" | "OriginalImageWidth" | "OtherInfo" | "OutputLUT" | "OwnerName" | "PaintingFilter" | "PanasonicDateTime" | "PanasonicExifVersion" | "PanasonicImageHeight" | "PanasonicImageWidth" | "PanoramaAngle" | "PanoramaCropBottom" | "PanoramaCropLeft" | "PanoramaCropRight" | "PanoramaCropTop" | "PanoramaDirection" | "PanoramaFrameHeight" | "PanoramaFrameWidth" | "PanoramaFullHeight" | "PanoramaFullWidth" | "PanoramaMode" | "PanoramaSize3D" | "PanoramaSourceHeight" | "PanoramaSourceWidth" | "PentaxImageSize" | "PentaxModelID" | "PentaxModelType" | "PentaxVersion" | "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" | "PictureModeTone" | "PictureProfile" | "PictureStyle" | "PictureStylePC" | "PictureStyleUserDef" | "Pitch" | "PitchAngle" | "PixelAspectRatio" | "PixelShiftInfo" | "PixelShiftResolution" | "PixelShiftShooting" | "PlaybackMenusTime" | "PlaybackMonitorOffTime" | "PlaybackZoom" | "PlayDisplay" | "POILevel" | "PopupFlash" | "PortraitImpressionBalance" | "PortraitRefiner" | "PostFocusMerging" | "PostReleaseBurstLength" | "PowerSource" | "PowerUpTime" | "PreAF" | "PreCaptureFrames" | "PreReleaseBurstLength" | "PresetWhiteBalance" | "PreviewButton" | "PreviewButtonPlusDials" | "PreviewImageBorders" | "PreviewImageHeight" | "PreviewImageLength" | "PreviewImageSize" | "PreviewImageStart" | "PreviewImageValid" | "PreviewImageWidth" | "PreviewQuality" | "PrimaryAFPoint" | "PrimarySlot" | "PrioritySetupShutterRelease" | "ProductionCode" | "ProgramISO" | "ProgramLine" | "ProgramShift" | "Quality" | "QuickControlDialInMeter" | "QuickShot" | "RangeFinder" | "RawAndJpgRecording" | "RawDataByteOrder" | "RawDataCFAPattern" | "RawDataLength" | "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" | "RearDisplay" | "RecordDisplay" | "RecordID" | "RecordingFormat" | "RecordingMode" | "RecordMode" | "RecordShutterRelease" | "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" | "SensorBottomBorder" | "SensorCalibration" | "SensorCleaning" | "SensorFullHeight" | "SensorFullWidth" | "SensorHeight" | "SensorID" | "SensorLeftBorder" | "SensorPixelSize" | "SensorRedLevel" | "SensorRightBorder" | "SensorSize" | "SensorTemperature" | "SensorTopBorder" | "SensorType" | "SensorWidth" | "Sequence" | "SequenceFileNumber" | "SequenceImageNumber" | "SequenceLength" | "SequenceNumber" | "SequenceShotInterval" | "SequentialShot" | "SerialNumber" | "SerialNumberFormat" | "SetButtonCrossKeysFunc" | "SetButtonWhenShooting" | "SetFunctionWhenShooting" | "ShadingCompensation" | "Shadow" | "ShadowCorrection" | "Shadows" | "ShadowTone" | "ShakeReduction" | "Sharpening" | "SharpnessAuto" | "SharpnessFactor" | "SharpnessFaithful" | "SharpnessFreqTable" | "SharpnessFrequency" | "SharpnessLandscape" | "SharpnessNeutral" | "SharpnessPortrait" | "SharpnessRange" | "SharpnessSetting" | "SharpnessStandard" | "SharpnessTable" | "ShootingInfoDisplay" | "ShootingInfoMonitorOffTime" | "ShootingModeSetting" | "ShortOwnerName" | "ShortReleaseTimeLag" | "ShotInfoVersion" | "ShotNumberSincePowerUp" | "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" | "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" | "SpotFocusPointX" | "SpotFocusPointY" | "SpotMeteringMode" | "SpotMeterLinkToAFPoint" | "SRActive" | "SRAWQuality" | "SRFocalLength" | "SRHalfPressTime" | "SRResult" | "StackedImage" | "StandbyMonitorOffTime" | "StandbyTimer" | "StartMovieShooting" | "StopsAboveBaseISO" | "StoreByOrientation" | "SubDialFrameAdvance" | "SubjectDetection" | "SubjectDetectionAreaMF" | "SubjectMotion" | "SubjectProgram" | "SubjectToDetect" | "SubSelector" | "SubSelectorAssignment" | "SubSelectorCenter" | "SubSelectorPlusDials" | "SuperimposedDisplay" | "SuperMacro" | "SvISOSetting" | "SweepPanoramaDirection" | "SweepPanoramaFieldOfView" | "SweepPanoramaSize" | "SwitchToRegisteredAFPoint" | "SyncReleaseMode" | "TargetAperture" | "TargetCompressionRatio" | "TargetDistanceSetting" | "TargetExposureTime" | "TargetImageType" | "Teleconverter" | "TextEncoding" | "TextStamp" | "ThumbnailFileName" | "ThumbnailHeight" | "ThumbnailImageValidArea" | "ThumbnailWidth" | "TiffMeteringImage" | "TiffMeteringImageHeight" | "TiffMeteringImageWidth" | "Time" | "TimeLapseShotNumber" | "TimerFunctionButton" | "TimerLength" | "TimerRecording" | "TimeSincePowerOn" | "TimeStamp" | "TimeZone" | "TimeZoneCity" | "TimeZoneCode" | "TimeZoneInfo" | "ToneComp" | "ToneCurve" | "ToneCurveMatching" | "ToneCurveTable" | "ToneLevel" | "ToningEffect" | "ToningEffectAuto" | "ToningSaturation" | "TotalZoom" | "TouchAE" | "ToyCameraFilter" | "Transform" | "TrashButtonFunction" | "TravelDay" | "TriggerMode" | "TvExposureTimeSetting" | "UniqueID" | "UnknownNumber" | "UnsharpMaskFineness" | "UnsharpMaskThreshold" | "UsableMeteringModes" | "UsableShootingModes" | "USBPowerDelivery" | "UserLabel" | "UserProfile" | "USMLensElectronicMF" | "ValidBits" | "VariableLowPassFilter" | "VariProgram" | "VerticalAFOnButton" | "VerticalFuncButton" | "VerticalFuncButtonPlusDials" | "VerticalMovieAFOnButton" | "VerticalMovieFuncButton" | "VerticalMultiSelector" | "VFDisplayIllumination" | "VibrationReduction" | "VideoBurstMode" | "VideoBurstResolution" | "VideoPreburst" | "ViewfinderDisplay" | "ViewfinderWarning" | "ViewfinderWarnings" | "ViewInfoDuringExposure" | "ViewingMode" | "VignetteControl" | "Vignetting" | "VignettingCorrection" | "VignettingCorrParams" | "VignettingCorrVersion" | "VoiceMemo" | "VRDOffset" | "VRInfoVersion" | "VRMode" | "VRType" | "WatercolorFilter" | "WBBlueLevel" | "WBBracketingSteps" | "WBBracketMode" | "WBBracketShotNumber" | "WBBracketValueAB" | "WBBracketValueGM" | "WBButtonPlaybackMode" | "WBGreenLevel" | "WBMediaImageSizeSetting" | "WBMode" | "WBRedLevel" | "WBShiftAB" | "WBShiftCreativeControl" | "WBShiftGM" | "WBShiftIntelligentAuto" | "WhiteBalanceAutoAdjustment" | "WhiteBalanceBias" | "WhiteBalanceBlue" | "WhiteBalanceBracket" | "WhiteBalanceBracketing" | "WhiteBalanceFineTune" | "WhiteBalanceMatching" | "WhiteBalanceMode" | "WhiteBalanceRed" | "WhiteBalanceSet" | "WhiteBalanceSetting" | "WhiteBalanceSetup" | "WhiteBalanceTable" | "WhiteBalanceTemperature" | "WhiteBoard" | "WideAdapter" | "WideFocusZone" | "WideRange" | "WorldTimeLocation" | "X3FillLight" | "Xidiri" | "Yaw" | "YawAngle" | "YearCreated" | "ZoneMatching" | "ZoneMatchingMode" | "ZoneMatchingOn" | "ZoneMatchingValue" | "ZoomedPreviewImage" | "ZoomedPreviewLength" | "ZoomedPreviewSize" | "ZoomedPreviewStart" | "ZoomSourceWidth" | "ZoomStepCount" | "ZoomTargetWidth">;
|
|
4554
|
+
export declare const MakerNotesTagsNames: StrEnum<"AccelerationTracking" | "AccelerationVector" | "Accelerometer" | "AccelerometerX" | "AccelerometerY" | "AccelerometerZ" | "AccessorySerialNumber" | "AccessoryType" | "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" | "AFAreaYPosition" | "AFAreaZoneSize" | "AFAssist" | "AFAssistBeam" | "AFAssistLamp" | "AFButtonPressed" | "AFConfidence" | "AFConfigTool" | "AFCoordinatesAvailable" | "AFDebugInfo" | "AFDefocus" | "AFDetectionMethod" | "AFDuringLiveView" | "AFFineTune" | "AFFineTuneAdj" | "AFFineTuneAdjTele" | "AFFineTuneIndex" | "AFIlluminator" | "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" | "AmbientTemperature" | "AmbientTemperatureFahrenheit" | "AntiFlicker" | "ApertureLock" | "ApertureRange" | "ApertureRingUse" | "ApertureSetting" | "ApplySettingsToLiveView" | "ApplyShootingMeteringMode" | "ApproximateFNumber" | "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" | "AutoFP" | "AutoISO" | "AutoISOMinShutterSpeed" | "AutoLightingOptimizer" | "AutoPortraitFramed" | "AutoRotate" | "AuxiliaryLens" | "AvApertureSetting" | "AverageBlackLevel" | "AverageLV" | "AvSettingWithoutLens" | "BabyAge" | "BabyName" | "Barcode" | "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" | "BodyBatteryState" | "BodyFirmware" | "BodyFirmwareVersion" | "BodySerialNumber" | "BracketIncrement" | "BracketMode" | "BracketProgram" | "BracketSequence" | "BracketSet" | "BracketSettings" | "BracketShotNumber" | "BracketStep" | "BracketValue" | "Brightness" | "BuildNumber" | "BulbDuration" | "BurstGroupID" | "BurstMode" | "BurstShot" | "BurstSpeed" | "BurstUUID" | "ButtonFunctionControlOff" | "BWFilter" | "BWMode" | "CAFGridSize" | "CAFPointsInFocus" | "CAFPointsSelected" | "Calibration" | "CameraDateTime" | "CameraID" | "CameraISO" | "CameraOrientation" | "CameraParameters" | "CameraPictureStyle" | "CameraPitch" | "CameraRoll" | "CameraSettingsVersion" | "CameraType" | "CameraYaw" | "CanonExposureMode" | "CanonFileDescription" | "CanonFileLength" | "CanonFirmwareVersion" | "CanonFlashMode" | "CanonImageSize" | "CanonImageType" | "CanonModelID" | "CardShutterLock" | "Categories" | "CCDBoardVersion" | "CCDScanMode" | "CCDSensitivity" | "CCDVersion" | "CenterAFArea" | "CenterFocusPoint" | "CenterWeightedAreaSize" | "CHModeShootingSpeed" | "ChromaticAberrationCorr" | "ChromaticAberrationCorrParams" | "ChromaticAberrationSetting" | "ChrominanceNoiseReduction" | "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" | "ColorMode" | "ColorProfileSettings" | "ColorTempAsShot" | "ColorTempAuto" | "ColorTempCloudy" | "ColorTempCustom" | "ColorTempDaylight" | "ColorTemperature" | "ColorTemperatureAuto" | "ColorTemperatureCustom" | "ColorTemperatureSet" | "ColorTemperatureSetting" | "ColorTempFlash" | "ColorTempFluorescent" | "ColorTempKelvin" | "ColorTempMeasured" | "ColorTempShade" | "ColorTempTungsten" | "ColorTint" | "ColorTone" | "ColorToneAuto" | "ColorToneLandscape" | "ColorToneNeutral" | "ColorTonePortrait" | "ColorToneStandard" | "CommandDials" | "CommandDialsApertureSetting" | "CommandDialsChangeMainSub" | "CommandDialsMenuAndPlayback" | "CommandDialsReverseRotation" | "CommanderChannel" | "CommanderGroupAManualOutput" | "CommanderGroupAMode" | "CommanderGroupBManualOutput" | "CommanderGroupBMode" | "CommanderInternalFlash" | "CommanderInternalManualOutput" | "CommanderInternalTTLComp" | "CommanderInternalTTLCompBuiltin" | "CommanderInternalTTLCompGroupA" | "CommanderInternalTTLCompGroupB" | "ComponentBitDepth" | "ComponentVersion" | "CompositionAdjust" | "CompositionAdjustRotation" | "CompositionAdjustX" | "CompositionAdjustY" | "CompressedImageSize" | "CompressionFactor" | "CompressionRatio" | "ContentIdentifier" | "ContinuousBracketing" | "ContinuousDrive" | "ContinuousModeDisplay" | "ContinuousModeLiveView" | "ContinuousShootingSpeed" | "ContinuousShotLimit" | "ContrastAuto" | "ContrastCurve" | "ContrastDetectAFArea" | "ContrastDetectAFInFocus" | "ContrastFaithful" | "ContrastHighlight" | "ContrastHighlightShadowAdj" | "ContrastLandscape" | "ContrastMode" | "ContrastNeutral" | "ContrastPortrait" | "ContrastSetting" | "ContrastShadow" | "ContrastStandard" | "ControlDialSet" | "ControllerBoardVersion" | "ControlMode" | "ControlRingResponse" | "ControlRingRotation" | "ConversionLens" | "Converter" | "CoringFilter" | "CorrelatedColorTemp" | "CPUFirmwareVersion" | "CPUVersions" | "CreativeStyle" | "CreativeStyleSetting" | "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" | "DeviceType" | "DialDirectionTvAv" | "DiffractionCompensation" | "DiffractionCorrection" | "DigitalFilter" | "DigitalGain" | "DigitalICE" | "DigitalZoom" | "DirectoryIndex" | "DirectoryNumber" | "DispButton" | "DisplayAllAFPoints" | "DisplayAperture" | "DistortionControl" | "DistortionCorrection" | "DistortionCorrectionSetting" | "DistortionCorrectionValue" | "DistortionCorrParams" | "DistortionCorrParamsNumber" | "DistortionCorrParamsPresent" | "DriveModeSetting" | "DriveSpeed" | "DSPFirmwareVersion" | "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" | "ExposureTuning" | "ExposureWarning" | "EXRAuto" | "EXRMode" | "ExtendedMenuBanks" | "ExtendedShutterSpeeds" | "ExtendedWBDetect" | "Extender" | "ExtenderFirmwareVersion" | "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" | "FaceInfoLength" | "FaceInfoOffset" | "FaceName" | "FacePosition" | "FacePositions" | "FacesDetected" | "FacesRecognized" | "FaceWidth" | "Fade" | "FEMicroadjustment" | "FileFormat" | "FileIndex" | "FileInfoVersion" | "FileNumber" | "FileNumberMemory" | "FileNumberSequence" | "FillFlashAutoReduction" | "FilmGrainEffect" | "FilmMode" | "FilmType" | "FilterEffect" | "FilterEffectAuto" | "FinderDisplayDuringExposure" | "FineSharpness" | "FineTuneOptCenterWeighted" | "FineTuneOptHighlightWeighted" | "FineTuneOptMatrixMetering" | "FineTuneOptSpotMetering" | "FirmwareDate" | "FirmwareName" | "FirmwareRevision" | "FirmwareVersion" | "FisheyeFilter" | "FlashAction" | "FlashActionExternal" | "FlashActivity" | "FlashBatteryLevel" | "FlashBias" | "FlashBits" | "FlashButtonFunction" | "FlashChargeLevel" | "FlashColorFilter" | "FlashCommanderMode" | "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" | "FlashShutterSpeed" | "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" | "FocusBracketStepSize" | "FocusContinuous" | "FocusDisplayAIServoAndMF" | "FocusDistanceRange" | "FocusFrameSize" | "FocusHoldButton" | "FocusInfoVersion" | "FocusingScreen" | "FocusLocation" | "FocusLocked" | "FocusMode" | "FocusModeSetting" | "FocusModeSwitch" | "FocusPeakingHighlightColor" | "FocusPeakingLevel" | "FocusPixel" | "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" | "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" | "GripBatteryState" | "GroupAreaAFIllumination" | "HDMIBitDepth" | "HDMIExternalRecorder" | "HDMIOutputRange" | "HDMIOutputResolution" | "HDR" | "HDREffect" | "HDRGain" | "HDRHeadroom" | "HDRImageType" | "HDRInfoVersion" | "HDRLevel" | "HDRSetting" | "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" | "ImageDataSize" | "ImageEditCount" | "ImageEditing" | "ImageEffects" | "ImageGeneration" | "ImageIDNumber" | "ImageOptimization" | "ImageProcessing" | "ImageProcessingVersion" | "ImageQuality" | "ImageReview" | "ImageReviewMonitorOffTime" | "ImageReviewTime" | "ImageRotated" | "ImageSizeRAW" | "ImageStabilization" | "ImageStabilizationSetting" | "ImageStyle" | "ImageTemperatureMax" | "ImageTemperatureMin" | "ImageTone" | "ImageUniqueID" | "InfoButtonWhenShooting" | "InfraredIlluminator" | "InitialAFPointAIServoAF" | "InitialAFPointInServo" | "InitialZoomLiveView" | "InitialZoomSetting" | "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" | "ISOSelected" | "ISOSelection" | "ISOSensitivityStep" | "ISOSetting" | "ISOSpeedExpansion" | "ISOSpeedIncrements" | "ISOSpeedRange" | "ISOStepSize" | "ISOValue" | "JPEGQuality" | "JPGCompression" | "JpgRecordedPixels" | "KeepExposure" | "KeystoneCompensation" | "KeystoneDirection" | "KeystoneValue" | "KodakImageHeight" | "KodakImageWidth" | "KodakInfoType" | "KodakMake" | "KodakMaker" | "KodakModel" | "KodakVersion" | "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" | "LensProperties" | "LensShading" | "LensShutterLock" | "LensSpec" | "LensSpecFeatures" | "LensTemperature" | "LensType" | "LensType2" | "LensType3" | "LensTypeMake" | "LensTypeModel" | "LensZoomPosition" | "LevelIndicator" | "LevelOrientation" | "LightCondition" | "LightingMode" | "LightSourceSpecial" | "LightSwitch" | "LightValueCenter" | "LightValuePeriphery" | "LimitAFAreaModeSelection" | "LinearityUpperMargin" | "LinkAEToAFPoint" | "LivePhotoVideoIndex" | "LiveView" | "LiveViewAF" | "LiveViewAFAreaMode" | "LiveViewAFMethod" | "LiveViewAFMode" | "LiveViewButtonOptions" | "LiveViewExposureSimulation" | "LiveViewFocusMode" | "LiveViewMetering" | "LiveViewMonitorOffTime" | "LiveViewShooting" | "LocalLocationName" | "Location" | "LocationInfoVersion" | "LocationName" | "LockMicrophoneButton" | "LongExposureNoiseReduction" | "LongExposureNRUsed" | "LowLightAF" | "LuminanceNoiseAmplitude" | "LuminanceNoiseReduction" | "LVShootingAreaDisplay" | "M16CVersion" | "Macro" | "MacroLED" | "MacroMode" | "MagicFilter" | "MagnifiedView" | "MainDialExposureComp" | "MakerNoteOffset" | "MakerNoteType" | "MakerNoteVersion" | "ManometerPressure" | "ManometerReading" | "ManualAFPointSelectPattern" | "ManualAFPointSelPattern" | "ManualFlash" | "ManualFlashOutput" | "ManualFlashStrength" | "ManualFocusDistance" | "ManualFocusPointIllumination" | "ManualFocusRingInAFMode" | "ManualTv" | "ManufactureDate" | "MasterGain" | "MatrixMetering" | "MaxAperture" | "MaxApertureAtMaxFocal" | "MaxApertureAtMinFocal" | "MaxContinuousRelease" | "MaxFaces" | "MaxFocalLength" | "MCCData" | "MCUVersion" | "MeasuredEV" | "MeasuredLV" | "MeasuredRGGB" | "MeasuredRGGBData" | "MechanicalShutterCount" | "MemoAudioQuality" | "MemoryCardConfiguration" | "MemoryCardNumber" | "MenuButtonDisplayPosition" | "MenuButtonReturn" | "MenuMonitorOffTime" | "MergedImages" | "MetaVersion" | "Metering" | "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" | "NumberOfFocusPoints" | "NumberOffsets" | "NumCAFPoints" | "NumFaceElements" | "NumFacePositions" | "ObjectDistance" | "OISMode" | "OKButton" | "OlympusImageHeight" | "OlympusImageWidth" | "OneTouchWB" | "OpticalVR" | "OpticalZoom" | "OpticalZoomCode" | "OpticalZoomMode" | "OpticalZoomOn" | "OrderNumber" | "OrientationLinkedAF" | "OrientationLinkedAFPoint" | "OriginalDirectory" | "OriginalFileName" | "OriginalImageHeight" | "OriginalImageWidth" | "OtherInfo" | "OutputLUT" | "OwnerName" | "PaintingFilter" | "PanasonicDateTime" | "PanasonicExifVersion" | "PanasonicImageHeight" | "PanasonicImageWidth" | "PanoramaAngle" | "PanoramaCropBottom" | "PanoramaCropLeft" | "PanoramaCropRight" | "PanoramaCropTop" | "PanoramaDirection" | "PanoramaFrameHeight" | "PanoramaFrameWidth" | "PanoramaFullHeight" | "PanoramaFullWidth" | "PanoramaMode" | "PanoramaSize3D" | "PanoramaSourceHeight" | "PanoramaSourceWidth" | "PentaxImageSize" | "PentaxModelID" | "PentaxModelType" | "PentaxVersion" | "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" | "PictureModeTone" | "PictureProfile" | "PictureStyle" | "PictureStylePC" | "PictureStyleUserDef" | "Pitch" | "PitchAngle" | "PixelAspectRatio" | "PixelShiftInfo" | "PixelShiftResolution" | "PixelShiftShooting" | "PlaybackMenusTime" | "PlaybackMonitorOffTime" | "PlaybackZoom" | "PlayDisplay" | "POILevel" | "PopupFlash" | "PortraitImpressionBalance" | "PortraitRefiner" | "PostFocusMerging" | "PostReleaseBurstLength" | "PowerSource" | "PowerUpTime" | "PreAF" | "PreCaptureFrames" | "PreReleaseBurstLength" | "PresetWhiteBalance" | "PreviewButton" | "PreviewButtonPlusDials" | "PreviewImageBorders" | "PreviewImageHeight" | "PreviewImageLength" | "PreviewImageSize" | "PreviewImageStart" | "PreviewImageValid" | "PreviewImageWidth" | "PreviewQuality" | "PrimaryAFPoint" | "PrimarySlot" | "PrioritySetupShutterRelease" | "ProductionCode" | "ProgramISO" | "ProgramLine" | "ProgramShift" | "Quality" | "QuickControlDialInMeter" | "QuickShot" | "RangeFinder" | "RawAndJpgRecording" | "RawDataByteOrder" | "RawDataCFAPattern" | "RawDataLength" | "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" | "RearDisplay" | "RecordDisplay" | "RecordID" | "RecordingFormat" | "RecordingMode" | "RecordMode" | "RecordShutterRelease" | "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" | "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" | "SensorBottomBorder" | "SensorCalibration" | "SensorCleaning" | "SensorFullHeight" | "SensorFullWidth" | "SensorHeight" | "SensorID" | "SensorLeftBorder" | "SensorPixelSize" | "SensorRedLevel" | "SensorRightBorder" | "SensorSize" | "SensorTemperature" | "SensorTopBorder" | "SensorType" | "SensorWidth" | "Sequence" | "SequenceFileNumber" | "SequenceImageNumber" | "SequenceLength" | "SequenceNumber" | "SequenceShotInterval" | "SequentialShot" | "SerialNumber" | "SerialNumberFormat" | "SetButtonCrossKeysFunc" | "SetButtonWhenShooting" | "SetFunctionWhenShooting" | "ShadingCompensation" | "Shadow" | "ShadowCorrection" | "Shadows" | "ShadowTone" | "ShakeReduction" | "Sharpening" | "SharpnessAuto" | "SharpnessFactor" | "SharpnessFaithful" | "SharpnessFreqTable" | "SharpnessFrequency" | "SharpnessLandscape" | "SharpnessNeutral" | "SharpnessPortrait" | "SharpnessRange" | "SharpnessSetting" | "SharpnessStandard" | "SharpnessTable" | "ShootingInfoDisplay" | "ShootingInfoMonitorOffTime" | "ShootingModeSetting" | "ShortOwnerName" | "ShortReleaseTimeLag" | "ShotInfoVersion" | "ShotNumberSincePowerUp" | "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" | "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" | "SpotFocusPointX" | "SpotFocusPointY" | "SpotMeteringMode" | "SpotMeterLinkToAFPoint" | "SRActive" | "SRAWQuality" | "SRFocalLength" | "SRHalfPressTime" | "SRResult" | "StackedImage" | "StandbyMonitorOffTime" | "StandbyTimer" | "StartMovieShooting" | "StopsAboveBaseISO" | "StoreByOrientation" | "SubDialFrameAdvance" | "SubjectDetection" | "SubjectDetectionAreaMF" | "SubjectMotion" | "SubjectProgram" | "SubjectToDetect" | "SubSelector" | "SubSelectorAssignment" | "SubSelectorCenter" | "SubSelectorPlusDials" | "SuperimposedDisplay" | "SuperMacro" | "SvISOSetting" | "SweepPanoramaDirection" | "SweepPanoramaFieldOfView" | "SweepPanoramaSize" | "SwitchToRegisteredAFPoint" | "SyncReleaseMode" | "TargetAperture" | "TargetCompressionRatio" | "TargetDistanceSetting" | "TargetExposureTime" | "TargetImageType" | "Teleconverter" | "TextEncoding" | "TextStamp" | "ThumbnailFileName" | "ThumbnailHeight" | "ThumbnailImageValidArea" | "ThumbnailWidth" | "TiffMeteringImage" | "TiffMeteringImageHeight" | "TiffMeteringImageWidth" | "Time" | "TimeLapseShotNumber" | "TimerFunctionButton" | "TimerLength" | "TimerRecording" | "TimeSincePowerOn" | "TimeStamp" | "TimeZone" | "TimeZoneCity" | "TimeZoneCode" | "TimeZoneInfo" | "ToneComp" | "ToneCurve" | "ToneCurveMatching" | "ToneCurveTable" | "ToneLevel" | "ToningEffect" | "ToningEffectAuto" | "ToningSaturation" | "TotalZoom" | "TouchAE" | "ToyCameraFilter" | "Transform" | "TrashButtonFunction" | "TravelDay" | "TriggerMode" | "TvExposureTimeSetting" | "UniqueID" | "UnknownNumber" | "UnsharpMaskFineness" | "UnsharpMaskThreshold" | "UsableMeteringModes" | "UsableShootingModes" | "USBPowerDelivery" | "UserLabel" | "UserProfile" | "USMLensElectronicMF" | "ValidBits" | "VariableLowPassFilter" | "VariProgram" | "VerticalAFOnButton" | "VerticalFuncButton" | "VerticalFuncButtonPlusDials" | "VerticalMovieAFOnButton" | "VerticalMovieFuncButton" | "VerticalMultiSelector" | "VFDisplayIllumination" | "VibrationReduction" | "VideoBurstMode" | "VideoBurstResolution" | "VideoPreburst" | "ViewfinderDisplay" | "ViewfinderWarning" | "ViewfinderWarnings" | "ViewInfoDuringExposure" | "ViewingMode" | "VignetteControl" | "Vignetting" | "VignettingCorrection" | "VignettingCorrParams" | "VignettingCorrVersion" | "VoiceMemo" | "VRDOffset" | "VRInfoVersion" | "VRMode" | "VRType" | "WatercolorFilter" | "WBBlueLevel" | "WBBracketingSteps" | "WBBracketMode" | "WBBracketShotNumber" | "WBBracketValueAB" | "WBBracketValueGM" | "WBButtonPlaybackMode" | "WBGreenLevel" | "WBMediaImageSizeSetting" | "WBMode" | "WBRedLevel" | "WBShiftAB" | "WBShiftCreativeControl" | "WBShiftGM" | "WBShiftIntelligentAuto" | "WhiteBalanceAutoAdjustment" | "WhiteBalanceBias" | "WhiteBalanceBlue" | "WhiteBalanceBracket" | "WhiteBalanceBracketing" | "WhiteBalanceFineTune" | "WhiteBalanceMatching" | "WhiteBalanceMode" | "WhiteBalanceRed" | "WhiteBalanceSet" | "WhiteBalanceSetting" | "WhiteBalanceSetup" | "WhiteBalanceTable" | "WhiteBalanceTemperature" | "WhiteBoard" | "WideAdapter" | "WideFocusZone" | "WideRange" | "WorldTimeLocation" | "X3FillLight" | "Xidiri" | "Yaw" | "YawAngle" | "YearCreated" | "ZoneMatching" | "ZoneMatchingMode" | "ZoneMatchingOn" | "ZoneMatchingValue" | "ZoomedPreviewImage" | "ZoomedPreviewLength" | "ZoomedPreviewSize" | "ZoomedPreviewStart" | "ZoomSourceWidth" | "ZoomStepCount" | "ZoomTargetWidth">;
|
|
4559
4555
|
export type MakerNotesTag = StrEnumKeys<typeof MakerNotesTagsNames>;
|
|
4560
4556
|
/**
|
|
4561
4557
|
* @see https://exiftool.org/TagNames/XMP.html
|
|
@@ -4603,7 +4599,7 @@ export interface XMPTags {
|
|
|
4603
4599
|
CameraProfile?: string;
|
|
4604
4600
|
/** ☆☆☆☆ ✔ Example: "D4FE5D91640D0C5A01B5633EB8061002" */
|
|
4605
4601
|
CameraProfileDigest?: string;
|
|
4606
|
-
/** ☆☆☆☆ ✔ Example: [{"
|
|
4602
|
+
/** ☆☆☆☆ ✔ Example: [{"DepthMap":{"ConfidenceURI":"android/confidencemap","De…ical"}] */
|
|
4607
4603
|
Cameras?: Struct[];
|
|
4608
4604
|
/** ☆☆☆☆ Example: "Rear" */
|
|
4609
4605
|
CameraUnit?: string;
|
|
@@ -4643,7 +4639,7 @@ export interface XMPTags {
|
|
|
4643
4639
|
ColorNoiseReductionSmoothness?: number;
|
|
4644
4640
|
/** ☆☆☆☆ ✔ Example: "This is a comment." */
|
|
4645
4641
|
Comment?: string;
|
|
4646
|
-
/** ☆☆☆☆ ✔ Example: {"Directory":[{"
|
|
4642
|
+
/** ☆☆☆☆ ✔ Example: {"Directory":[{"DataURI":"primary_image","Length":0,"Mime…peg"}]} */
|
|
4647
4643
|
Container?: Struct;
|
|
4648
4644
|
/** ☆☆☆☆ Example: "/home/username/pictures" */
|
|
4649
4645
|
ContainerDirectory?: ContainerDirectoryItem[] | Struct[];
|
|
@@ -4783,7 +4779,7 @@ export interface XMPTags {
|
|
|
4783
4779
|
HasSettings?: boolean;
|
|
4784
4780
|
/** ☆☆☆☆ ✔ Example: "(Binary data 23388 bytes, use -b option to extract)" */
|
|
4785
4781
|
HdrPlusMakernote?: BinaryField | string;
|
|
4786
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data
|
|
4782
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 53037 bytes, use -b option to extract)" */
|
|
4787
4783
|
HDRPMakerNote?: BinaryField | string;
|
|
4788
4784
|
/** ☆☆☆☆ ✔ Example: ["点像F11"] */
|
|
4789
4785
|
HierarchicalSubject?: string[];
|
|
@@ -4975,7 +4971,7 @@ export interface XMPTags {
|
|
|
4975
4971
|
PreservedFileName?: string;
|
|
4976
4972
|
/** ☆☆☆☆ ✔ Example: 11 */
|
|
4977
4973
|
ProcessVersion?: number;
|
|
4978
|
-
/** ☆☆☆☆ ✔ Example: [{"
|
|
4974
|
+
/** ☆☆☆☆ ✔ Example: [{"CameraIndices":[0],"Type":"DepthPhoto"}] */
|
|
4979
4975
|
Profiles?: Struct[];
|
|
4980
4976
|
/** ☆☆☆☆ Example: */
|
|
4981
4977
|
ProgramMode?: string;
|
|
@@ -5135,15 +5131,15 @@ export type XMPTag = StrEnumKeys<typeof XMPTagsNames>;
|
|
|
5135
5131
|
* - a checkmark if the tag is used by popular devices (like iPhones), and
|
|
5136
5132
|
* - an example value, JSON stringified.
|
|
5137
5133
|
*
|
|
5138
|
-
* Autogenerated by "npm run mktags" by ExifTool 13.
|
|
5139
|
-
*
|
|
5134
|
+
* Autogenerated by "npm run mktags" by ExifTool 13.30 on Thu May 22 2025.
|
|
5135
|
+
* 2767 unique tags were found in 10138 photo and video files.
|
|
5140
5136
|
*
|
|
5141
5137
|
* @see https://exiftool.org/TagNames/
|
|
5142
5138
|
*/
|
|
5143
|
-
export interface Tags extends APPTags, CompositeTags, EXIFTags, ExifToolTags, ExifToolVendoredTags, FileTags, FlashPixTags, GeolocationTags, ICCProfileTags, IPTCApplicationRecordTags, IPTCTags, ImageDataHashTag, JFIFTags,
|
|
5139
|
+
export interface Tags extends APPTags, CompositeTags, EXIFTags, ExifToolTags, ExifToolVendoredTags, FileTags, FlashPixTags, GeolocationTags, ICCProfileTags, IPTCApplicationRecordTags, IPTCTags, ImageDataHashTag, JFIFTags, JSONTags, MPFTags, MWGCollectionsTags, MWGKeywordTags, MakerNotesTags, MetaTags, PanasonicRawTags, PhotoshopTags, PrintIMTags, QuickTimeTags, RAFTags, RIFFTags, XMPTags {
|
|
5144
5140
|
}
|
|
5145
5141
|
/**
|
|
5146
5142
|
* All tag names combined from all interfaces
|
|
5147
5143
|
*/
|
|
5148
|
-
export declare const TagNames: StrEnum<"zone" | "AboveColor" | "Again" | "AtmosphericTemperature" | "AutoISOMax" | "AutoISOMin" | "AutoRotation" | "B5100" | "BelowColor" | "Bgain" | "BHighLight" | "BHL" | "Blk0" | "Blk1" | "BMean" | "Boff" | "BSd" | "BSD" | "BStrobe" | "CameraModel" | "CameraPartNumber" | "CameraSerialNumber" | "CameraSoftware" | "Case" | "CBal" | "Color" | "COLOR1" | "COLOR2" | "COLOR3" | "COLOR4" | "ColorTransform" | "Compass" | "ContTake" | "CreatorSoftware" | "DateTimeGenerated" | "DCTEncodeVersion" | "DeviceName" | "DiagonalFieldOfView" | "DigitalZoomOn" | "EmbeddedImage" | "EmbeddedImageHeight" | "EmbeddedImageType" | "EmbeddedImageWidth" | "Emissivity" | "EXP1" | "EXP2" | "EXP3" | "ExposRatio" | "Exposure" | "ExposureType" | "FieldOfView" | "FilterModel" | "FilterPartNumber" | "FilterSerialNumber" | "FinalRatio" | "FlashTime" | "FMean" | "Fnumber" | "FocusDistance" | "FocusPos" | "FocusStepCount" | "FrameRate" | "Gain" | "GBgain" | "GBoff" | "GHighLight" | "GHL" | "GMean" | "GPSTrack" | "GPSTrackRef" | "GPSValid" | "GRgain" | "GRoff" | "GSd" | "GSD" | "ID" | "IRWindowTemperature" | "IRWindowTransmission" | "Isotherm1Color" | "Isotherm2Color" | "JPEG1" | "LensPartNumber" | "LensProjection" | "LightS" | "Mean" | "Meas1Label" | "Meas1Params" | "Meas1Type" | "Meas2Label" | "Meas2Params" | "Meas2Type" | "MediaUniqueID" | "MetadataVersion" | "MotorPos" | "Offset" | "OffsetX" | "OffsetY" | "OverflowColor" | "Palette" | "PaletteColors" | "PaletteFileName" | "PaletteMethod" | "PaletteName" | "PaletteStretch" | "Param0" | "PhotoResolution" | "PicLen" | "Protect" | "Protune" | "R5100" | "Rate" | "RawThermalImage" | "RawThermalImageHeight" | "RawThermalImageType" | "RawThermalImageWidth" | "RawValueMedian" | "RawValueRange" | "RawValueRangeMax" | "RawValueRangeMin" | "Real2IR" | "ReflectedApparentTemperature" | "RelativeHumidity" | "Resolution" | "REV" | "Rgain" | "RHighLight" | "RHL" | "RMean" | "Roff" | "RSd" | "RSD" | "RStrobe" | "S0" | "SpotMeter" | "StrobeTime" | "T0" | "TagB" | "TagQ" | "TagR" | "TagS" | "ThmLen" | "UnderflowColor" | "Version" | "YLevel" | "YTarget" | "Zoom" | "ZoomPos" | "AdvancedSceneMode" | "Aperture" | "AutoFocus" | "AvgBitrate" | "BlueBalance" | "CFAPattern" | "CircleOfConfusion" | "ConditionalFEC" | "ContrastDetectAF" | "DigitalCreationDateTime" | "DOF" | "DriveMode" | "ExtenderStatus" | "FlashType" | "FocalLength35efl" | "FOV" | "GPSDateTime" | "GPSPosition" | "HyperfocalDistance" | "ImageSize" | "Lens" | "Lens35efl" | "LensID" | "LightValue" | "Megapixels" | "OriginalDecisionData" | "PeakSpectralSensitivity" | "PhaseDetectAF" | "PreviewImage" | "RedBalance" | "RedEyeReduction" | "RicohPitch" | "RicohRoll" | "Rotation" | "RunTimeSincePowerUp" | "ScaleFactor35efl" | "ShootingMode" | "ShutterCurtainHack" | "ShutterSpeed" | "SubSecCreateDate" | "SubSecDateTimeOriginal" | "SubSecMediaCreateDate" | "SubSecModifyDate" | "Acceleration" | "AntiAliasStrength" | "ApertureValue" | "Artist" | "AsShotNeutral" | "BaselineExposure" | "BlackLevel" | "BlackLevelBlue" | "BlackLevelGreen" | "BlackLevelRed" | "BlackLevelRepeatDim" | "BrightnessValue" | "CameraElevationAngle" | "CFAPlaneColor" | "CFARepeatPatternDim" | "ChromaticAberrationCorrection" | "ColorSpace" | "CompositeImage" | "CompressedBitsPerPixel" | "Contrast" | "Copyright" | "CreateDate" | "CustomRendered" | "DateTimeOriginal" | "DefaultCropOrigin" | "DefaultCropSize" | "DeviceSettingDescription" | "DigitalZoomRatio" | "DNGBackwardVersion" | "DNGVersion" | "DocumentName" | "ExifImageHeight" | "ExifImageWidth" | "ExposureIndex" | "ExposureMode" | "ExposureProgram" | "ExposureTime" | "FileSource" | "Flash" | "FlashEnergy" | "FNumber" | "FocalLength" | "FocalLengthIn35mmFormat" | "FocalPlaneResolutionUnit" | "FocalPlaneXResolution" | "FocalPlaneYResolution" | "GainControl" | "Gamma" | "GPSAltitude" | "GPSAltitudeRef" | "GPSAreaInformation" | "GPSDateStamp" | "GPSDestBearing" | "GPSDestBearingRef" | "GPSDestDistance" | "GPSDestDistanceRef" | "GPSDestLatitude" | "GPSDestLatitudeRef" | "GPSDestLongitude" | "GPSDestLongitudeRef" | "GPSDifferential" | "GPSDOP" | "GPSHPositioningError" | "GPSImgDirection" | "GPSImgDirectionRef" | "GPSLatitude" | "GPSLatitudeRef" | "GPSLongitude" | "GPSLongitudeRef" | "GPSMapDatum" | "GPSMeasureMode" | "GPSProcessingMethod" | "GPSSatellites" | "GPSSpeed" | "GPSSpeedRef" | "GPSStatus" | "GPSTimeStamp" | "GPSVersionID" | "HighISOMultiplierBlue" | "HighISOMultiplierGreen" | "HighISOMultiplierRed" | "HostComputer" | "ImageDescription" | "ImageTitle" | "InteropIndex" | "InteropVersion" | "ISO" | "ISOSpeed" | "JpgFromRaw" | "JpgFromRawLength" | "JpgFromRawStart" | "LensInfo" | "LensMake" | "LensModel" | "LensSerialNumber" | "LightSource" | "LinearityLimitBlue" | "LinearityLimitGreen" | "LinearityLimitRed" | "Make" | "MakerNoteSamsung1a" | "MakerNoteUnknownBinary" | "MakerNoteUnknownText" | "MaxApertureValue" | "MeteringMode" | "Model" | "Model2" | "ModifyDate" | "Noise" | "NoiseProfile" | "NoiseReductionParams" | "OffsetSchema" | "OffsetTime" | "OffsetTimeDigitized" | "OffsetTimeOriginal" | "Orientation" | "OtherImage" | "OtherImageLength" | "OtherImageStart" | "Padding" | "PageName" | "PanasonicRawVersion" | "Photographer" | "PhotometricInterpretation" | "PlanarConfiguration" | "Pressure" | "PreviewDateTime" | "PreviewTIFF" | "PrimaryChromaticities" | "ProcessingSoftware" | "RawDataOffset" | "RawDataUniqueID" | "RawFormat" | "RawImageSegmentation" | "RecommendedExposureIndex" | "ReferenceBlackWhite" | "RelatedImageFileFormat" | "RelatedImageHeight" | "RelatedImageWidth" | "RelatedSoundFile" | "ResolutionUnit" | "RowsPerStrip" | "SamplesPerPixel" | "Saturation" | "SceneCaptureType" | "SceneType" | "SensingMethod" | "SensitivityType" | "Sharpness" | "ShutterSpeedValue" | "Software" | "SonyRawFileType" | "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" | "WaterDepth" | "WhiteBalance" | "WhiteLevel" | "WhitePoint" | "XiaomiModel" | "XPAuthor" | "XPComment" | "XPKeywords" | "XPSubject" | "XPTitle" | "XResolution" | "YCbCrCoefficients" | "YCbCrPositioning" | "YResolution" | "Error" | "ExifToolVersion" | "SourceFile" | "Warning" | "tz" | "tzSource" | "zoneSource" | "errors" | "warnings" | "BitsPerSample" | "BMPVersion" | "ColorComponents" | "CurrentIPTCDigest" | "Directory" | "EncodingProcess" | "ExifByteOrder" | "FileAccessDate" | "FileCreateDate" | "FileInodeChangeDate" | "FileModifyDate" | "FileName" | "FilePermissions" | "FileSize" | "FileType" | "FileTypeExtension" | "ImageDataMD5" | "ImageHeight" | "ImageWidth" | "MIMEType" | "NumColors" | "NumImportantColors" | "PixelsPerMeterX" | "PixelsPerMeterY" | "Planes" | "YCbCrSubSampling" | "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" | "DateSent" | "DateTimeCreated" | "Destination" | "DigitalCreationDate" | "DigitalCreationTime" | "EnvelopeNumber" | "EnvelopePriority" | "EnvelopeRecordVersion" | "FileVersion" | "Keywords" | "ServiceIdentifier" | "TimeCreated" | "TimeSent" | "ImageDataHash" | "JFIFVersion" | "HDRGainCurve" | "AIScene" | "FilterId" | "Hdr" | "Mirror" | "OpMode" | "ZoomMultiple" | "DependentImage1EntryNumber" | "DependentImage2EntryNumber" | "ImageUIDList" | "MPFVersion" | "MPImageFlags" | "MPImageFormat" | "MPImageLength" | "MPImageStart" | "MPImageType" | "NumberOfImages" | "TotalFrames" | "Collections" | "KeywordInfo" | "HierarchicalKeywords" | "AccelerationTracking" | "AccelerationVector" | "Accelerometer" | "AccelerometerX" | "AccelerometerY" | "AccelerometerZ" | "AccessorySerialNumber" | "AccessoryType" | "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" | "AFAreaWidth" | "AFAreaWidths" | "AFAreaXPosition" | "AFAreaYPosition" | "AFAreaZoneSize" | "AFAssist" | "AFAssistBeam" | "AFAssistLamp" | "AFButtonPressed" | "AFConfidence" | "AFConfigTool" | "AFCoordinatesAvailable" | "AFDebugInfo" | "AFDefocus" | "AFDetectionMethod" | "AFDuringLiveView" | "AFFineTune" | "AFFineTuneAdj" | "AFFineTuneAdjTele" | "AFFineTuneIndex" | "AFIlluminator" | "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" | "AmbientTemperature" | "AmbientTemperatureFahrenheit" | "AntiFlicker" | "ApertureLock" | "ApertureRange" | "ApertureRingUse" | "ApertureSetting" | "ApplySettingsToLiveView" | "ApplyShootingMeteringMode" | "ApproximateFNumber" | "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" | "AutoFP" | "AutoISO" | "AutoISOMinShutterSpeed" | "AutoLightingOptimizer" | "AutoPortraitFramed" | "AutoRotate" | "AuxiliaryLens" | "AvApertureSetting" | "AverageBlackLevel" | "AverageLV" | "AvSettingWithoutLens" | "BabyAge" | "BabyName" | "Barcode" | "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" | "BodyBatteryState" | "BodyFirmware" | "BodyFirmwareVersion" | "BodySerialNumber" | "BracketIncrement" | "BracketMode" | "BracketProgram" | "BracketSequence" | "BracketSet" | "BracketSettings" | "BracketShotNumber" | "BracketStep" | "BracketValue" | "Brightness" | "BuildNumber" | "BulbDuration" | "BurstGroupID" | "BurstMode" | "BurstShot" | "BurstSpeed" | "BurstUUID" | "ButtonFunctionControlOff" | "BWFilter" | "BWMode" | "Calibration" | "CameraDateTime" | "CameraID" | "CameraISO" | "CameraOrientation" | "CameraParameters" | "CameraPictureStyle" | "CameraPitch" | "CameraRoll" | "CameraSettingsVersion" | "CameraType" | "CameraYaw" | "CanonExposureMode" | "CanonFileDescription" | "CanonFileLength" | "CanonFirmwareVersion" | "CanonFlashMode" | "CanonImageSize" | "CanonImageType" | "CanonModelID" | "CardShutterLock" | "Categories" | "CCDBoardVersion" | "CCDScanMode" | "CCDSensitivity" | "CCDVersion" | "CenterAFArea" | "CenterFocusPoint" | "CenterWeightedAreaSize" | "CHModeShootingSpeed" | "ChromaticAberrationCorr" | "ChromaticAberrationCorrParams" | "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" | "ColorMode" | "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" | "CompositionAdjust" | "CompositionAdjustRotation" | "CompositionAdjustX" | "CompositionAdjustY" | "CompressedImageSize" | "CompressionFactor" | "CompressionRatio" | "ContentIdentifier" | "ContinuousBracketing" | "ContinuousDrive" | "ContinuousModeDisplay" | "ContinuousModeLiveView" | "ContinuousShootingSpeed" | "ContinuousShotLimit" | "ContrastAuto" | "ContrastCurve" | "ContrastDetectAFArea" | "ContrastDetectAFInFocus" | "ContrastFaithful" | "ContrastHighlight" | "ContrastHighlightShadowAdj" | "ContrastLandscape" | "ContrastMode" | "ContrastNeutral" | "ContrastPortrait" | "ContrastSetting" | "ContrastShadow" | "ContrastStandard" | "ControlDialSet" | "ControllerBoardVersion" | "ControlMode" | "ControlRingResponse" | "ControlRingRotation" | "ConversionLens" | "Converter" | "CoringFilter" | "CorrelatedColorTemp" | "CPUFirmwareVersion" | "CPUVersions" | "CreativeStyle" | "CreativeStyleSetting" | "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" | "DeviceType" | "DialDirectionTvAv" | "DiffractionCompensation" | "DiffractionCorrection" | "DigitalFilter" | "DigitalGain" | "DigitalICE" | "DigitalLensOptimizer" | "DigitalLensOptimizerSetting" | "DigitalZoom" | "DirectoryIndex" | "DirectoryNumber" | "DispButton" | "DisplayAllAFPoints" | "DisplayAperture" | "DistortionControl" | "DistortionCorrection" | "DistortionCorrectionSetting" | "DistortionCorrectionValue" | "DistortionCorrParams" | "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" | "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" | "FaceInfoLength" | "FaceInfoOffset" | "FaceName" | "FacePosition" | "FacePositions" | "FacesDetected" | "FacesRecognized" | "FaceWidth" | "Fade" | "FEMicroadjustment" | "FileFormat" | "FileIndex" | "FileInfoVersion" | "FileNumber" | "FileNumberMemory" | "FileNumberSequence" | "FillFlashAutoReduction" | "FilmGrainEffect" | "FilmMode" | "FilmType" | "FilterEffect" | "FilterEffectAuto" | "FinderDisplayDuringExposure" | "FineSharpness" | "FineTuneOptCenterWeighted" | "FineTuneOptHighlightWeighted" | "FineTuneOptMatrixMetering" | "FineTuneOptSpotMetering" | "FirmwareDate" | "FirmwareName" | "FirmwareRevision" | "FirmwareVersion" | "FisheyeFilter" | "FlashAction" | "FlashActionExternal" | "FlashActivity" | "FlashBatteryLevel" | "FlashBias" | "FlashBits" | "FlashButtonFunction" | "FlashChargeLevel" | "FlashColorFilter" | "FlashCommanderMode" | "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" | "FlashShutterSpeed" | "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" | "FocusBracketStepSize" | "FocusContinuous" | "FocusDisplayAIServoAndMF" | "FocusDistanceRange" | "FocusFrameSize" | "FocusHoldButton" | "FocusInfoVersion" | "FocusingScreen" | "FocusLocation" | "FocusLocked" | "FocusMode" | "FocusModeSetting" | "FocusModeSwitch" | "FocusPeakingHighlightColor" | "FocusPeakingLevel" | "FocusPixel" | "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" | "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" | "GripBatteryState" | "GroupAreaAFIllumination" | "HDMIBitDepth" | "HDMIExternalRecorder" | "HDMIOutputRange" | "HDMIOutputResolution" | "HDR" | "HDREffect" | "HDRGain" | "HDRHeadroom" | "HDRImageType" | "HDRInfoVersion" | "HDRLevel" | "HDRSetting" | "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" | "ImageDataSize" | "ImageEditCount" | "ImageEditing" | "ImageEffects" | "ImageGeneration" | "ImageIDNumber" | "ImageOptimization" | "ImageProcessing" | "ImageProcessingVersion" | "ImageQuality" | "ImageReview" | "ImageReviewMonitorOffTime" | "ImageReviewTime" | "ImageRotated" | "ImageSizeRAW" | "ImageStabilization" | "ImageStabilizationSetting" | "ImageStyle" | "ImageTemperatureMax" | "ImageTemperatureMin" | "ImageTone" | "ImageUniqueID" | "InfoButtonWhenShooting" | "InfraredIlluminator" | "InitialAFPointAIServoAF" | "InitialAFPointInServo" | "InitialZoomLiveView" | "InitialZoomSetting" | "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" | "ISOSelected" | "ISOSelection" | "ISOSensitivityStep" | "ISOSetting" | "ISOSpeedExpansion" | "ISOSpeedIncrements" | "ISOSpeedRange" | "ISOStepSize" | "ISOValue" | "JPEGQuality" | "JPGCompression" | "JpgRecordedPixels" | "KeepExposure" | "KeystoneCompensation" | "KeystoneDirection" | "KeystoneValue" | "KodakImageHeight" | "KodakImageWidth" | "KodakInfoType" | "KodakMake" | "KodakMaker" | "KodakModel" | "KodakVersion" | "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" | "LensProperties" | "LensShading" | "LensShutterLock" | "LensSpec" | "LensSpecFeatures" | "LensTemperature" | "LensType" | "LensType2" | "LensType3" | "LensTypeMake" | "LensTypeModel" | "LensZoomPosition" | "LevelIndicator" | "LevelOrientation" | "LightCondition" | "LightingMode" | "LightSourceSpecial" | "LightSwitch" | "LightValueCenter" | "LightValuePeriphery" | "LimitAFAreaModeSelection" | "LinearityUpperMargin" | "LinkAEToAFPoint" | "LivePhotoVideoIndex" | "LiveView" | "LiveViewAF" | "LiveViewAFAreaMode" | "LiveViewAFMethod" | "LiveViewAFMode" | "LiveViewButtonOptions" | "LiveViewExposureSimulation" | "LiveViewFocusMode" | "LiveViewMetering" | "LiveViewMonitorOffTime" | "LiveViewShooting" | "LocalLocationName" | "Location" | "LocationInfoVersion" | "LocationName" | "LockMicrophoneButton" | "LongExposureNoiseReduction" | "LongExposureNRUsed" | "LowLightAF" | "LuminanceNoiseAmplitude" | "LuminanceNoiseReduction" | "LVShootingAreaDisplay" | "M16CVersion" | "Macro" | "MacroLED" | "MacroMode" | "MagicFilter" | "MagnifiedView" | "MainDialExposureComp" | "MakerNoteOffset" | "MakerNoteType" | "MakerNoteVersion" | "ManometerPressure" | "ManometerReading" | "ManualAFPointSelectPattern" | "ManualAFPointSelPattern" | "ManualFlash" | "ManualFlashOutput" | "ManualFlashStrength" | "ManualFocusDistance" | "ManualFocusPointIllumination" | "ManualFocusRingInAFMode" | "ManualTv" | "ManufactureDate" | "MasterGain" | "MatrixMetering" | "MaxAperture" | "MaxApertureAtMaxFocal" | "MaxApertureAtMinFocal" | "MaxContinuousRelease" | "MaxFaces" | "MaxFocalLength" | "MCCData" | "MCUVersion" | "MeasuredEV" | "MeasuredLV" | "MeasuredRGGB" | "MeasuredRGGBData" | "MechanicalShutterCount" | "MemoAudioQuality" | "MemoryCardConfiguration" | "MemoryCardNumber" | "MenuButtonDisplayPosition" | "MenuButtonReturn" | "MenuMonitorOffTime" | "MergedImages" | "MetaVersion" | "Metering" | "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" | "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" | "NumberOfFocusPoints" | "NumberOffsets" | "NumFaceElements" | "NumFacePositions" | "ObjectDistance" | "OISMode" | "OKButton" | "OlympusImageHeight" | "OlympusImageWidth" | "OneTouchWB" | "OpticalVR" | "OpticalZoom" | "OpticalZoomCode" | "OpticalZoomMode" | "OpticalZoomOn" | "OrderNumber" | "OrientationLinkedAF" | "OrientationLinkedAFPoint" | "OriginalDirectory" | "OriginalFileName" | "OriginalImageHeight" | "OriginalImageWidth" | "OtherInfo" | "OutputLUT" | "OwnerName" | "PaintingFilter" | "PanasonicDateTime" | "PanasonicExifVersion" | "PanasonicImageHeight" | "PanasonicImageWidth" | "PanoramaAngle" | "PanoramaCropBottom" | "PanoramaCropLeft" | "PanoramaCropRight" | "PanoramaCropTop" | "PanoramaDirection" | "PanoramaFrameHeight" | "PanoramaFrameWidth" | "PanoramaFullHeight" | "PanoramaFullWidth" | "PanoramaMode" | "PanoramaSize3D" | "PanoramaSourceHeight" | "PanoramaSourceWidth" | "PentaxImageSize" | "PentaxModelID" | "PentaxModelType" | "PentaxVersion" | "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" | "PictureModeTone" | "PictureProfile" | "PictureStyle" | "PictureStylePC" | "PictureStyleUserDef" | "Pitch" | "PitchAngle" | "PixelAspectRatio" | "PixelShiftInfo" | "PixelShiftResolution" | "PixelShiftShooting" | "PlaybackMenusTime" | "PlaybackMonitorOffTime" | "PlaybackZoom" | "PlayDisplay" | "POILevel" | "PopupFlash" | "PortraitImpressionBalance" | "PortraitRefiner" | "PostFocusMerging" | "PostReleaseBurstLength" | "PowerSource" | "PowerUpTime" | "PreAF" | "PreCaptureFrames" | "PreReleaseBurstLength" | "PresetWhiteBalance" | "PreviewButton" | "PreviewButtonPlusDials" | "PreviewImageBorders" | "PreviewImageHeight" | "PreviewImageLength" | "PreviewImageSize" | "PreviewImageStart" | "PreviewImageValid" | "PreviewImageWidth" | "PreviewQuality" | "PrimaryAFPoint" | "PrimarySlot" | "PrioritySetupShutterRelease" | "ProductionCode" | "ProgramISO" | "ProgramLine" | "ProgramShift" | "Quality" | "QuickControlDialInMeter" | "QuickShot" | "RangeFinder" | "RawAndJpgRecording" | "RawDataByteOrder" | "RawDataCFAPattern" | "RawDataLength" | "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" | "RearDisplay" | "RecordDisplay" | "RecordID" | "RecordingFormat" | "RecordingMode" | "RecordMode" | "RecordShutterRelease" | "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" | "SensorBottomBorder" | "SensorCalibration" | "SensorCleaning" | "SensorFullHeight" | "SensorFullWidth" | "SensorHeight" | "SensorID" | "SensorLeftBorder" | "SensorPixelSize" | "SensorRedLevel" | "SensorRightBorder" | "SensorSize" | "SensorTemperature" | "SensorTopBorder" | "SensorType" | "SensorWidth" | "Sequence" | "SequenceFileNumber" | "SequenceImageNumber" | "SequenceLength" | "SequenceNumber" | "SequenceShotInterval" | "SequentialShot" | "SerialNumber" | "SerialNumberFormat" | "SetButtonCrossKeysFunc" | "SetButtonWhenShooting" | "SetFunctionWhenShooting" | "ShadingCompensation" | "Shadow" | "ShadowCorrection" | "Shadows" | "ShadowTone" | "ShakeReduction" | "Sharpening" | "SharpnessAuto" | "SharpnessFactor" | "SharpnessFaithful" | "SharpnessFreqTable" | "SharpnessFrequency" | "SharpnessLandscape" | "SharpnessNeutral" | "SharpnessPortrait" | "SharpnessRange" | "SharpnessSetting" | "SharpnessStandard" | "SharpnessTable" | "ShootingInfoDisplay" | "ShootingInfoMonitorOffTime" | "ShootingModeSetting" | "ShortOwnerName" | "ShortReleaseTimeLag" | "ShotInfoVersion" | "ShotNumberSincePowerUp" | "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" | "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" | "SpotFocusPointX" | "SpotFocusPointY" | "SpotMeteringMode" | "SpotMeterLinkToAFPoint" | "SRActive" | "SRAWQuality" | "SRFocalLength" | "SRHalfPressTime" | "SRResult" | "StackedImage" | "StandbyMonitorOffTime" | "StandbyTimer" | "StartMovieShooting" | "StopsAboveBaseISO" | "StoreByOrientation" | "SubDialFrameAdvance" | "SubjectDetection" | "SubjectDetectionAreaMF" | "SubjectMotion" | "SubjectProgram" | "SubjectToDetect" | "SubSelector" | "SubSelectorAssignment" | "SubSelectorCenter" | "SubSelectorPlusDials" | "SuperimposedDisplay" | "SuperMacro" | "SvISOSetting" | "SweepPanoramaDirection" | "SweepPanoramaFieldOfView" | "SweepPanoramaSize" | "SwitchToRegisteredAFPoint" | "SyncReleaseMode" | "TargetAperture" | "TargetCompressionRatio" | "TargetDistanceSetting" | "TargetExposureTime" | "TargetImageType" | "Teleconverter" | "TextEncoding" | "TextStamp" | "ThumbnailFileName" | "ThumbnailHeight" | "ThumbnailImageValidArea" | "ThumbnailWidth" | "TiffMeteringImage" | "TiffMeteringImageHeight" | "TiffMeteringImageWidth" | "Time" | "TimeLapseShotNumber" | "TimerFunctionButton" | "TimerLength" | "TimerRecording" | "TimeSincePowerOn" | "TimeStamp" | "TimeZone" | "TimeZoneCity" | "TimeZoneCode" | "TimeZoneInfo" | "ToneComp" | "ToneCurve" | "ToneCurveMatching" | "ToneCurveTable" | "ToneLevel" | "ToningEffect" | "ToningEffectAuto" | "ToningSaturation" | "TotalZoom" | "TouchAE" | "ToyCameraFilter" | "Transform" | "TrashButtonFunction" | "TravelDay" | "TriggerMode" | "TvExposureTimeSetting" | "UniqueID" | "UnknownNumber" | "UnsharpMaskFineness" | "UnsharpMaskThreshold" | "UsableMeteringModes" | "UsableShootingModes" | "USBPowerDelivery" | "UserLabel" | "UserProfile" | "USMLensElectronicMF" | "ValidBits" | "VariableLowPassFilter" | "VariProgram" | "VerticalAFOnButton" | "VerticalFuncButton" | "VerticalFuncButtonPlusDials" | "VerticalMovieAFOnButton" | "VerticalMovieFuncButton" | "VerticalMultiSelector" | "VFDisplayIllumination" | "VibrationReduction" | "VideoBurstMode" | "VideoBurstResolution" | "VideoPreburst" | "ViewfinderDisplay" | "ViewfinderWarning" | "ViewfinderWarnings" | "ViewInfoDuringExposure" | "ViewingMode" | "VignetteControl" | "Vignetting" | "VignettingCorrection" | "VignettingCorrParams" | "VignettingCorrVersion" | "VoiceMemo" | "VRDOffset" | "VRInfoVersion" | "VRMode" | "VRType" | "WatercolorFilter" | "WBBlueLevel" | "WBBracketingSteps" | "WBBracketMode" | "WBBracketShotNumber" | "WBBracketValueAB" | "WBBracketValueGM" | "WBButtonPlaybackMode" | "WBGreenLevel" | "WBMediaImageSizeSetting" | "WBMode" | "WBRedLevel" | "WBShiftAB" | "WBShiftCreativeControl" | "WBShiftGM" | "WBShiftIntelligentAuto" | "WhiteBalanceAutoAdjustment" | "WhiteBalanceBias" | "WhiteBalanceBlue" | "WhiteBalanceBracket" | "WhiteBalanceBracketing" | "WhiteBalanceFineTune" | "WhiteBalanceMatching" | "WhiteBalanceMode" | "WhiteBalanceRed" | "WhiteBalanceSet" | "WhiteBalanceSetting" | "WhiteBalanceSetup" | "WhiteBalanceTable" | "WhiteBalanceTemperature" | "WhiteBoard" | "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" | "Balance" | "BitDepth" | "ChapterListTrackID" | "CleanApertureDimensions" | "ColorPrimaries" | "ColorProfiles" | "CompatibleBrands" | "CompressorID" | "CompressorName" | "ContentDescribes" | "CreationDate" | "CurrentTime" | "Duration" | "EncodedPixelsDimensions" | "FontName" | "GenBalance" | "GenFlags" | "GenGraphicsMode" | "GenMediaVersion" | "GenOpColor" | "GPSCoordinates" | "GraphicsMode" | "HandlerClass" | "HandlerDescription" | "HandlerType" | "HandlerVendorID" | "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" | "SelectionDuration" | "SelectionTime" | "SerialNumberHash" | "SourceImageHeight" | "SourceImageWidth" | "TextColor" | "TextFace" | "TextFont" | "TextSize" | "TimecodeTrack" | "TimeScale" | "TrackCreateDate" | "TrackDuration" | "TrackHeaderVersion" | "TrackID" | "TrackLayer" | "TrackModifyDate" | "TrackVolume" | "TransferCharacteristics" | "VendorID" | "VideoFrameRate" | "VideoFullRangeFlag" | "ChromaticAberrationParams" | "FujiLayout" | "GeometricDistortionParams" | "RAFCompression" | "RawExposureBias" | "RawImageCroppedSize" | "RawImageCropTopLeft" | "RawImageFullHeight" | "RawImageFullSize" | "RawImageFullWidth" | "VignettingParams" | "XTransLayout" | "AudioCodec" | "AudioSampleCount" | "AvgBytesPerSec" | "Encoding" | "FrameCount" | "MaxDataRate" | "NumChannels" | "SampleRate" | "SampleSize" | "StreamCount" | "VideoCodec" | "VideoFrameCount" | "About" | "AbsoluteAltitude" | "Album" | "AlreadyApplied" | "ApproximateFocusDistance" | "AsrClimaxDuration" | "AsrClimaxScene" | "AsrIsMacroRange" | "AsrSceneCondition" | "AsrSceneMode" | "AutoLateralCA" | "BandName" | "BlueHue" | "BlueSaturation" | "BurstID" | "BurstPrimary" | "CameraBurstID" | "CameraFacing" | "CameraModelID" | "CameraProfile" | "CameraProfileDigest" | "Cameras" | "CameraUnit" | "CamReverse" | "CaptureMode" | "CaptureSoftware" | "CatalogSets" | "CellGlobalID" | "CellR" | "CellTowerID" | "CentralTemperature" | "CentralWavelength" | "Changes" | "CircularGradientBasedCorrections" | "ColorClass" | "ColorLabel" | "Colorlabels" | "ColorNoiseReduction" | "ColorNoiseReductionDetail" | "ColorNoiseReductionSmoothness" | "Comment" | "Container" | "ContainerDirectory" | "ConvertToGrayscale" | "Country" | "CountryCode" | "CreationTime" | "Creator" | "CreatorAppID" | "CreatorContactInfo" | "CreatorOpenWithUIOptions" | "Creatortool" | "CreatorTool" | "CropAngle" | "CropBottom" | "CropConstrainToWarp" | "CropLeft" | "CroppedAreaImageHeightPixels" | "CroppedAreaImageWidthPixels" | "CroppedAreaLeftPixels" | "CroppedAreaTopPixels" | "CropRight" | "CropTop" | "DateAcquired" | "DateCreated" | "DateTime" | "DateTimeDigitized" | "DateUTC" | "DefringeGreenAmount" | "DefringeGreenHueHi" | "DefringeGreenHueLo" | "DefringePurpleAmount" | "DefringePurpleHueHi" | "DefringePurpleHueLo" | "Dehaze" | "DerivedFrom" | "Description" | "DisableAutoCreation" | "DocumentID" | "Face" | "FaceNum" | "FaceSelectedIndex" | "Far" | "Firmware" | "FlashCompensation" | "FlashManufacturer" | "FlashPixVersion" | "FlightPitchDegree" | "FlightRollDegree" | "FlightYawDegree" | "FocusAreaHeight" | "FocusAreaNum" | "FocusAreaWidth" | "FocusIsLensMoving" | "FocusPosX" | "FocusPosY" | "FocusState" | "Format" | "FullPanoHeightPixels" | "FullPanoWidthPixels" | "GimbalPitchDegree" | "GimbalReverse" | "GimbalRollDegree" | "GimbalYawDegree" | "GrainAmount" | "GreenHue" | "GreenSaturation" | "HasCrop" | "HasExtendedXMP" | "HasSettings" | "HdrPlusMakernote" | "HDRPMakerNote" | "HierarchicalSubject" | "History" | "HueAdjustmentAqua" | "HueAdjustmentBlue" | "HueAdjustmentGreen" | "HueAdjustmentMagenta" | "HueAdjustmentOrange" | "HueAdjustmentPurple" | "HueAdjustmentRed" | "HueAdjustmentYellow" | "ICCProfileName" | "ImageLength" | "ImageNumber" | "InitialViewHeadingDegrees" | "InitialViewPitchDegrees" | "InitialViewRollDegrees" | "InstanceID" | "InteroperabilityIndex" | "InteroperabilityVersion" | "IsBokehActive" | "IsHDRActive" | "IsNightModeActive" | "Label" | "LastKeywordXMP" | "LegacyIPTCDigest" | "LensFacing" | "LensManualDistortionAmount" | "LensManufacturer" | "LensProfileEnable" | "LensProfileName" | "LensProfileSetup" | "LocationAreaCode" | "Look" | "LuminanceAdjustmentAqua" | "LuminanceAdjustmentBlue" | "LuminanceAdjustmentGreen" | "LuminanceAdjustmentMagenta" | "LuminanceAdjustmentOrange" | "LuminanceAdjustmentPurple" | "LuminanceAdjustmentRed" | "LuminanceAdjustmentYellow" | "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" | "ProgramMode" | "ProjectionType" | "Rating" | "RatingPercent" | "RawFileName" | "RedHue" | "RedSaturation" | "RegionInfo" | "RegionInfoMP" | "RegistryID" | "RelativeAltitude" | "Rights" | "SaturationAdjustmentAqua" | "SaturationAdjustmentBlue" | "SaturationAdjustmentGreen" | "SaturationAdjustmentMagenta" | "SaturationAdjustmentOrange" | "SaturationAdjustmentPurple" | "SaturationAdjustmentRed" | "SaturationAdjustmentYellow" | "Scene" | "SceneDetectResultConfidences" | "SceneDetectResultIds" | "SelfData" | "ShadowTint" | "SharpenDetail" | "SharpenEdgeMasking" | "SharpenRadius" | "SourcePhotosCount" | "SpecialTypeID" | "SplitToningBalance" | "SplitToningHighlightHue" | "SplitToningHighlightSaturation" | "SplitToningShadowHue" | "SplitToningShadowSaturation" | "State" | "StitchingSoftware" | "StreamType" | "Subject" | "SubsecTime" | "Tag" | "Tagged" | "TagsList" | "Tint" | "Title" | "TlinearGain" | "ToneCurveBlue" | "ToneCurveGreen" | "ToneCurveName" | "ToneCurvePV2012Blue" | "ToneCurvePV2012Green" | "ToneCurvePV2012Red" | "ToneCurveRed" | "ToneMapStrength" | "UprightCenterMode" | "UprightCenterNormX" | "UprightCenterNormY" | "UprightFocalLength35mm" | "UprightFocalMode" | "UprightFourSegmentsCount" | "UprightPreview" | "UprightTransformCount" | "UprightVersion" | "UsePanoramaViewer" | "Versions" | "Vibrance" | "VignetteAmount" | "WavelengthFWHM" | "XMPMeta" | "XMPToolkit">;
|
|
5144
|
+
export declare const TagNames: StrEnum<"zone" | "AboveColor" | "Again" | "AtmosphericTemperature" | "AutoISOMax" | "AutoISOMin" | "AutoRotation" | "B5100" | "BelowColor" | "Bgain" | "BHighLight" | "BHL" | "Blk0" | "Blk1" | "BMean" | "Boff" | "BSd" | "BSD" | "BStrobe" | "CameraModel" | "CameraPartNumber" | "CameraSerialNumber" | "CameraSoftware" | "Case" | "CBal" | "Color" | "COLOR1" | "COLOR2" | "COLOR3" | "COLOR4" | "ColorTransform" | "Compass" | "ContTake" | "CreatorSoftware" | "DateTimeGenerated" | "DCTEncodeVersion" | "DeviceName" | "DiagonalFieldOfView" | "DigitalZoomOn" | "EmbeddedImage" | "EmbeddedImageHeight" | "EmbeddedImageType" | "EmbeddedImageWidth" | "Emissivity" | "EXP1" | "EXP2" | "EXP3" | "ExposRatio" | "Exposure" | "ExposureType" | "FieldOfView" | "FilterModel" | "FilterPartNumber" | "FilterSerialNumber" | "FinalRatio" | "FlashTime" | "FMean" | "Fnumber" | "FocusDistance" | "FocusPos" | "FocusStepCount" | "FrameRate" | "Gain" | "GBgain" | "GBoff" | "GHighLight" | "GHL" | "GMean" | "GPSTrack" | "GPSTrackRef" | "GPSValid" | "GRgain" | "GRoff" | "GSd" | "GSD" | "HDRGainCurve" | "HDRGainCurveSize" | "ID" | "IRWindowTemperature" | "IRWindowTransmission" | "Isotherm1Color" | "Isotherm2Color" | "JPEG1" | "LensPartNumber" | "LensProjection" | "LightS" | "Mean" | "Meas1Label" | "Meas1Params" | "Meas1Type" | "Meas2Label" | "Meas2Params" | "Meas2Type" | "MediaUniqueID" | "MetadataVersion" | "MotorPos" | "Offset" | "OffsetX" | "OffsetY" | "OverflowColor" | "Palette" | "PaletteColors" | "PaletteFileName" | "PaletteMethod" | "PaletteName" | "PaletteStretch" | "Param0" | "PhotoResolution" | "PicLen" | "Protect" | "Protune" | "R5100" | "Rate" | "RawThermalImage" | "RawThermalImageHeight" | "RawThermalImageType" | "RawThermalImageWidth" | "RawValueMedian" | "RawValueRange" | "RawValueRangeMax" | "RawValueRangeMin" | "Real2IR" | "ReflectedApparentTemperature" | "RelativeHumidity" | "Resolution" | "REV" | "Rgain" | "RHighLight" | "RHL" | "RMean" | "Roff" | "RSd" | "RSD" | "RStrobe" | "S0" | "SpotMeter" | "StrobeTime" | "T0" | "TagB" | "TagQ" | "TagR" | "TagS" | "ThmLen" | "UnderflowColor" | "Version" | "YLevel" | "YTarget" | "Zoom" | "ZoomPos" | "AdvancedSceneMode" | "Aperture" | "AutoFocus" | "AvgBitrate" | "BlueBalance" | "CFAPattern" | "CircleOfConfusion" | "ConditionalFEC" | "ContrastDetectAF" | "DigitalCreationDateTime" | "DOF" | "DriveMode" | "ExtenderStatus" | "FlashType" | "FocalLength35efl" | "FOV" | "GPSDateTime" | "GPSPosition" | "HyperfocalDistance" | "ImageSize" | "Lens" | "Lens35efl" | "LensID" | "LightValue" | "Megapixels" | "OriginalDecisionData" | "PeakSpectralSensitivity" | "PhaseDetectAF" | "PreviewImage" | "RedBalance" | "RedEyeReduction" | "RicohPitch" | "RicohRoll" | "Rotation" | "RunTimeSincePowerUp" | "ScaleFactor35efl" | "ShootingMode" | "ShutterCurtainHack" | "ShutterSpeed" | "SubSecCreateDate" | "SubSecDateTimeOriginal" | "SubSecMediaCreateDate" | "SubSecModifyDate" | "Acceleration" | "AntiAliasStrength" | "ApertureValue" | "Artist" | "AsShotNeutral" | "BaselineExposure" | "BlackLevel" | "BlackLevelBlue" | "BlackLevelGreen" | "BlackLevelRed" | "BlackLevelRepeatDim" | "BrightnessValue" | "CameraElevationAngle" | "CFAPlaneColor" | "CFARepeatPatternDim" | "ChromaticAberrationCorrection" | "ColorSpace" | "CompositeImage" | "CompressedBitsPerPixel" | "Contrast" | "Copyright" | "CreateDate" | "CustomRendered" | "DateTimeOriginal" | "DefaultCropOrigin" | "DefaultCropSize" | "DeviceSettingDescription" | "DigitalZoomRatio" | "DNGBackwardVersion" | "DNGVersion" | "DocumentName" | "ExifImageHeight" | "ExifImageWidth" | "ExposureIndex" | "ExposureMode" | "ExposureProgram" | "ExposureTime" | "FileSource" | "Flash" | "FlashEnergy" | "FNumber" | "FocalLength" | "FocalLengthIn35mmFormat" | "FocalPlaneResolutionUnit" | "FocalPlaneXResolution" | "FocalPlaneYResolution" | "GainControl" | "Gamma" | "GPSAltitude" | "GPSAltitudeRef" | "GPSAreaInformation" | "GPSDateStamp" | "GPSDestBearing" | "GPSDestBearingRef" | "GPSDestDistance" | "GPSDestDistanceRef" | "GPSDestLatitude" | "GPSDestLatitudeRef" | "GPSDestLongitude" | "GPSDestLongitudeRef" | "GPSDifferential" | "GPSDOP" | "GPSHPositioningError" | "GPSImgDirection" | "GPSImgDirectionRef" | "GPSLatitude" | "GPSLatitudeRef" | "GPSLongitude" | "GPSLongitudeRef" | "GPSMapDatum" | "GPSMeasureMode" | "GPSProcessingMethod" | "GPSSatellites" | "GPSSpeed" | "GPSSpeedRef" | "GPSStatus" | "GPSTimeStamp" | "GPSVersionID" | "HighISOMultiplierBlue" | "HighISOMultiplierGreen" | "HighISOMultiplierRed" | "HostComputer" | "ImageDescription" | "ImageTitle" | "InteropIndex" | "InteropVersion" | "ISO" | "ISOSpeed" | "JpgFromRaw" | "JpgFromRawLength" | "JpgFromRawStart" | "LensInfo" | "LensMake" | "LensModel" | "LensSerialNumber" | "LightSource" | "LinearityLimitBlue" | "LinearityLimitGreen" | "LinearityLimitRed" | "Make" | "MakerNoteSamsung1a" | "MakerNoteUnknownBinary" | "MakerNoteUnknownText" | "MaxApertureValue" | "MeteringMode" | "Model" | "Model2" | "ModifyDate" | "Noise" | "NoiseProfile" | "NoiseReductionParams" | "OffsetSchema" | "OffsetTime" | "OffsetTimeDigitized" | "OffsetTimeOriginal" | "Orientation" | "OtherImage" | "OtherImageLength" | "OtherImageStart" | "Padding" | "PageName" | "PanasonicRawVersion" | "Photographer" | "PhotometricInterpretation" | "PlanarConfiguration" | "Pressure" | "PreviewDateTime" | "PreviewTIFF" | "PrimaryChromaticities" | "ProcessingSoftware" | "RawDataOffset" | "RawDataUniqueID" | "RawFormat" | "RawImageSegmentation" | "RecommendedExposureIndex" | "ReferenceBlackWhite" | "RelatedImageFileFormat" | "RelatedImageHeight" | "RelatedImageWidth" | "RelatedSoundFile" | "ResolutionUnit" | "RowsPerStrip" | "SamplesPerPixel" | "Saturation" | "SceneCaptureType" | "SceneType" | "SensingMethod" | "SensitivityType" | "Sharpness" | "ShutterSpeedValue" | "Software" | "SonyRawFileType" | "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" | "WaterDepth" | "WhiteBalance" | "WhiteLevel" | "WhitePoint" | "XiaomiModel" | "XPAuthor" | "XPComment" | "XPKeywords" | "XPSubject" | "XPTitle" | "XResolution" | "YCbCrCoefficients" | "YCbCrPositioning" | "YResolution" | "Error" | "ExifToolVersion" | "SourceFile" | "Warning" | "tz" | "tzSource" | "zoneSource" | "errors" | "warnings" | "BitsPerSample" | "BMPVersion" | "ColorComponents" | "CurrentIPTCDigest" | "Directory" | "EncodingProcess" | "ExifByteOrder" | "FileAccessDate" | "FileCreateDate" | "FileInodeChangeDate" | "FileModifyDate" | "FileName" | "FilePermissions" | "FileSize" | "FileType" | "FileTypeExtension" | "ImageDataMD5" | "ImageHeight" | "ImageWidth" | "MIMEType" | "NumColors" | "NumImportantColors" | "PixelsPerMeterX" | "PixelsPerMeterY" | "Planes" | "YCbCrSubSampling" | "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" | "DateSent" | "DateTimeCreated" | "Destination" | "DigitalCreationDate" | "DigitalCreationTime" | "EnvelopeNumber" | "EnvelopePriority" | "EnvelopeRecordVersion" | "FileVersion" | "Keywords" | "ServiceIdentifier" | "TimeCreated" | "TimeSent" | "ImageDataHash" | "JFIFVersion" | "AIScene" | "FilterId" | "Hdr" | "Mirror" | "OpMode" | "ZoomMultiple" | "DependentImage1EntryNumber" | "DependentImage2EntryNumber" | "ImageUIDList" | "MPFVersion" | "MPImageFlags" | "MPImageFormat" | "MPImageLength" | "MPImageStart" | "MPImageType" | "NumberOfImages" | "TotalFrames" | "Collections" | "KeywordInfo" | "HierarchicalKeywords" | "AccelerationTracking" | "AccelerationVector" | "Accelerometer" | "AccelerometerX" | "AccelerometerY" | "AccelerometerZ" | "AccessorySerialNumber" | "AccessoryType" | "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" | "AFAreaYPosition" | "AFAreaZoneSize" | "AFAssist" | "AFAssistBeam" | "AFAssistLamp" | "AFButtonPressed" | "AFConfidence" | "AFConfigTool" | "AFCoordinatesAvailable" | "AFDebugInfo" | "AFDefocus" | "AFDetectionMethod" | "AFDuringLiveView" | "AFFineTune" | "AFFineTuneAdj" | "AFFineTuneAdjTele" | "AFFineTuneIndex" | "AFIlluminator" | "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" | "AmbientTemperature" | "AmbientTemperatureFahrenheit" | "AntiFlicker" | "ApertureLock" | "ApertureRange" | "ApertureRingUse" | "ApertureSetting" | "ApplySettingsToLiveView" | "ApplyShootingMeteringMode" | "ApproximateFNumber" | "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" | "AutoFP" | "AutoISO" | "AutoISOMinShutterSpeed" | "AutoLightingOptimizer" | "AutoPortraitFramed" | "AutoRotate" | "AuxiliaryLens" | "AvApertureSetting" | "AverageBlackLevel" | "AverageLV" | "AvSettingWithoutLens" | "BabyAge" | "BabyName" | "Barcode" | "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" | "BodyBatteryState" | "BodyFirmware" | "BodyFirmwareVersion" | "BodySerialNumber" | "BracketIncrement" | "BracketMode" | "BracketProgram" | "BracketSequence" | "BracketSet" | "BracketSettings" | "BracketShotNumber" | "BracketStep" | "BracketValue" | "Brightness" | "BuildNumber" | "BulbDuration" | "BurstGroupID" | "BurstMode" | "BurstShot" | "BurstSpeed" | "BurstUUID" | "ButtonFunctionControlOff" | "BWFilter" | "BWMode" | "CAFGridSize" | "CAFPointsInFocus" | "CAFPointsSelected" | "Calibration" | "CameraDateTime" | "CameraID" | "CameraISO" | "CameraOrientation" | "CameraParameters" | "CameraPictureStyle" | "CameraPitch" | "CameraRoll" | "CameraSettingsVersion" | "CameraType" | "CameraYaw" | "CanonExposureMode" | "CanonFileDescription" | "CanonFileLength" | "CanonFirmwareVersion" | "CanonFlashMode" | "CanonImageSize" | "CanonImageType" | "CanonModelID" | "CardShutterLock" | "Categories" | "CCDBoardVersion" | "CCDScanMode" | "CCDSensitivity" | "CCDVersion" | "CenterAFArea" | "CenterFocusPoint" | "CenterWeightedAreaSize" | "CHModeShootingSpeed" | "ChromaticAberrationCorr" | "ChromaticAberrationCorrParams" | "ChromaticAberrationSetting" | "ChrominanceNoiseReduction" | "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" | "ColorMode" | "ColorProfileSettings" | "ColorTempAsShot" | "ColorTempAuto" | "ColorTempCloudy" | "ColorTempCustom" | "ColorTempDaylight" | "ColorTemperature" | "ColorTemperatureAuto" | "ColorTemperatureCustom" | "ColorTemperatureSet" | "ColorTemperatureSetting" | "ColorTempFlash" | "ColorTempFluorescent" | "ColorTempKelvin" | "ColorTempMeasured" | "ColorTempShade" | "ColorTempTungsten" | "ColorTint" | "ColorTone" | "ColorToneAuto" | "ColorToneLandscape" | "ColorToneNeutral" | "ColorTonePortrait" | "ColorToneStandard" | "CommandDials" | "CommandDialsApertureSetting" | "CommandDialsChangeMainSub" | "CommandDialsMenuAndPlayback" | "CommandDialsReverseRotation" | "CommanderChannel" | "CommanderGroupAManualOutput" | "CommanderGroupAMode" | "CommanderGroupBManualOutput" | "CommanderGroupBMode" | "CommanderInternalFlash" | "CommanderInternalManualOutput" | "CommanderInternalTTLComp" | "CommanderInternalTTLCompBuiltin" | "CommanderInternalTTLCompGroupA" | "CommanderInternalTTLCompGroupB" | "ComponentBitDepth" | "ComponentVersion" | "CompositionAdjust" | "CompositionAdjustRotation" | "CompositionAdjustX" | "CompositionAdjustY" | "CompressedImageSize" | "CompressionFactor" | "CompressionRatio" | "ContentIdentifier" | "ContinuousBracketing" | "ContinuousDrive" | "ContinuousModeDisplay" | "ContinuousModeLiveView" | "ContinuousShootingSpeed" | "ContinuousShotLimit" | "ContrastAuto" | "ContrastCurve" | "ContrastDetectAFArea" | "ContrastDetectAFInFocus" | "ContrastFaithful" | "ContrastHighlight" | "ContrastHighlightShadowAdj" | "ContrastLandscape" | "ContrastMode" | "ContrastNeutral" | "ContrastPortrait" | "ContrastSetting" | "ContrastShadow" | "ContrastStandard" | "ControlDialSet" | "ControllerBoardVersion" | "ControlMode" | "ControlRingResponse" | "ControlRingRotation" | "ConversionLens" | "Converter" | "CoringFilter" | "CorrelatedColorTemp" | "CPUFirmwareVersion" | "CPUVersions" | "CreativeStyle" | "CreativeStyleSetting" | "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" | "DeviceType" | "DialDirectionTvAv" | "DiffractionCompensation" | "DiffractionCorrection" | "DigitalFilter" | "DigitalGain" | "DigitalICE" | "DigitalZoom" | "DirectoryIndex" | "DirectoryNumber" | "DispButton" | "DisplayAllAFPoints" | "DisplayAperture" | "DistortionControl" | "DistortionCorrection" | "DistortionCorrectionSetting" | "DistortionCorrectionValue" | "DistortionCorrParams" | "DistortionCorrParamsNumber" | "DistortionCorrParamsPresent" | "DriveModeSetting" | "DriveSpeed" | "DSPFirmwareVersion" | "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" | "ExposureTuning" | "ExposureWarning" | "EXRAuto" | "EXRMode" | "ExtendedMenuBanks" | "ExtendedShutterSpeeds" | "ExtendedWBDetect" | "Extender" | "ExtenderFirmwareVersion" | "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" | "FaceInfoLength" | "FaceInfoOffset" | "FaceName" | "FacePosition" | "FacePositions" | "FacesDetected" | "FacesRecognized" | "FaceWidth" | "Fade" | "FEMicroadjustment" | "FileFormat" | "FileIndex" | "FileInfoVersion" | "FileNumber" | "FileNumberMemory" | "FileNumberSequence" | "FillFlashAutoReduction" | "FilmGrainEffect" | "FilmMode" | "FilmType" | "FilterEffect" | "FilterEffectAuto" | "FinderDisplayDuringExposure" | "FineSharpness" | "FineTuneOptCenterWeighted" | "FineTuneOptHighlightWeighted" | "FineTuneOptMatrixMetering" | "FineTuneOptSpotMetering" | "FirmwareDate" | "FirmwareName" | "FirmwareRevision" | "FirmwareVersion" | "FisheyeFilter" | "FlashAction" | "FlashActionExternal" | "FlashActivity" | "FlashBatteryLevel" | "FlashBias" | "FlashBits" | "FlashButtonFunction" | "FlashChargeLevel" | "FlashColorFilter" | "FlashCommanderMode" | "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" | "FlashShutterSpeed" | "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" | "FocusBracketStepSize" | "FocusContinuous" | "FocusDisplayAIServoAndMF" | "FocusDistanceRange" | "FocusFrameSize" | "FocusHoldButton" | "FocusInfoVersion" | "FocusingScreen" | "FocusLocation" | "FocusLocked" | "FocusMode" | "FocusModeSetting" | "FocusModeSwitch" | "FocusPeakingHighlightColor" | "FocusPeakingLevel" | "FocusPixel" | "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" | "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" | "GripBatteryState" | "GroupAreaAFIllumination" | "HDMIBitDepth" | "HDMIExternalRecorder" | "HDMIOutputRange" | "HDMIOutputResolution" | "HDR" | "HDREffect" | "HDRGain" | "HDRHeadroom" | "HDRImageType" | "HDRInfoVersion" | "HDRLevel" | "HDRSetting" | "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" | "ImageDataSize" | "ImageEditCount" | "ImageEditing" | "ImageEffects" | "ImageGeneration" | "ImageIDNumber" | "ImageOptimization" | "ImageProcessing" | "ImageProcessingVersion" | "ImageQuality" | "ImageReview" | "ImageReviewMonitorOffTime" | "ImageReviewTime" | "ImageRotated" | "ImageSizeRAW" | "ImageStabilization" | "ImageStabilizationSetting" | "ImageStyle" | "ImageTemperatureMax" | "ImageTemperatureMin" | "ImageTone" | "ImageUniqueID" | "InfoButtonWhenShooting" | "InfraredIlluminator" | "InitialAFPointAIServoAF" | "InitialAFPointInServo" | "InitialZoomLiveView" | "InitialZoomSetting" | "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" | "ISOSelected" | "ISOSelection" | "ISOSensitivityStep" | "ISOSetting" | "ISOSpeedExpansion" | "ISOSpeedIncrements" | "ISOSpeedRange" | "ISOStepSize" | "ISOValue" | "JPEGQuality" | "JPGCompression" | "JpgRecordedPixels" | "KeepExposure" | "KeystoneCompensation" | "KeystoneDirection" | "KeystoneValue" | "KodakImageHeight" | "KodakImageWidth" | "KodakInfoType" | "KodakMake" | "KodakMaker" | "KodakModel" | "KodakVersion" | "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" | "LensProperties" | "LensShading" | "LensShutterLock" | "LensSpec" | "LensSpecFeatures" | "LensTemperature" | "LensType" | "LensType2" | "LensType3" | "LensTypeMake" | "LensTypeModel" | "LensZoomPosition" | "LevelIndicator" | "LevelOrientation" | "LightCondition" | "LightingMode" | "LightSourceSpecial" | "LightSwitch" | "LightValueCenter" | "LightValuePeriphery" | "LimitAFAreaModeSelection" | "LinearityUpperMargin" | "LinkAEToAFPoint" | "LivePhotoVideoIndex" | "LiveView" | "LiveViewAF" | "LiveViewAFAreaMode" | "LiveViewAFMethod" | "LiveViewAFMode" | "LiveViewButtonOptions" | "LiveViewExposureSimulation" | "LiveViewFocusMode" | "LiveViewMetering" | "LiveViewMonitorOffTime" | "LiveViewShooting" | "LocalLocationName" | "Location" | "LocationInfoVersion" | "LocationName" | "LockMicrophoneButton" | "LongExposureNoiseReduction" | "LongExposureNRUsed" | "LowLightAF" | "LuminanceNoiseAmplitude" | "LuminanceNoiseReduction" | "LVShootingAreaDisplay" | "M16CVersion" | "Macro" | "MacroLED" | "MacroMode" | "MagicFilter" | "MagnifiedView" | "MainDialExposureComp" | "MakerNoteOffset" | "MakerNoteType" | "MakerNoteVersion" | "ManometerPressure" | "ManometerReading" | "ManualAFPointSelectPattern" | "ManualAFPointSelPattern" | "ManualFlash" | "ManualFlashOutput" | "ManualFlashStrength" | "ManualFocusDistance" | "ManualFocusPointIllumination" | "ManualFocusRingInAFMode" | "ManualTv" | "ManufactureDate" | "MasterGain" | "MatrixMetering" | "MaxAperture" | "MaxApertureAtMaxFocal" | "MaxApertureAtMinFocal" | "MaxContinuousRelease" | "MaxFaces" | "MaxFocalLength" | "MCCData" | "MCUVersion" | "MeasuredEV" | "MeasuredLV" | "MeasuredRGGB" | "MeasuredRGGBData" | "MechanicalShutterCount" | "MemoAudioQuality" | "MemoryCardConfiguration" | "MemoryCardNumber" | "MenuButtonDisplayPosition" | "MenuButtonReturn" | "MenuMonitorOffTime" | "MergedImages" | "MetaVersion" | "Metering" | "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" | "NumberOfFocusPoints" | "NumberOffsets" | "NumCAFPoints" | "NumFaceElements" | "NumFacePositions" | "ObjectDistance" | "OISMode" | "OKButton" | "OlympusImageHeight" | "OlympusImageWidth" | "OneTouchWB" | "OpticalVR" | "OpticalZoom" | "OpticalZoomCode" | "OpticalZoomMode" | "OpticalZoomOn" | "OrderNumber" | "OrientationLinkedAF" | "OrientationLinkedAFPoint" | "OriginalDirectory" | "OriginalFileName" | "OriginalImageHeight" | "OriginalImageWidth" | "OtherInfo" | "OutputLUT" | "OwnerName" | "PaintingFilter" | "PanasonicDateTime" | "PanasonicExifVersion" | "PanasonicImageHeight" | "PanasonicImageWidth" | "PanoramaAngle" | "PanoramaCropBottom" | "PanoramaCropLeft" | "PanoramaCropRight" | "PanoramaCropTop" | "PanoramaDirection" | "PanoramaFrameHeight" | "PanoramaFrameWidth" | "PanoramaFullHeight" | "PanoramaFullWidth" | "PanoramaMode" | "PanoramaSize3D" | "PanoramaSourceHeight" | "PanoramaSourceWidth" | "PentaxImageSize" | "PentaxModelID" | "PentaxModelType" | "PentaxVersion" | "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" | "PictureModeTone" | "PictureProfile" | "PictureStyle" | "PictureStylePC" | "PictureStyleUserDef" | "Pitch" | "PitchAngle" | "PixelAspectRatio" | "PixelShiftInfo" | "PixelShiftResolution" | "PixelShiftShooting" | "PlaybackMenusTime" | "PlaybackMonitorOffTime" | "PlaybackZoom" | "PlayDisplay" | "POILevel" | "PopupFlash" | "PortraitImpressionBalance" | "PortraitRefiner" | "PostFocusMerging" | "PostReleaseBurstLength" | "PowerSource" | "PowerUpTime" | "PreAF" | "PreCaptureFrames" | "PreReleaseBurstLength" | "PresetWhiteBalance" | "PreviewButton" | "PreviewButtonPlusDials" | "PreviewImageBorders" | "PreviewImageHeight" | "PreviewImageLength" | "PreviewImageSize" | "PreviewImageStart" | "PreviewImageValid" | "PreviewImageWidth" | "PreviewQuality" | "PrimaryAFPoint" | "PrimarySlot" | "PrioritySetupShutterRelease" | "ProductionCode" | "ProgramISO" | "ProgramLine" | "ProgramShift" | "Quality" | "QuickControlDialInMeter" | "QuickShot" | "RangeFinder" | "RawAndJpgRecording" | "RawDataByteOrder" | "RawDataCFAPattern" | "RawDataLength" | "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" | "RearDisplay" | "RecordDisplay" | "RecordID" | "RecordingFormat" | "RecordingMode" | "RecordMode" | "RecordShutterRelease" | "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" | "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" | "SensorBottomBorder" | "SensorCalibration" | "SensorCleaning" | "SensorFullHeight" | "SensorFullWidth" | "SensorHeight" | "SensorID" | "SensorLeftBorder" | "SensorPixelSize" | "SensorRedLevel" | "SensorRightBorder" | "SensorSize" | "SensorTemperature" | "SensorTopBorder" | "SensorType" | "SensorWidth" | "Sequence" | "SequenceFileNumber" | "SequenceImageNumber" | "SequenceLength" | "SequenceNumber" | "SequenceShotInterval" | "SequentialShot" | "SerialNumber" | "SerialNumberFormat" | "SetButtonCrossKeysFunc" | "SetButtonWhenShooting" | "SetFunctionWhenShooting" | "ShadingCompensation" | "Shadow" | "ShadowCorrection" | "Shadows" | "ShadowTone" | "ShakeReduction" | "Sharpening" | "SharpnessAuto" | "SharpnessFactor" | "SharpnessFaithful" | "SharpnessFreqTable" | "SharpnessFrequency" | "SharpnessLandscape" | "SharpnessNeutral" | "SharpnessPortrait" | "SharpnessRange" | "SharpnessSetting" | "SharpnessStandard" | "SharpnessTable" | "ShootingInfoDisplay" | "ShootingInfoMonitorOffTime" | "ShootingModeSetting" | "ShortOwnerName" | "ShortReleaseTimeLag" | "ShotInfoVersion" | "ShotNumberSincePowerUp" | "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" | "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" | "SpotFocusPointX" | "SpotFocusPointY" | "SpotMeteringMode" | "SpotMeterLinkToAFPoint" | "SRActive" | "SRAWQuality" | "SRFocalLength" | "SRHalfPressTime" | "SRResult" | "StackedImage" | "StandbyMonitorOffTime" | "StandbyTimer" | "StartMovieShooting" | "StopsAboveBaseISO" | "StoreByOrientation" | "SubDialFrameAdvance" | "SubjectDetection" | "SubjectDetectionAreaMF" | "SubjectMotion" | "SubjectProgram" | "SubjectToDetect" | "SubSelector" | "SubSelectorAssignment" | "SubSelectorCenter" | "SubSelectorPlusDials" | "SuperimposedDisplay" | "SuperMacro" | "SvISOSetting" | "SweepPanoramaDirection" | "SweepPanoramaFieldOfView" | "SweepPanoramaSize" | "SwitchToRegisteredAFPoint" | "SyncReleaseMode" | "TargetAperture" | "TargetCompressionRatio" | "TargetDistanceSetting" | "TargetExposureTime" | "TargetImageType" | "Teleconverter" | "TextEncoding" | "TextStamp" | "ThumbnailFileName" | "ThumbnailHeight" | "ThumbnailImageValidArea" | "ThumbnailWidth" | "TiffMeteringImage" | "TiffMeteringImageHeight" | "TiffMeteringImageWidth" | "Time" | "TimeLapseShotNumber" | "TimerFunctionButton" | "TimerLength" | "TimerRecording" | "TimeSincePowerOn" | "TimeStamp" | "TimeZone" | "TimeZoneCity" | "TimeZoneCode" | "TimeZoneInfo" | "ToneComp" | "ToneCurve" | "ToneCurveMatching" | "ToneCurveTable" | "ToneLevel" | "ToningEffect" | "ToningEffectAuto" | "ToningSaturation" | "TotalZoom" | "TouchAE" | "ToyCameraFilter" | "Transform" | "TrashButtonFunction" | "TravelDay" | "TriggerMode" | "TvExposureTimeSetting" | "UniqueID" | "UnknownNumber" | "UnsharpMaskFineness" | "UnsharpMaskThreshold" | "UsableMeteringModes" | "UsableShootingModes" | "USBPowerDelivery" | "UserLabel" | "UserProfile" | "USMLensElectronicMF" | "ValidBits" | "VariableLowPassFilter" | "VariProgram" | "VerticalAFOnButton" | "VerticalFuncButton" | "VerticalFuncButtonPlusDials" | "VerticalMovieAFOnButton" | "VerticalMovieFuncButton" | "VerticalMultiSelector" | "VFDisplayIllumination" | "VibrationReduction" | "VideoBurstMode" | "VideoBurstResolution" | "VideoPreburst" | "ViewfinderDisplay" | "ViewfinderWarning" | "ViewfinderWarnings" | "ViewInfoDuringExposure" | "ViewingMode" | "VignetteControl" | "Vignetting" | "VignettingCorrection" | "VignettingCorrParams" | "VignettingCorrVersion" | "VoiceMemo" | "VRDOffset" | "VRInfoVersion" | "VRMode" | "VRType" | "WatercolorFilter" | "WBBlueLevel" | "WBBracketingSteps" | "WBBracketMode" | "WBBracketShotNumber" | "WBBracketValueAB" | "WBBracketValueGM" | "WBButtonPlaybackMode" | "WBGreenLevel" | "WBMediaImageSizeSetting" | "WBMode" | "WBRedLevel" | "WBShiftAB" | "WBShiftCreativeControl" | "WBShiftGM" | "WBShiftIntelligentAuto" | "WhiteBalanceAutoAdjustment" | "WhiteBalanceBias" | "WhiteBalanceBlue" | "WhiteBalanceBracket" | "WhiteBalanceBracketing" | "WhiteBalanceFineTune" | "WhiteBalanceMatching" | "WhiteBalanceMode" | "WhiteBalanceRed" | "WhiteBalanceSet" | "WhiteBalanceSetting" | "WhiteBalanceSetup" | "WhiteBalanceTable" | "WhiteBalanceTemperature" | "WhiteBoard" | "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" | "Balance" | "BitDepth" | "ChapterListTrackID" | "CleanApertureDimensions" | "ColorPrimaries" | "ColorProfiles" | "CompatibleBrands" | "CompressorID" | "CompressorName" | "ContentDescribes" | "CreationDate" | "CurrentTime" | "Duration" | "EncodedPixelsDimensions" | "FontName" | "GenBalance" | "GenFlags" | "GenGraphicsMode" | "GenMediaVersion" | "GenOpColor" | "GPSCoordinates" | "GraphicsMode" | "HandlerClass" | "HandlerDescription" | "HandlerType" | "HandlerVendorID" | "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" | "SelectionDuration" | "SelectionTime" | "SerialNumberHash" | "SourceImageHeight" | "SourceImageWidth" | "TextColor" | "TextFace" | "TextFont" | "TextSize" | "TimecodeTrack" | "TimeScale" | "TrackCreateDate" | "TrackDuration" | "TrackHeaderVersion" | "TrackID" | "TrackLayer" | "TrackModifyDate" | "TrackVolume" | "TransferCharacteristics" | "VendorID" | "VideoFrameRate" | "VideoFullRangeFlag" | "ChromaticAberrationParams" | "FujiLayout" | "GeometricDistortionParams" | "RAFCompression" | "RawExposureBias" | "RawImageCroppedSize" | "RawImageCropTopLeft" | "RawImageFullHeight" | "RawImageFullSize" | "RawImageFullWidth" | "VignettingParams" | "XTransLayout" | "AudioCodec" | "AudioSampleCount" | "AvgBytesPerSec" | "Encoding" | "FrameCount" | "MaxDataRate" | "NumChannels" | "SampleRate" | "SampleSize" | "StreamCount" | "VideoCodec" | "VideoFrameCount" | "About" | "AbsoluteAltitude" | "Album" | "AlreadyApplied" | "ApproximateFocusDistance" | "AsrClimaxDuration" | "AsrClimaxScene" | "AsrIsMacroRange" | "AsrSceneCondition" | "AsrSceneMode" | "AutoLateralCA" | "BandName" | "BlueHue" | "BlueSaturation" | "BurstID" | "BurstPrimary" | "CameraBurstID" | "CameraFacing" | "CameraModelID" | "CameraProfile" | "CameraProfileDigest" | "Cameras" | "CameraUnit" | "CamReverse" | "CaptureMode" | "CaptureSoftware" | "CatalogSets" | "CellGlobalID" | "CellR" | "CellTowerID" | "CentralTemperature" | "CentralWavelength" | "Changes" | "CircularGradientBasedCorrections" | "ColorClass" | "ColorLabel" | "Colorlabels" | "ColorNoiseReduction" | "ColorNoiseReductionDetail" | "ColorNoiseReductionSmoothness" | "Comment" | "Container" | "ContainerDirectory" | "ConvertToGrayscale" | "Country" | "CountryCode" | "CreationTime" | "Creator" | "CreatorAppID" | "CreatorContactInfo" | "CreatorOpenWithUIOptions" | "Creatortool" | "CreatorTool" | "CropAngle" | "CropBottom" | "CropConstrainToWarp" | "CropLeft" | "CroppedAreaImageHeightPixels" | "CroppedAreaImageWidthPixels" | "CroppedAreaLeftPixels" | "CroppedAreaTopPixels" | "CropRight" | "CropTop" | "DateAcquired" | "DateCreated" | "DateTime" | "DateTimeDigitized" | "DateUTC" | "DefringeGreenAmount" | "DefringeGreenHueHi" | "DefringeGreenHueLo" | "DefringePurpleAmount" | "DefringePurpleHueHi" | "DefringePurpleHueLo" | "Dehaze" | "DerivedFrom" | "Description" | "DisableAutoCreation" | "DocumentID" | "Face" | "FaceNum" | "FaceSelectedIndex" | "Far" | "Firmware" | "FlashCompensation" | "FlashManufacturer" | "FlashPixVersion" | "FlightPitchDegree" | "FlightRollDegree" | "FlightYawDegree" | "FocusAreaHeight" | "FocusAreaNum" | "FocusAreaWidth" | "FocusIsLensMoving" | "FocusPosX" | "FocusPosY" | "FocusState" | "Format" | "FullPanoHeightPixels" | "FullPanoWidthPixels" | "GimbalPitchDegree" | "GimbalReverse" | "GimbalRollDegree" | "GimbalYawDegree" | "GrainAmount" | "GreenHue" | "GreenSaturation" | "HasCrop" | "HasExtendedXMP" | "HasSettings" | "HdrPlusMakernote" | "HDRPMakerNote" | "HierarchicalSubject" | "History" | "HueAdjustmentAqua" | "HueAdjustmentBlue" | "HueAdjustmentGreen" | "HueAdjustmentMagenta" | "HueAdjustmentOrange" | "HueAdjustmentPurple" | "HueAdjustmentRed" | "HueAdjustmentYellow" | "ICCProfileName" | "ImageLength" | "ImageNumber" | "InitialViewHeadingDegrees" | "InitialViewPitchDegrees" | "InitialViewRollDegrees" | "InstanceID" | "InteroperabilityIndex" | "InteroperabilityVersion" | "IsBokehActive" | "IsHDRActive" | "IsNightModeActive" | "Label" | "LastKeywordXMP" | "LegacyIPTCDigest" | "LensFacing" | "LensManualDistortionAmount" | "LensManufacturer" | "LensProfileEnable" | "LensProfileName" | "LensProfileSetup" | "LocationAreaCode" | "Look" | "LuminanceAdjustmentAqua" | "LuminanceAdjustmentBlue" | "LuminanceAdjustmentGreen" | "LuminanceAdjustmentMagenta" | "LuminanceAdjustmentOrange" | "LuminanceAdjustmentPurple" | "LuminanceAdjustmentRed" | "LuminanceAdjustmentYellow" | "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" | "ProgramMode" | "ProjectionType" | "Rating" | "RatingPercent" | "RawFileName" | "RedHue" | "RedSaturation" | "RegionInfo" | "RegionInfoMP" | "RegistryID" | "RelativeAltitude" | "Rights" | "SaturationAdjustmentAqua" | "SaturationAdjustmentBlue" | "SaturationAdjustmentGreen" | "SaturationAdjustmentMagenta" | "SaturationAdjustmentOrange" | "SaturationAdjustmentPurple" | "SaturationAdjustmentRed" | "SaturationAdjustmentYellow" | "Scene" | "SceneDetectResultConfidences" | "SceneDetectResultIds" | "SelfData" | "ShadowTint" | "SharpenDetail" | "SharpenEdgeMasking" | "SharpenRadius" | "SourcePhotosCount" | "SpecialTypeID" | "SplitToningBalance" | "SplitToningHighlightHue" | "SplitToningHighlightSaturation" | "SplitToningShadowHue" | "SplitToningShadowSaturation" | "State" | "StitchingSoftware" | "StreamType" | "Subject" | "SubsecTime" | "Tag" | "Tagged" | "TagsList" | "Tint" | "Title" | "TlinearGain" | "ToneCurveBlue" | "ToneCurveGreen" | "ToneCurveName" | "ToneCurvePV2012Blue" | "ToneCurvePV2012Green" | "ToneCurvePV2012Red" | "ToneCurveRed" | "ToneMapStrength" | "UprightCenterMode" | "UprightCenterNormX" | "UprightCenterNormY" | "UprightFocalLength35mm" | "UprightFocalMode" | "UprightFourSegmentsCount" | "UprightPreview" | "UprightTransformCount" | "UprightVersion" | "UsePanoramaViewer" | "Versions" | "Vibrance" | "VignetteAmount" | "WavelengthFWHM" | "XMPMeta" | "XMPToolkit">;
|
|
5149
5145
|
export type TagName = StrEnumKeys<typeof TagNames>;
|