exiftool-vendored 23.7.0 → 24.1.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 +18 -0
- package/dist/BinaryExtractionTask.js +3 -3
- package/dist/BinaryExtractionTask.js.map +1 -1
- package/dist/BinaryToBufferTask.js +2 -2
- package/dist/BinaryToBufferTask.js.map +1 -1
- package/dist/DefaultExifToolOptions.js +0 -2
- package/dist/DefaultExifToolOptions.js.map +1 -1
- package/dist/DefaultMaxProcs.js +1 -1
- package/dist/DefaultMaxProcs.js.map +1 -1
- package/dist/Defined.d.ts +4 -0
- package/dist/Defined.js +3 -0
- package/dist/Defined.js.map +1 -0
- package/dist/ErrorsAndWarnings.d.ts +19 -0
- package/dist/ErrorsAndWarnings.js +13 -0
- package/dist/ErrorsAndWarnings.js.map +1 -0
- package/dist/ExifTool.d.ts +9 -42
- package/dist/ExifTool.js +9 -12
- package/dist/ExifTool.js.map +1 -1
- package/dist/ExifToolOptions.d.ts +0 -11
- package/dist/ExifToolOptions.js.map +1 -1
- package/dist/ExifToolTask.d.ts +2 -3
- package/dist/ExifToolTask.js +26 -18
- package/dist/ExifToolTask.js.map +1 -1
- package/dist/File.js +2 -2
- package/dist/File.js.map +1 -1
- package/dist/FindExiftool.js +2 -2
- package/dist/FindExiftool.js.map +1 -1
- package/dist/{IgnorableError.d.ts → IsWarning.d.ts} +1 -1
- package/dist/IsWarning.js +19 -0
- package/dist/IsWarning.js.map +1 -0
- package/dist/IsWin32.js +1 -1
- package/dist/IsWin32.js.map +1 -1
- package/dist/RawTags.d.ts +2 -1
- package/dist/ReadRawTask.js +7 -2
- package/dist/ReadRawTask.js.map +1 -1
- package/dist/ReadTask.js +10 -5
- package/dist/ReadTask.js.map +1 -1
- package/dist/RewriteAllTagsTask.js +1 -1
- package/dist/RewriteAllTagsTask.js.map +1 -1
- package/dist/ShortcutTags.d.ts +12 -0
- package/dist/ShortcutTags.js +6 -0
- package/dist/ShortcutTags.js.map +1 -0
- package/dist/Sidecars.js +2 -2
- package/dist/Sidecars.js.map +1 -1
- package/dist/String.d.ts +5 -0
- package/dist/String.js +16 -1
- package/dist/String.js.map +1 -1
- package/dist/Tags.d.ts +859 -336
- package/dist/WriteTags.d.ts +33 -1
- package/dist/WriteTask.d.ts +27 -3
- package/dist/WriteTask.js +38 -24
- package/dist/WriteTask.js.map +1 -1
- package/package.json +2 -2
- package/dist/IgnorableError.js +0 -18
- package/dist/IgnorableError.js.map +0 -1
package/dist/Tags.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ApplicationRecordTags } from "./ApplicationRecordTags";
|
|
2
2
|
import { BinaryField } from "./BinaryField";
|
|
3
|
+
import { ErrorsAndWarnings } from "./ErrorsAndWarnings";
|
|
3
4
|
import { ExifDate } from "./ExifDate";
|
|
4
5
|
import { ExifDateTime } from "./ExifDateTime";
|
|
5
6
|
import { ExifTime } from "./ExifTime";
|
|
@@ -20,23 +21,19 @@ export interface ExifToolTags {
|
|
|
20
21
|
export interface FileTags {
|
|
21
22
|
/** ☆☆☆☆ ✔ Example: "Windows V3" */
|
|
22
23
|
BMPVersion?: string;
|
|
23
|
-
/** ☆☆☆☆ ✔ Example: 24 */
|
|
24
|
-
BitDepth?: number;
|
|
25
24
|
/** ★★★★ ✔ Example: 8 */
|
|
26
25
|
BitsPerSample?: number;
|
|
27
26
|
/** ★★★★ ✔ Example: 3 */
|
|
28
27
|
ColorComponents?: number;
|
|
29
|
-
/** ☆☆☆☆ ✔ Example: "This is a comment." */
|
|
30
|
-
Comment?: string;
|
|
31
|
-
/** ☆☆☆☆ ✔ Example: "MJPG" */
|
|
32
|
-
Compression?: string;
|
|
33
28
|
/** ☆☆☆☆ ✔ Example: "ff5978eb5c164fa308177d41e817e08f" */
|
|
34
29
|
CurrentIPTCDigest?: string;
|
|
35
30
|
/** ★★★★ ✔ Example: "/home/username/pictures" */
|
|
36
31
|
Directory?: string;
|
|
37
32
|
/** ★★★★ ✔ Example: "Progressive DCT, Huffman coding" */
|
|
38
33
|
EncodingProcess?: string;
|
|
39
|
-
/** ★★★★ ✔ Example: "
|
|
34
|
+
/** ★★★★ ✔ Example: "Little-endian (Intel, II)" */
|
|
35
|
+
ExifByteOrder?: string;
|
|
36
|
+
/** ★★★★ ✔ Example: "2023:12:08 12:16:47-08:00" */
|
|
40
37
|
FileAccessDate?: ExifDateTime | string;
|
|
41
38
|
/** ★★★★ ✔ Example: "2023:11:20 12:27:22-08:00" */
|
|
42
39
|
FileInodeChangeDate?: ExifDateTime | string;
|
|
@@ -54,11 +51,9 @@ export interface FileTags {
|
|
|
54
51
|
FileTypeExtension?: string;
|
|
55
52
|
/** ☆☆☆☆ Example: */
|
|
56
53
|
ImageDataMD5?: string;
|
|
57
|
-
/** ★★★★ ✔ Example:
|
|
54
|
+
/** ★★★★ ✔ Example: 960 */
|
|
58
55
|
ImageHeight?: number;
|
|
59
|
-
/**
|
|
60
|
-
ImageLength?: number;
|
|
61
|
-
/** ★★★★ ✔ Example: 8256 */
|
|
56
|
+
/** ★★★★ ✔ Example: 96 */
|
|
62
57
|
ImageWidth?: number;
|
|
63
58
|
/** ★★★★ ✔ Example: "video/x-msvideo" */
|
|
64
59
|
MIMEType?: string;
|
|
@@ -72,8 +67,6 @@ export interface FileTags {
|
|
|
72
67
|
PixelsPerMeterY?: number;
|
|
73
68
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
74
69
|
Planes?: number;
|
|
75
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data 315546 bytes, use -b option to extract)" */
|
|
76
|
-
PreviewImage?: BinaryField;
|
|
77
70
|
/** ★★★★ ✔ Example: "YCbCr4:4:4 (1 1)" */
|
|
78
71
|
YCbCrSubSampling?: string;
|
|
79
72
|
}
|
|
@@ -86,8 +79,6 @@ export interface CompositeTags {
|
|
|
86
79
|
AutoFocus?: string;
|
|
87
80
|
/** ☆☆☆☆ ✔ Example: "8.7 Mbps" */
|
|
88
81
|
AvgBitrate?: string;
|
|
89
|
-
/** ★★☆☆ ✔ Example: 4.914063 */
|
|
90
|
-
BlueBalance?: number;
|
|
91
82
|
/** ☆☆☆☆ ✔ Example: "[Red,Green][Green,Blue]" */
|
|
92
83
|
CFAPattern?: string;
|
|
93
84
|
/** ★★★★ ✔ Example: "1.030 mm" */
|
|
@@ -96,84 +87,52 @@ export interface CompositeTags {
|
|
|
96
87
|
ConditionalFEC?: number;
|
|
97
88
|
/** ★★☆☆ ✔ Example: "inf (9.66 m - inf)" */
|
|
98
89
|
DOF?: string;
|
|
99
|
-
/** ☆☆☆☆ Example: "2006:12:19" */
|
|
100
|
-
DateCreated?: ExifDateTime | string;
|
|
101
|
-
/** ☆☆☆☆ ✔ Example: "2022:10:25 11:21:56-07:00" */
|
|
102
|
-
DateTimeCreated?: ExifDateTime | string;
|
|
103
|
-
/** ☆☆☆☆ ✔ Example: "2017:02:20 18:06:40+00:00" */
|
|
104
|
-
DateTimeOriginal?: ExifDateTime | string;
|
|
105
90
|
/** ☆☆☆☆ ✔ Example: "2021:03:16 18:14:25" */
|
|
106
91
|
DigitalCreationDateTime?: ExifDateTime | string;
|
|
107
|
-
/**
|
|
108
|
-
DigitalZoom?: string;
|
|
109
|
-
/** ★★☆☆ ✔ Example: "Single-frame Shooting" */
|
|
92
|
+
/** ★★☆☆ ✔ Example: "Unknown (3152)" */
|
|
110
93
|
DriveMode?: string;
|
|
111
|
-
/** ☆☆☆☆ ✔ Example: 25.866408 */
|
|
112
|
-
Duration?: number;
|
|
113
94
|
/** ☆☆☆☆ ✔ Example: "Not attached" */
|
|
114
95
|
ExtenderStatus?: string;
|
|
115
96
|
/** ★★★★ ✔ Example: "97.7 deg" */
|
|
116
97
|
FOV?: string;
|
|
117
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
118
|
-
Flash?: string;
|
|
119
|
-
/** ☆☆☆☆ ✔ Example: "External" */
|
|
98
|
+
/** ☆☆☆☆ ✔ Example: "Optional,TTL" */
|
|
120
99
|
FlashType?: string;
|
|
121
|
-
/**
|
|
122
|
-
|
|
123
|
-
/** ☆☆☆☆ ✔ Example: 99.8 */
|
|
124
|
-
GPSAltitude?: number;
|
|
125
|
-
/** ☆☆☆☆ ✔ Example: "Above Sea Level" */
|
|
126
|
-
GPSAltitudeRef?: string;
|
|
100
|
+
/** ★★★★ ✔ Example: "99.7 mm (35 mm equivalent: 554.0 mm)" */
|
|
101
|
+
FocalLength35efl?: string;
|
|
127
102
|
/** ☆☆☆☆ ✔ Example: "2023:10:06 18:50:33Z" */
|
|
128
103
|
GPSDateTime?: ExifDateTime | string;
|
|
129
|
-
/** ☆☆☆☆ ✔ Example: "43 deg 37' 59.61" N" */
|
|
130
|
-
GPSDestLatitude?: string;
|
|
131
|
-
/** ☆☆☆☆ ✔ Example: "80 deg 23' 16.31" W" */
|
|
132
|
-
GPSDestLongitude?: string;
|
|
133
|
-
/** ☆☆☆☆ ✔ Example: 48.857748 */
|
|
134
|
-
GPSLatitude?: number;
|
|
135
|
-
/** ☆☆☆☆ ✔ Example: "North" */
|
|
136
|
-
GPSLatitudeRef?: string;
|
|
137
|
-
/** ☆☆☆☆ ✔ Example: 2.2918888 */
|
|
138
|
-
GPSLongitude?: number;
|
|
139
|
-
/** ☆☆☆☆ ✔ Example: "West" */
|
|
140
|
-
GPSLongitudeRef?: string;
|
|
141
104
|
/** ☆☆☆☆ ✔ Example: "7.196465 134.376806666667" */
|
|
142
105
|
GPSPosition?: string;
|
|
143
106
|
/** ★★★★ ✔ Example: "Inf m" */
|
|
144
107
|
HyperfocalDistance?: string;
|
|
145
|
-
/** ★★☆☆ ✔ Example: 993 */
|
|
146
|
-
ISO?: number;
|
|
147
108
|
/** ★★★★ ✔ Example: "8x8" */
|
|
148
109
|
ImageSize?: string;
|
|
149
|
-
/** ★★☆☆ ✔ Example: "
|
|
110
|
+
/** ★★☆☆ ✔ Example: "smc PENTAX-D FA 50mm F2.8 Macro" */
|
|
150
111
|
Lens?: string;
|
|
151
112
|
/** ★★☆☆ ✔ Example: "9.2 - 92.0 mm (35 mm equivalent: 24.9 - 248.8 mm)" */
|
|
152
113
|
Lens35efl?: string;
|
|
153
114
|
/** ★★☆☆ ✔ Example: "smc PENTAX-FA 28-105mm F3.2-4.5 AL[IF]" */
|
|
154
115
|
LensID?: string;
|
|
155
|
-
/**
|
|
156
|
-
|
|
157
|
-
/** ☆☆☆☆ ✔ Example: "Olympus Zuiko Digital ED 50mm F2.0 Macro" */
|
|
158
|
-
LensType?: string;
|
|
116
|
+
/** ★★★★ ✔ Example: 9.9 */
|
|
117
|
+
LightValue?: number;
|
|
159
118
|
/** ★★★★ ✔ Example: 9.5 */
|
|
160
119
|
Megapixels?: number;
|
|
161
120
|
/** ☆☆☆☆ ✔ Example: "(Binary data 512 bytes, use -b option to extract)" */
|
|
162
121
|
OriginalDecisionData?: BinaryField | string;
|
|
163
122
|
/** ☆☆☆☆ Example: "9.9 um" */
|
|
164
123
|
PeakSpectralSensitivity?: string;
|
|
165
|
-
/**
|
|
166
|
-
|
|
167
|
-
/** ★★☆☆ ✔ Example: 3.706667 */
|
|
168
|
-
RedBalance?: number;
|
|
124
|
+
/** ★★★☆ ✔ Example: "(Binary data 37244 bytes, use -b option to extract)" */
|
|
125
|
+
PreviewImage?: BinaryField;
|
|
169
126
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
170
127
|
RedEyeReduction?: string;
|
|
171
128
|
/** ☆☆☆☆ Example: 11.2 */
|
|
172
129
|
RicohPitch?: number;
|
|
173
130
|
/** ☆☆☆☆ Example: 1.59 */
|
|
174
131
|
RicohRoll?: number;
|
|
175
|
-
/**
|
|
132
|
+
/** ★☆☆☆ ✔ Example: "Unknown (0)" */
|
|
176
133
|
Rotation?: number;
|
|
134
|
+
/** ☆☆☆☆ ✔ Example: "9:30:01" */
|
|
135
|
+
RunTimeSincePowerUp?: string;
|
|
177
136
|
/** ★★★★ ✔ Example: 9.9 */
|
|
178
137
|
ScaleFactor35efl?: number;
|
|
179
138
|
/** ★★☆☆ ✔ Example: "Unknown (83)" */
|
|
@@ -202,7 +161,7 @@ export interface APP1Tags {
|
|
|
202
161
|
CameraModel?: string;
|
|
203
162
|
/** ☆☆☆☆ Example: "_______________" */
|
|
204
163
|
CameraPartNumber?: string;
|
|
205
|
-
/** ☆☆☆☆
|
|
164
|
+
/** ☆☆☆☆ ✔ Example: 8340330 */
|
|
206
165
|
CameraSerialNumber?: number;
|
|
207
166
|
/** ☆☆☆☆ Example: "https://PhotoStructure.com/" */
|
|
208
167
|
CameraSoftware?: string;
|
|
@@ -210,7 +169,7 @@ export interface APP1Tags {
|
|
|
210
169
|
CreatorSoftware?: string;
|
|
211
170
|
/** ☆☆☆☆ Example: "2013:03:12 16:31:26" */
|
|
212
171
|
DateTimeGenerated?: ExifDateTime | string;
|
|
213
|
-
/** ☆☆☆☆ Example: "(Binary data
|
|
172
|
+
/** ☆☆☆☆ Example: "(Binary data 275008 bytes, use -b option to extract)" */
|
|
214
173
|
EmbeddedImage?: BinaryField | string;
|
|
215
174
|
/** ☆☆☆☆ Example: 960 */
|
|
216
175
|
EmbeddedImageHeight?: number;
|
|
@@ -218,8 +177,6 @@ export interface APP1Tags {
|
|
|
218
177
|
EmbeddedImageType?: string;
|
|
219
178
|
/** ☆☆☆☆ Example: 640 */
|
|
220
179
|
EmbeddedImageWidth?: number;
|
|
221
|
-
/** ☆☆☆☆ Example: 1 */
|
|
222
|
-
Emissivity?: number;
|
|
223
180
|
/** ☆☆☆☆ Example: "46.1 deg" */
|
|
224
181
|
FieldOfView?: string;
|
|
225
182
|
/** ☆☆☆☆ Example: "NOF" */
|
|
@@ -228,30 +185,18 @@ export interface APP1Tags {
|
|
|
228
185
|
FilterPartNumber?: string;
|
|
229
186
|
/** ☆☆☆☆ Example: "00000000" */
|
|
230
187
|
FilterSerialNumber?: string;
|
|
231
|
-
/** ☆☆☆☆
|
|
188
|
+
/** ☆☆☆☆ ✔ Example: "inf" */
|
|
189
|
+
FocusDistance?: string;
|
|
190
|
+
/** ☆☆☆☆ ✔ Example: 98 */
|
|
232
191
|
FocusStepCount?: number;
|
|
233
|
-
/** ☆☆☆☆
|
|
192
|
+
/** ☆☆☆☆ ✔ Example: 9 */
|
|
234
193
|
FrameRate?: number;
|
|
235
|
-
/** ☆☆☆☆
|
|
236
|
-
GPSDOP?: number;
|
|
237
|
-
/** ☆☆☆☆ Example: 94 */
|
|
238
|
-
GPSImgDirection?: number;
|
|
239
|
-
/** ☆☆☆☆ Example: "Magnetic North" */
|
|
240
|
-
GPSImgDirectionRef?: string;
|
|
241
|
-
/** ☆☆☆☆ Example: "WGS84" */
|
|
242
|
-
GPSMapDatum?: string;
|
|
243
|
-
/** ☆☆☆☆ Example: 20.56 */
|
|
244
|
-
GPSSpeed?: number;
|
|
245
|
-
/** ☆☆☆☆ Example: "km/h" */
|
|
246
|
-
GPSSpeedRef?: string;
|
|
247
|
-
/** ☆☆☆☆ Example: 88.01 */
|
|
194
|
+
/** ☆☆☆☆ ✔ Example: 88.01 */
|
|
248
195
|
GPSTrack?: number;
|
|
249
|
-
/** ☆☆☆☆
|
|
196
|
+
/** ☆☆☆☆ ✔ Example: "True North" */
|
|
250
197
|
GPSTrackRef?: string;
|
|
251
198
|
/** ☆☆☆☆ Example: "Yes" */
|
|
252
199
|
GPSValid?: string;
|
|
253
|
-
/** ☆☆☆☆ Example: "2.2.0.0" */
|
|
254
|
-
GPSVersionID?: string;
|
|
255
200
|
/** ☆☆☆☆ Example: "7.4 C" */
|
|
256
201
|
IRWindowTemperature?: string;
|
|
257
202
|
/** ☆☆☆☆ Example: 1 */
|
|
@@ -260,12 +205,8 @@ export interface APP1Tags {
|
|
|
260
205
|
Isotherm1Color?: string;
|
|
261
206
|
/** ☆☆☆☆ Example: "92 115 209" */
|
|
262
207
|
Isotherm2Color?: string;
|
|
263
|
-
/** ☆☆☆☆ Example: "N/A" */
|
|
264
|
-
LensModel?: string;
|
|
265
208
|
/** ☆☆☆☆ Example: "T199104" */
|
|
266
209
|
LensPartNumber?: string;
|
|
267
|
-
/** ☆☆☆☆ Example: "No Lens" */
|
|
268
|
-
LensSerialNumber?: string;
|
|
269
210
|
/** ☆☆☆☆ Example: 1 */
|
|
270
211
|
Meas1Label?: number;
|
|
271
212
|
/** ☆☆☆☆ Example: "80 60" */
|
|
@@ -278,8 +219,6 @@ export interface APP1Tags {
|
|
|
278
219
|
Meas2Params?: string;
|
|
279
220
|
/** ☆☆☆☆ Example: "Spot" */
|
|
280
221
|
Meas2Type?: string;
|
|
281
|
-
/** ☆☆☆☆ Example: "9.70 m" */
|
|
282
|
-
ObjectDistance?: string;
|
|
283
222
|
/** ☆☆☆☆ Example: "+98" */
|
|
284
223
|
OffsetX?: string;
|
|
285
224
|
/** ☆☆☆☆ Example: "+51" */
|
|
@@ -300,7 +239,7 @@ export interface APP1Tags {
|
|
|
300
239
|
PaletteStretch?: number;
|
|
301
240
|
/** ☆☆☆☆ Example: ".basicImgData.objectParams.emissivity" */
|
|
302
241
|
Param0?: string;
|
|
303
|
-
/** ☆☆☆☆ Example: "(Binary data
|
|
242
|
+
/** ☆☆☆☆ Example: "(Binary data 614604 bytes, use -b option to extract)" */
|
|
304
243
|
RawThermalImage?: BinaryField | string;
|
|
305
244
|
/** ☆☆☆☆ Example: 90 */
|
|
306
245
|
RawThermalImageHeight?: number;
|
|
@@ -320,8 +259,6 @@ export interface APP1Tags {
|
|
|
320
259
|
Real2IR?: number;
|
|
321
260
|
/** ☆☆☆☆ Example: "26.7 C" */
|
|
322
261
|
ReflectedApparentTemperature?: string;
|
|
323
|
-
/** ☆☆☆☆ Example: "80.0 %" */
|
|
324
|
-
RelativeHumidity?: string;
|
|
325
262
|
/** ☆☆☆☆ Example: "41 110 240" */
|
|
326
263
|
UnderflowColor?: string;
|
|
327
264
|
}
|
|
@@ -342,8 +279,6 @@ export interface APP12Tags {
|
|
|
342
279
|
BSd?: number;
|
|
343
280
|
/** ☆☆☆☆ Example: 1908 */
|
|
344
281
|
BStrobe?: number;
|
|
345
|
-
/** ☆☆☆☆ Example: 0 */
|
|
346
|
-
Balance?: number;
|
|
347
282
|
/** ☆☆☆☆ Example: 2438 */
|
|
348
283
|
Bgain?: number;
|
|
349
284
|
/** ☆☆☆☆ Example: 33 */
|
|
@@ -362,14 +297,12 @@ export interface APP12Tags {
|
|
|
362
297
|
COLOR3?: number;
|
|
363
298
|
/** ☆☆☆☆ ✔ Example: 5 */
|
|
364
299
|
COLOR4?: number;
|
|
365
|
-
/** ☆☆☆☆ ✔ Example: "SR83" */
|
|
366
|
-
CameraType?: string;
|
|
367
300
|
/** ☆☆☆☆ Example: 2 */
|
|
368
301
|
Case?: number;
|
|
369
302
|
/** ☆☆☆☆ Example: 1 */
|
|
370
303
|
Color?: number;
|
|
371
|
-
/**
|
|
372
|
-
ColorMode?:
|
|
304
|
+
/** ★★☆☆ ✔ Example: "n/a" */
|
|
305
|
+
ColorMode?: string;
|
|
373
306
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
374
307
|
ContTake?: number;
|
|
375
308
|
/** ☆☆☆☆ ✔ Example: 8501 */
|
|
@@ -382,24 +315,14 @@ export interface APP12Tags {
|
|
|
382
315
|
ExposRatio?: number;
|
|
383
316
|
/** ☆☆☆☆ Example: 3687 */
|
|
384
317
|
Exposure?: number;
|
|
385
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
386
|
-
ExposureCompensation?: number;
|
|
387
|
-
/** ☆☆☆☆ ✔ Example: "1/8" */
|
|
388
|
-
ExposureTime?: string;
|
|
389
318
|
/** ☆☆☆☆ Example: 192 */
|
|
390
319
|
FMean?: number;
|
|
391
|
-
/** ☆☆☆☆ ✔ Example: 8 */
|
|
392
|
-
FNumber?: number;
|
|
393
320
|
/** ☆☆☆☆ Example: 1 */
|
|
394
321
|
FinalRatio?: number;
|
|
395
|
-
/** ☆☆☆☆ Example: "v2.2.16" */
|
|
396
|
-
FirmwareVersion?: string;
|
|
397
322
|
/** ☆☆☆☆ Example: 640 */
|
|
398
323
|
FlashTime?: number;
|
|
399
324
|
/** ☆☆☆☆ ✔ Example: "F2.8" */
|
|
400
325
|
Fnumber?: string;
|
|
401
|
-
/** ☆☆☆☆ Example: 2 */
|
|
402
|
-
FocusMode?: number;
|
|
403
326
|
/** ☆☆☆☆ Example: 136 */
|
|
404
327
|
FocusPos?: number;
|
|
405
328
|
/** ☆☆☆☆ Example: 2152 */
|
|
@@ -422,16 +345,12 @@ export interface APP12Tags {
|
|
|
422
345
|
GSd?: number;
|
|
423
346
|
/** ☆☆☆☆ Example: 85 */
|
|
424
347
|
Gain?: number;
|
|
425
|
-
/** ☆☆☆☆ Example: 0 */
|
|
426
|
-
Gamma?: number;
|
|
427
348
|
/** ☆☆☆☆ ✔ Example: "PDR-M60" */
|
|
428
349
|
ID?: string;
|
|
429
350
|
/** ☆☆☆☆ ✔ Example: 696880 */
|
|
430
351
|
JPEG1?: number;
|
|
431
352
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
432
353
|
LightS?: number;
|
|
433
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
434
|
-
Macro?: string;
|
|
435
354
|
/** ☆☆☆☆ Example: " 10.6" */
|
|
436
355
|
Mean?: string;
|
|
437
356
|
/** ☆☆☆☆ Example: 26 */
|
|
@@ -442,8 +361,6 @@ export interface APP12Tags {
|
|
|
442
361
|
PicLen?: number;
|
|
443
362
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
444
363
|
Protect?: number;
|
|
445
|
-
/** ☆☆☆☆ Example: 97 */
|
|
446
|
-
Quality?: number;
|
|
447
364
|
/** ☆☆☆☆ Example: 6929 */
|
|
448
365
|
R5100?: number;
|
|
449
366
|
/** ☆☆☆☆ ✔ Example: "DCPT" */
|
|
@@ -468,8 +385,6 @@ export interface APP12Tags {
|
|
|
468
385
|
Roff?: number;
|
|
469
386
|
/** ☆☆☆☆ ✔ Example: "8259,0,14bfe,a184,11987,1e4f1,0,7c0000,40b60000,56a05e6,6…0038,d7" */
|
|
470
387
|
S0?: string;
|
|
471
|
-
/** ☆☆☆☆ ✔ Example: "#00000001" */
|
|
472
|
-
SerialNumber?: string;
|
|
473
388
|
/** ☆☆☆☆ Example: 0 */
|
|
474
389
|
StrobeTime?: number;
|
|
475
390
|
/** ☆☆☆☆ ✔ Example: "bd1,1,5,2beec,b5,ec15" */
|
|
@@ -484,7 +399,7 @@ export interface APP12Tags {
|
|
|
484
399
|
TagS?: string;
|
|
485
400
|
/** ☆☆☆☆ ✔ Example: 4016 */
|
|
486
401
|
ThmLen?: number;
|
|
487
|
-
/**
|
|
402
|
+
/** ★☆☆☆ ✔ Example: "vf0-3c" */
|
|
488
403
|
Version?: string;
|
|
489
404
|
/** ☆☆☆☆ Example: 4054 */
|
|
490
405
|
YLevel?: number;
|
|
@@ -502,22 +417,44 @@ export interface APP14Tags {
|
|
|
502
417
|
DCTEncodeVersion?: number;
|
|
503
418
|
}
|
|
504
419
|
export interface APP4Tags {
|
|
505
|
-
/** ☆☆☆☆ ✔ Example:
|
|
506
|
-
|
|
507
|
-
/** ☆☆☆☆
|
|
508
|
-
|
|
509
|
-
/** ☆☆☆☆
|
|
510
|
-
|
|
420
|
+
/** ☆☆☆☆ ✔ Example: "40 C" */
|
|
421
|
+
AmbientTemperature?: string;
|
|
422
|
+
/** ☆☆☆☆ Example: 1 */
|
|
423
|
+
Emissivity?: number;
|
|
424
|
+
/** ☆☆☆☆ Example: "80.0 %" */
|
|
425
|
+
RelativeHumidity?: string;
|
|
511
426
|
}
|
|
512
427
|
export interface APP5Tags {
|
|
513
|
-
/** ☆☆☆☆ Example:
|
|
428
|
+
/** ☆☆☆☆ Example: 45 */
|
|
514
429
|
Compass?: string;
|
|
515
430
|
}
|
|
431
|
+
export interface APP6Tags {
|
|
432
|
+
/** ☆☆☆☆ ✔ Example: 800 */
|
|
433
|
+
AutoISOMax?: number;
|
|
434
|
+
/** ☆☆☆☆ ✔ Example: 3200 */
|
|
435
|
+
AutoISOMin?: number;
|
|
436
|
+
/** ☆☆☆☆ ✔ Example: "Up" */
|
|
437
|
+
AutoRotation?: string;
|
|
438
|
+
/** ☆☆☆☆ ✔ Example: "Photo Global Settings" */
|
|
439
|
+
DeviceName?: string;
|
|
440
|
+
/** ☆☆☆☆ ✔ Example: "On (Manual)" */
|
|
441
|
+
HDRSetting?: string;
|
|
442
|
+
/** ☆☆☆☆ ✔ Example: "AUTO" */
|
|
443
|
+
MaximumShutterAngle?: string;
|
|
444
|
+
/** ☆☆☆☆ ✔ Example: "859830e2f50cb3397a6216f09553fce800000000000000000000000000000000" */
|
|
445
|
+
MediaUniqueID?: string;
|
|
446
|
+
/** ☆☆☆☆ ✔ Example: "7.6.4" */
|
|
447
|
+
MetadataVersion?: string;
|
|
448
|
+
/** ☆☆☆☆ ✔ Example: "12MP_W" */
|
|
449
|
+
PhotoResolution?: string;
|
|
450
|
+
/** ☆☆☆☆ ✔ Example: "On" */
|
|
451
|
+
ProTune?: string;
|
|
452
|
+
/** ☆☆☆☆ ✔ Example: "4_1SEC" */
|
|
453
|
+
Rate?: string;
|
|
454
|
+
}
|
|
516
455
|
export interface EXIFTags {
|
|
517
456
|
/** ☆☆☆☆ ✔ Example: 978279 */
|
|
518
457
|
Acceleration?: number;
|
|
519
|
-
/** ☆☆☆☆ ✔ Example: "22.6 C" */
|
|
520
|
-
AmbientTemperature?: string;
|
|
521
458
|
/** ☆☆☆☆ ✔ Example: "2.225585938 1 2.039794922" */
|
|
522
459
|
AnalogBalance?: string;
|
|
523
460
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
@@ -526,12 +463,14 @@ export interface EXIFTags {
|
|
|
526
463
|
ApertureValue?: number;
|
|
527
464
|
/** ★☆☆☆ ✔ Example: "Arturo DeImage" */
|
|
528
465
|
Artist?: string;
|
|
466
|
+
/** ☆☆☆☆ ✔ Example: "1 1 1" */
|
|
467
|
+
AsShotNeutral?: string;
|
|
529
468
|
/** ☆☆☆☆ ✔ Example: 3.0021124 */
|
|
530
469
|
BaselineExposure?: number;
|
|
531
470
|
/** ☆☆☆☆ ✔ Example: 1.5 */
|
|
532
471
|
BaselineSharpness?: number;
|
|
533
|
-
/** ☆☆☆☆ ✔ Example:
|
|
534
|
-
BlackLevel?:
|
|
472
|
+
/** ☆☆☆☆ ✔ Example: "94 95 93 93" */
|
|
473
|
+
BlackLevel?: string;
|
|
535
474
|
/** ☆☆☆☆ ✔ Example: 130 */
|
|
536
475
|
BlackLevelBlue?: number;
|
|
537
476
|
/** ☆☆☆☆ ✔ Example: 130 */
|
|
@@ -540,52 +479,76 @@ export interface EXIFTags {
|
|
|
540
479
|
BlackLevelRed?: number;
|
|
541
480
|
/** ☆☆☆☆ ✔ Example: "1 1" */
|
|
542
481
|
BlackLevelRepeatDim?: string;
|
|
543
|
-
/**
|
|
482
|
+
/** ★★★☆ ✔ Example: 9.9919505 */
|
|
544
483
|
BrightnessValue?: number;
|
|
545
484
|
/** ☆☆☆☆ ✔ Example: "Red,Green,Blue" */
|
|
546
485
|
CFAPlaneColor?: string;
|
|
547
486
|
/** ☆☆☆☆ ✔ Example: "2 2" */
|
|
548
487
|
CFARepeatPatternDim?: string;
|
|
549
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
550
|
-
ChromaticAberrationCorrParams?: string;
|
|
551
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
488
|
+
/** ☆☆☆☆ ✔ Example: "On" */
|
|
552
489
|
ChromaticAberrationCorrection?: string;
|
|
490
|
+
/** ★★★★ ✔ Example: "sRGB" */
|
|
491
|
+
ColorSpace?: string;
|
|
492
|
+
/** ★★★★ ✔ Example: "Y, Cr, Cb, -" */
|
|
493
|
+
ComponentsConfiguration?: string;
|
|
553
494
|
/** ☆☆☆☆ ✔ Example: "Unknown" */
|
|
554
495
|
CompositeImage?: string;
|
|
555
496
|
/** ★★★★ ✔ Example: 90 */
|
|
556
497
|
CompressedBitsPerPixel?: number;
|
|
557
|
-
/**
|
|
498
|
+
/** ★★★★ ✔ Example: "Unknown (1536)" */
|
|
499
|
+
Compression?: string;
|
|
500
|
+
/** ★★★★ ✔ Example: "n/a" */
|
|
558
501
|
Contrast?: string;
|
|
559
502
|
/** ★★★☆ ✔ Example: "© Chuckles McSnortypants, Inc." */
|
|
560
503
|
Copyright?: string;
|
|
561
504
|
/** ★★★★ ✔ Example: "2218:09:22 02:32:14" */
|
|
562
505
|
CreateDate?: ExifDateTime | string;
|
|
506
|
+
/** ★★★★ ✔ Example: "Unknown (Custom process)" */
|
|
507
|
+
CustomRendered?: string;
|
|
563
508
|
/** ☆☆☆☆ ✔ Example: "1.3.0.0" */
|
|
564
509
|
DNGBackwardVersion?: string;
|
|
565
510
|
/** ☆☆☆☆ ✔ Example: "1.6.0.0" */
|
|
566
511
|
DNGVersion?: string;
|
|
512
|
+
/** ★★★★ ✔ Example: "2218:09:22 02:32:14" */
|
|
513
|
+
DateTimeOriginal?: ExifDateTime | string;
|
|
567
514
|
/** ☆☆☆☆ ✔ Example: "None" */
|
|
568
515
|
DefaultBlackRender?: string;
|
|
569
516
|
/** ☆☆☆☆ ✔ Example: "8 8" */
|
|
570
517
|
DefaultCropOrigin?: string;
|
|
571
518
|
/** ☆☆☆☆ ✔ Example: "8272 6200" */
|
|
572
519
|
DefaultCropSize?: string;
|
|
573
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data
|
|
520
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 4 bytes, use -b option to extract)" */
|
|
574
521
|
DeviceSettingDescription?: BinaryField | string;
|
|
575
522
|
/** ★★★☆ ✔ Example: 8.1319764 */
|
|
576
523
|
DigitalZoomRatio?: number;
|
|
577
|
-
/** ☆☆☆☆ ✔ Example: "16 3 -3 -16 -35 -62 -94 -135 -178 -226 -274 -326 -377 -42…23 -564" */
|
|
578
|
-
DistortionCorrParams?: string;
|
|
579
|
-
/** ☆☆☆☆ ✔ Example: "No correction params available" */
|
|
580
|
-
DistortionCorrection?: string;
|
|
581
524
|
/** ☆☆☆☆ Example: "" */
|
|
582
525
|
DocumentName?: string;
|
|
583
526
|
/** ★★★★ ✔ Example: 990 */
|
|
584
527
|
ExifImageHeight?: number;
|
|
585
528
|
/** ★★★★ ✔ Example: 999 */
|
|
586
529
|
ExifImageWidth?: number;
|
|
530
|
+
/** ★★★★ ✔ Example: "Version 2.2" */
|
|
531
|
+
ExifVersion?: string;
|
|
532
|
+
/** ★★★★ ✔ Example: 1 */
|
|
533
|
+
ExposureCompensation?: number;
|
|
534
|
+
/** ★☆☆☆ ✔ Example: 83 */
|
|
535
|
+
ExposureIndex?: number;
|
|
536
|
+
/** ★★★★ ✔ Example: "Unknown (Auto exposure)" */
|
|
537
|
+
ExposureMode?: string;
|
|
538
|
+
/** ★★★★ ✔ Example: "iAuto+" */
|
|
539
|
+
ExposureProgram?: string;
|
|
540
|
+
/** ★★★★ ✔ Example: "inf" */
|
|
541
|
+
ExposureTime?: string;
|
|
542
|
+
/** ★★★★ ✔ Example: 90 */
|
|
543
|
+
FNumber?: number;
|
|
544
|
+
/** ★★★★ ✔ Example: "Unknown (DSC)" */
|
|
545
|
+
FileSource?: string;
|
|
546
|
+
/** ★★★★ ✔ Example: "Unknown (0xffff)" */
|
|
547
|
+
Flash?: string;
|
|
587
548
|
/** ☆☆☆☆ ✔ Example: 54 */
|
|
588
549
|
FlashEnergy?: number;
|
|
550
|
+
/** ★★★★ ✔ Example: "?" */
|
|
551
|
+
FlashpixVersion?: string;
|
|
589
552
|
/** ★★★★ ✔ Example: "99.7 mm" */
|
|
590
553
|
FocalLength?: string;
|
|
591
554
|
/** ★★★☆ ✔ Example: "9920 mm" */
|
|
@@ -596,8 +559,14 @@ export interface EXIFTags {
|
|
|
596
559
|
FocalPlaneXResolution?: number;
|
|
597
560
|
/** ★★★☆ ✔ Example: 9846.1538 */
|
|
598
561
|
FocalPlaneYResolution?: number;
|
|
562
|
+
/** ★☆☆☆ ✔ Example: 99.8 */
|
|
563
|
+
GPSAltitude?: number;
|
|
564
|
+
/** ☆☆☆☆ ✔ Example: "Unknown (Sea level reference)" */
|
|
565
|
+
GPSAltitudeRef?: string;
|
|
599
566
|
/** ☆☆☆☆ ✔ Example: "府中市郷土の森博物館" */
|
|
600
567
|
GPSAreaInformation?: string;
|
|
568
|
+
/** ☆☆☆☆ ✔ Example: 9 */
|
|
569
|
+
GPSDOP?: number;
|
|
601
570
|
/** ☆☆☆☆ ✔ Example: "2023:10:06" */
|
|
602
571
|
GPSDateStamp?: ExifDate | string;
|
|
603
572
|
/** ☆☆☆☆ ✔ Example: 86.180049 */
|
|
@@ -606,24 +575,54 @@ export interface EXIFTags {
|
|
|
606
575
|
GPSDestBearingRef?: string;
|
|
607
576
|
/** ☆☆☆☆ ✔ Example: 0.030120052 */
|
|
608
577
|
GPSDestDistance?: number;
|
|
578
|
+
/** ☆☆☆☆ ✔ Example: "Kilometers" */
|
|
579
|
+
GPSDestDistanceRef?: string;
|
|
580
|
+
/** ☆☆☆☆ ✔ Example: "43 deg 37' 59.61" N" */
|
|
581
|
+
GPSDestLatitude?: string;
|
|
609
582
|
/** ☆☆☆☆ ✔ Example: "North" */
|
|
610
583
|
GPSDestLatitudeRef?: string;
|
|
584
|
+
/** ☆☆☆☆ ✔ Example: "80 deg 23' 16.31" W" */
|
|
585
|
+
GPSDestLongitude?: string;
|
|
611
586
|
/** ☆☆☆☆ ✔ Example: "West" */
|
|
612
587
|
GPSDestLongitudeRef?: string;
|
|
613
588
|
/** ☆☆☆☆ ✔ Example: "No Correction" */
|
|
614
589
|
GPSDifferential?: string;
|
|
615
590
|
/** ☆☆☆☆ ✔ Example: "8.937059922 m" */
|
|
616
591
|
GPSHPositioningError?: string;
|
|
592
|
+
/** ☆☆☆☆ ✔ Example: 94.800416 */
|
|
593
|
+
GPSImgDirection?: number;
|
|
594
|
+
/** ☆☆☆☆ ✔ Example: "Unknown ()" */
|
|
595
|
+
GPSImgDirectionRef?: string;
|
|
596
|
+
/** ★☆☆☆ ✔ Example: 48.857748 */
|
|
597
|
+
GPSLatitude?: number;
|
|
598
|
+
/** ☆☆☆☆ ✔ Example: "Unknown ()" */
|
|
599
|
+
GPSLatitudeRef?: string;
|
|
600
|
+
/** ★☆☆☆ ✔ Example: 2.2918888 */
|
|
601
|
+
GPSLongitude?: number;
|
|
602
|
+
/** ☆☆☆☆ ✔ Example: "West" */
|
|
603
|
+
GPSLongitudeRef?: string;
|
|
604
|
+
/** ☆☆☆☆ ✔ Example: "WGS84" */
|
|
605
|
+
GPSMapDatum?: string;
|
|
606
|
+
/** ☆☆☆☆ ✔ Example: "Unknown ()" */
|
|
607
|
+
GPSMeasureMode?: string;
|
|
617
608
|
/** ☆☆☆☆ ✔ Example: "gps" */
|
|
618
609
|
GPSProcessingMethod?: string;
|
|
619
610
|
/** ☆☆☆☆ ✔ Example: "??B??" */
|
|
620
611
|
GPSSatellites?: string;
|
|
612
|
+
/** ☆☆☆☆ ✔ Example: 5 */
|
|
613
|
+
GPSSpeed?: number;
|
|
614
|
+
/** ☆☆☆☆ ✔ Example: "knots" */
|
|
615
|
+
GPSSpeedRef?: string;
|
|
621
616
|
/** ☆☆☆☆ ✔ Example: "Unknown ()" */
|
|
622
617
|
GPSStatus?: string;
|
|
623
618
|
/** ☆☆☆☆ ✔ Example: "23:59:41.001" */
|
|
624
619
|
GPSTimeStamp?: ExifTime | string;
|
|
620
|
+
/** ★☆☆☆ ✔ Example: "50.51.48.48" */
|
|
621
|
+
GPSVersionID?: string;
|
|
625
622
|
/** ★★★☆ ✔ Example: "Unknown (8176)" */
|
|
626
623
|
GainControl?: string;
|
|
624
|
+
/** ☆☆☆☆ ✔ Example: 2.4921875 */
|
|
625
|
+
Gamma?: number;
|
|
627
626
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
628
627
|
HighISOMultiplierBlue?: number;
|
|
629
628
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
@@ -632,15 +631,17 @@ export interface EXIFTags {
|
|
|
632
631
|
HighISOMultiplierRed?: number;
|
|
633
632
|
/** ☆☆☆☆ ✔ Example: "iPhone 13 Pro Max" */
|
|
634
633
|
HostComputer?: string;
|
|
635
|
-
/**
|
|
634
|
+
/** ★★★★ ✔ Example: 993 */
|
|
635
|
+
ISO?: number;
|
|
636
|
+
/** ☆☆☆☆ ✔ Example: 80 */
|
|
636
637
|
ISOSpeed?: number;
|
|
637
638
|
/** ★★★☆ ✔ Example: "untitled" */
|
|
638
639
|
ImageDescription?: string;
|
|
639
|
-
/**
|
|
640
|
-
|
|
641
|
-
/**
|
|
642
|
-
|
|
643
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data
|
|
640
|
+
/** ★★★★ ✔ Example: "Unknown ([None])" */
|
|
641
|
+
InteropIndex?: string;
|
|
642
|
+
/** ★★★★ ✔ Example: "undef undef undef" */
|
|
643
|
+
InteropVersion?: string;
|
|
644
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 772608 bytes, use -b option to extract)" */
|
|
644
645
|
JpgFromRaw?: BinaryField;
|
|
645
646
|
/** ☆☆☆☆ ✔ Example: 845574 */
|
|
646
647
|
JpgFromRawLength?: number;
|
|
@@ -650,6 +651,10 @@ export interface EXIFTags {
|
|
|
650
651
|
LensInfo?: string;
|
|
651
652
|
/** ☆☆☆☆ ✔ Example: "ZEISS" */
|
|
652
653
|
LensMake?: string;
|
|
654
|
+
/** ★★☆☆ ✔ Example: "smc PENTAX-D FA 50mm F2.8 Macro" */
|
|
655
|
+
LensModel?: string;
|
|
656
|
+
/** ★☆☆☆ ✔ Example: "xB?" */
|
|
657
|
+
LensSerialNumber?: string;
|
|
653
658
|
/** ★★★★ ✔ Example: "White Fluorescent" */
|
|
654
659
|
LightSource?: string;
|
|
655
660
|
/** ☆☆☆☆ ✔ Example: 4095 */
|
|
@@ -668,6 +673,10 @@ export interface EXIFTags {
|
|
|
668
673
|
MakerNoteUnknownBinary?: BinaryField | string;
|
|
669
674
|
/** ☆☆☆☆ ✔ Example: "}:-" */
|
|
670
675
|
MakerNoteUnknownText?: string;
|
|
676
|
+
/** ★★★★ ✔ Example: 9.1 */
|
|
677
|
+
MaxApertureValue?: number;
|
|
678
|
+
/** ★★★★ ✔ Example: "Unknown (Center-weighted average)" */
|
|
679
|
+
MeteringMode?: string;
|
|
671
680
|
/** ★★★★ ✔ Example: "x530" */
|
|
672
681
|
Model?: string;
|
|
673
682
|
/** ☆☆☆☆ ✔ Example: "K520C-01044" */
|
|
@@ -698,8 +707,6 @@ export interface EXIFTags {
|
|
|
698
707
|
OtherImageLength?: number;
|
|
699
708
|
/** ☆☆☆☆ ✔ Example: 755 */
|
|
700
709
|
OtherImageStart?: number;
|
|
701
|
-
/** ☆☆☆☆ ✔ Example: "Itsa Myowna" */
|
|
702
|
-
OwnerName?: string;
|
|
703
710
|
/** ☆☆☆☆ ✔ Example: "(Binary data 2060 bytes, use -b option to extract)" */
|
|
704
711
|
Padding?: BinaryField | string;
|
|
705
712
|
/** ☆☆☆☆ ✔ Example: "Reflective" */
|
|
@@ -716,10 +723,6 @@ export interface EXIFTags {
|
|
|
716
723
|
Pressure?: number;
|
|
717
724
|
/** ☆☆☆☆ ✔ Example: "2015:06:02 09:56:01" */
|
|
718
725
|
PreviewDateTime?: ExifDateTime | string;
|
|
719
|
-
/** ☆☆☆☆ ✔ Example: 895146 */
|
|
720
|
-
PreviewImageLength?: number;
|
|
721
|
-
/** ☆☆☆☆ ✔ Example: 9996 */
|
|
722
|
-
PreviewImageStart?: number;
|
|
723
726
|
/** ☆☆☆☆ ✔ Example: "(Binary data 4665816 bytes, use -b option to extract)" */
|
|
724
727
|
PreviewTIFF?: BinaryField | string;
|
|
725
728
|
/** ☆☆☆☆ ✔ Example: "0.64 0.33 0.3 0.6 0.15 0.06" */
|
|
@@ -732,10 +735,6 @@ export interface EXIFTags {
|
|
|
732
735
|
ProfileName?: string;
|
|
733
736
|
/** ☆☆☆☆ ✔ Example: "(Binary data 7195 bytes, use -b option to extract)" */
|
|
734
737
|
ProfileToneCurve?: BinaryField | string;
|
|
735
|
-
/** ☆☆☆☆ ✔ Example: 3 */
|
|
736
|
-
Rating?: number;
|
|
737
|
-
/** ☆☆☆☆ ✔ Example: 50 */
|
|
738
|
-
RatingPercent?: number;
|
|
739
738
|
/** ☆☆☆☆ ✔ Example: 928768 */
|
|
740
739
|
RawDataOffset?: number;
|
|
741
740
|
/** ☆☆☆☆ ✔ Example: "30353330394431333030303032383242" */
|
|
@@ -748,44 +747,44 @@ export interface EXIFTags {
|
|
|
748
747
|
RecommendedExposureIndex?: number;
|
|
749
748
|
/** ☆☆☆☆ ✔ Example: "0 255 128 255 128 255" */
|
|
750
749
|
ReferenceBlackWhite?: string;
|
|
750
|
+
/** ☆☆☆☆ Example: "JPEG Exif Ver 2.2" */
|
|
751
|
+
RelatedImageFileFormat?: string;
|
|
751
752
|
/** ★★☆☆ ✔ Example: 960 */
|
|
752
753
|
RelatedImageHeight?: number;
|
|
753
754
|
/** ★★☆☆ ✔ Example: 800 */
|
|
754
755
|
RelatedImageWidth?: number;
|
|
755
756
|
/** ☆☆☆☆ ✔ Example: "xxx.avi" */
|
|
756
757
|
RelatedSoundFile?: string;
|
|
758
|
+
/** ★★★★ ✔ Example: "inches" */
|
|
759
|
+
ResolutionUnit?: string;
|
|
757
760
|
/** ☆☆☆☆ ✔ Example: 96 */
|
|
758
761
|
RowsPerStrip?: number;
|
|
759
762
|
/** ☆☆☆☆ ✔ Example: 4 */
|
|
760
763
|
SRawType?: number;
|
|
761
764
|
/** ☆☆☆☆ ✔ Example: 3 */
|
|
762
765
|
SamplesPerPixel?: number;
|
|
763
|
-
/**
|
|
766
|
+
/** ★★★★ ✔ Example: "n/a" */
|
|
764
767
|
Saturation?: string;
|
|
765
|
-
/** ★★★★ ✔ Example: "Unknown (
|
|
768
|
+
/** ★★★★ ✔ Example: "Unknown (Standard)" */
|
|
769
|
+
SceneCaptureType?: string;
|
|
770
|
+
/** ★★★★ ✔ Example: "Unknown (Directly photographed)" */
|
|
766
771
|
SceneType?: string;
|
|
767
772
|
/** ☆☆☆☆ ✔ Example: "urn:com:apple:photo:2020:aux:semanticskymatte" */
|
|
768
773
|
SemanticName?: string;
|
|
769
|
-
/** ★★★☆ ✔ Example: "Unknown (
|
|
774
|
+
/** ★★★☆ ✔ Example: "Unknown (One-chip color area sensor)" */
|
|
770
775
|
SensingMethod?: string;
|
|
771
776
|
/** ★★☆☆ ✔ Example: "Unknown" */
|
|
772
777
|
SensitivityType?: string;
|
|
773
|
-
/**
|
|
774
|
-
SensorBottomBorder?: number;
|
|
775
|
-
/** ☆☆☆☆ ✔ Example: 3472 */
|
|
776
|
-
SensorHeight?: number;
|
|
777
|
-
/** ☆☆☆☆ ✔ Example: 8 */
|
|
778
|
-
SensorLeftBorder?: number;
|
|
779
|
-
/** ☆☆☆☆ ✔ Example: 4616 */
|
|
780
|
-
SensorRightBorder?: number;
|
|
781
|
-
/** ☆☆☆☆ ✔ Example: 8 */
|
|
782
|
-
SensorTopBorder?: number;
|
|
783
|
-
/** ☆☆☆☆ ✔ Example: 4816 */
|
|
784
|
-
SensorWidth?: number;
|
|
785
|
-
/** ★★★☆ ✔ Example: "Unknown (7824)" */
|
|
778
|
+
/** ★★★★ ✔ Example: "n/a" */
|
|
786
779
|
Sharpness?: string;
|
|
787
780
|
/** ★★★☆ ✔ Example: "1/999963365" */
|
|
788
781
|
ShutterSpeedValue?: string;
|
|
782
|
+
/** ★★★★ ✔ Example: "https://PhotoStructure.com/" */
|
|
783
|
+
Software?: string;
|
|
784
|
+
/** ☆☆☆☆ ✔ Example: "Sony Uncompressed 12-bit RAW" */
|
|
785
|
+
SonyRawFileType?: string;
|
|
786
|
+
/** ☆☆☆☆ ✔ Example: "8000 10400 12900 14100" */
|
|
787
|
+
SonyToneCurve?: string;
|
|
789
788
|
/** ☆☆☆☆ ✔ Example: 668058300 */
|
|
790
789
|
SpatialFrequencyResponse?: number;
|
|
791
790
|
/** ☆☆☆☆ ✔ Example: 800 */
|
|
@@ -798,49 +797,49 @@ export interface EXIFTags {
|
|
|
798
797
|
SubSecTime?: number;
|
|
799
798
|
/** ★☆☆☆ ✔ Example: 996 */
|
|
800
799
|
SubSecTimeDigitized?: number;
|
|
800
|
+
/** ★☆☆☆ ✔ Example: 999 */
|
|
801
|
+
SubSecTimeOriginal?: number;
|
|
801
802
|
/** ☆☆☆☆ ✔ Example: "Semantic Mask" */
|
|
802
803
|
SubfileType?: string;
|
|
803
804
|
/** ☆☆☆☆ ✔ Example: "967 967 1425 851" */
|
|
804
805
|
SubjectArea?: string;
|
|
805
806
|
/** ☆☆☆☆ ✔ Example: "99.99 m" */
|
|
806
807
|
SubjectDistance?: string;
|
|
807
|
-
/** ★★★☆ ✔ Example: "Unknown (
|
|
808
|
+
/** ★★★☆ ✔ Example: "Unknown (Macro)" */
|
|
808
809
|
SubjectDistanceRange?: string;
|
|
809
|
-
/**
|
|
810
|
+
/** ☆☆☆☆ ✔ Example: 1 */
|
|
811
|
+
SubjectLocation?: number;
|
|
812
|
+
/** ★★★★ ✔ Example: "(Binary data 10202 bytes, use -b option to extract)" */
|
|
810
813
|
ThumbnailImage?: BinaryField;
|
|
814
|
+
/** ★★★★ ✔ Example: 9998 */
|
|
815
|
+
ThumbnailLength?: number;
|
|
816
|
+
/** ★★★★ ✔ Example: 998 */
|
|
817
|
+
ThumbnailOffset?: number;
|
|
811
818
|
/** ☆☆☆☆ ✔ Example: "(Binary data 57816 bytes, use -b option to extract)" */
|
|
812
819
|
ThumbnailTIFF?: BinaryField;
|
|
813
820
|
/** ☆☆☆☆ ✔ Example: "(Binary data 447 bytes, use -b option to extract)" */
|
|
814
821
|
TileByteCounts?: BinaryField | string;
|
|
815
822
|
/** ☆☆☆☆ ✔ Example: 512 */
|
|
816
823
|
TileLength?: number;
|
|
817
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data
|
|
824
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 508 bytes, use -b option to extract)" */
|
|
818
825
|
TileOffsets?: BinaryField | string;
|
|
819
826
|
/** ☆☆☆☆ ✔ Example: 512 */
|
|
820
827
|
TileWidth?: number;
|
|
821
828
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
822
829
|
TimeZoneOffset?: number | string;
|
|
823
|
-
/** ☆☆☆☆ Example: 0 */
|
|
824
|
-
Title?: string;
|
|
825
830
|
/** ☆☆☆☆ ✔ Example: "(Binary data 3636 bytes, use -b option to extract)" */
|
|
826
831
|
TransferFunction?: BinaryField | string;
|
|
827
832
|
/** ☆☆☆☆ ✔ Example: "motorola XT1254" */
|
|
828
833
|
UniqueCameraModel?: string;
|
|
829
834
|
/** ★★★☆ ✔ Example: "This is a comment." */
|
|
830
835
|
UserComment?: string;
|
|
831
|
-
/** ☆☆☆☆ ✔ Example: "16 0 32 144 336 592 912 1280 1712 2208 2736 3312 3920 454…72 6544" */
|
|
832
|
-
VignettingCorrParams?: string;
|
|
833
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
834
|
-
VignettingCorrection?: string;
|
|
835
|
-
/** ☆☆☆☆ ✔ Example: 538 */
|
|
836
|
-
WBBlueLevel?: number;
|
|
837
|
-
/** ☆☆☆☆ ✔ Example: 265 */
|
|
838
|
-
WBGreenLevel?: number;
|
|
839
|
-
/** ☆☆☆☆ ✔ Example: 737 */
|
|
840
|
-
WBRedLevel?: number;
|
|
841
836
|
/** ☆☆☆☆ ✔ Example: 0.1 */
|
|
842
837
|
WaterDepth?: number;
|
|
843
|
-
/**
|
|
838
|
+
/** ★★★★ ✔ Example: "White Preset" */
|
|
839
|
+
WhiteBalance?: string;
|
|
840
|
+
/** ☆☆☆☆ ✔ Example: 65535 */
|
|
841
|
+
WhiteLevel?: number;
|
|
842
|
+
/** ☆☆☆☆ ✔ Example: "9696 8192 8192 7136" */
|
|
844
843
|
WhitePoint?: string;
|
|
845
844
|
/** ☆☆☆☆ ✔ Example: "Norm De Plume" */
|
|
846
845
|
XPAuthor?: string;
|
|
@@ -852,37 +851,17 @@ export interface EXIFTags {
|
|
|
852
851
|
XPSubject?: string;
|
|
853
852
|
/** ☆☆☆☆ ✔ Example: "楆慮敤琠牡敤攠汉慨䈠汥Ⅱ" */
|
|
854
853
|
XPTitle?: string;
|
|
854
|
+
/** ★★★★ ✔ Example: 99 */
|
|
855
|
+
XResolution?: number;
|
|
855
856
|
/** ☆☆☆☆ ✔ Example: "0.299 0.587 0.114" */
|
|
856
857
|
YCbCrCoefficients?: string;
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
/**
|
|
860
|
-
|
|
861
|
-
/** ☆☆☆☆ ✔ Example: 3200 */
|
|
862
|
-
AutoISOMin?: number;
|
|
863
|
-
/** ☆☆☆☆ ✔ Example: "Up" */
|
|
864
|
-
AutoRotation?: string;
|
|
865
|
-
/** ☆☆☆☆ ✔ Example: "Photo Global Settings" */
|
|
866
|
-
DeviceName?: string;
|
|
867
|
-
/** ☆☆☆☆ ✔ Example: "OFF" */
|
|
868
|
-
HDRSetting?: string;
|
|
869
|
-
/** ☆☆☆☆ ✔ Example: "AUTO" */
|
|
870
|
-
MaximumShutterAngle?: string;
|
|
871
|
-
/** ☆☆☆☆ ✔ Example: "859830e2f50cb3397a6216f09553fce800000000000000000000000000000000" */
|
|
872
|
-
MediaUniqueID?: string;
|
|
873
|
-
/** ☆☆☆☆ ✔ Example: "7.6.4" */
|
|
874
|
-
MetadataVersion?: string;
|
|
875
|
-
/** ☆☆☆☆ ✔ Example: "12MP_W" */
|
|
876
|
-
PhotoResolution?: string;
|
|
877
|
-
/** ☆☆☆☆ ✔ Example: "On" */
|
|
878
|
-
ProTune?: string;
|
|
879
|
-
/** ☆☆☆☆ ✔ Example: "4_1SEC" */
|
|
880
|
-
Rate?: string;
|
|
881
|
-
/** ☆☆☆☆ ✔ Example: "AUTO" */
|
|
882
|
-
WhiteBalance?: string;
|
|
858
|
+
/** ★★★★ ✔ Example: "Unknown (512)" */
|
|
859
|
+
YCbCrPositioning?: string;
|
|
860
|
+
/** ★★★★ ✔ Example: 99 */
|
|
861
|
+
YResolution?: number;
|
|
883
862
|
}
|
|
884
863
|
export interface FlashPixTags {
|
|
885
|
-
/** ☆☆☆☆ Example: "(Binary data
|
|
864
|
+
/** ☆☆☆☆ Example: "(Binary data 20796 bytes, use -b option to extract)" */
|
|
886
865
|
AudioStream?: BinaryField | string;
|
|
887
866
|
/** ☆☆☆☆ ✔ Example: "Unicode UTF-16, little endian" */
|
|
888
867
|
CodePage?: string;
|
|
@@ -900,69 +879,11 @@ export interface FlashPixTags {
|
|
|
900
879
|
ExtensionName?: string;
|
|
901
880
|
/** ☆☆☆☆ ✔ Example: "Invalidated By Modification" */
|
|
902
881
|
ExtensionPersistence?: string;
|
|
903
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data
|
|
882
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 57881 bytes, use -b option to extract)" */
|
|
904
883
|
ScreenNail?: BinaryField | string;
|
|
905
884
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
906
885
|
UsedExtensionNumbers?: number;
|
|
907
886
|
}
|
|
908
|
-
export interface IPTCTags {
|
|
909
|
-
/** ☆☆☆☆ ✔ Example: 4 */
|
|
910
|
-
ApplicationRecordVersion?: number;
|
|
911
|
-
/** ☆☆☆☆ Example: */
|
|
912
|
-
"Caption-Abstract"?: string;
|
|
913
|
-
/** ☆☆☆☆ ✔ Example: "" */
|
|
914
|
-
Category?: string;
|
|
915
|
-
/** ☆☆☆☆ ✔ Example: "Seattle" */
|
|
916
|
-
City?: string;
|
|
917
|
-
/** ☆☆☆☆ ✔ Example: "UTF8" */
|
|
918
|
-
CodedCharacterSet?: string;
|
|
919
|
-
/** ☆☆☆☆ ✔ Example: "Donna Ringmanumba" */
|
|
920
|
-
Contact?: string;
|
|
921
|
-
/** ☆☆☆☆ ✔ Example: "photo by Jenny Snapsalot" */
|
|
922
|
-
Credit?: string;
|
|
923
|
-
/** ☆☆☆☆ ✔ Example: "" */
|
|
924
|
-
DateSent?: string;
|
|
925
|
-
/** ☆☆☆☆ ✔ Example: "" */
|
|
926
|
-
Destination?: string;
|
|
927
|
-
/** ☆☆☆☆ ✔ Example: "2021:03:16" */
|
|
928
|
-
DigitalCreationDate?: ExifDate | string;
|
|
929
|
-
/** ☆☆☆☆ ✔ Example: "20:25:15" */
|
|
930
|
-
DigitalCreationTime?: ExifTime | string;
|
|
931
|
-
/** ☆☆☆☆ ✔ Example: "" */
|
|
932
|
-
EnvelopeNumber?: string;
|
|
933
|
-
/** ☆☆☆☆ ✔ Example: "5 (normal urgency)" */
|
|
934
|
-
EnvelopePriority?: string;
|
|
935
|
-
/** ☆☆☆☆ ✔ Example: "Tagged Image File Format (Adobe/Aldus Image data)" */
|
|
936
|
-
FileFormat?: string;
|
|
937
|
-
/** ☆☆☆☆ ✔ Example: 2 */
|
|
938
|
-
FileVersion?: number;
|
|
939
|
-
/** ☆☆☆☆ ✔ Example: "" */
|
|
940
|
-
Headline?: string;
|
|
941
|
-
/** ☆☆☆☆ ✔ Example: ["red","car"] */
|
|
942
|
-
Keywords?: string | string[];
|
|
943
|
-
/** ☆☆☆☆ ✔ Example: "Artist deep into to wine and flower" */
|
|
944
|
-
ObjectName?: string;
|
|
945
|
-
/** ☆☆☆☆ ✔ Example: "" */
|
|
946
|
-
OriginalTransmissionReference?: string;
|
|
947
|
-
/** ☆☆☆☆ ✔ Example: "Tagged:1, ColorClass:2, Rating:0, FrameNum:000940" */
|
|
948
|
-
Prefs?: string;
|
|
949
|
-
/** ☆☆☆☆ ✔ Example: "4.13.0" */
|
|
950
|
-
ProgramVersion?: string;
|
|
951
|
-
/** ☆☆☆☆ ✔ Example: "" */
|
|
952
|
-
ServiceIdentifier?: string;
|
|
953
|
-
/** ☆☆☆☆ ✔ Example: "Renee Lanette Sims" */
|
|
954
|
-
Source?: string;
|
|
955
|
-
/** ☆☆☆☆ ✔ Example: "" */
|
|
956
|
-
SpecialInstructions?: string;
|
|
957
|
-
/** ☆☆☆☆ ✔ Example: "" */
|
|
958
|
-
SupplementalCategories?: string;
|
|
959
|
-
/** ☆☆☆☆ ✔ Example: "23:47:07+01:00" */
|
|
960
|
-
TimeCreated?: ExifTime | string;
|
|
961
|
-
/** ☆☆☆☆ ✔ Example: "" */
|
|
962
|
-
TimeSent?: string;
|
|
963
|
-
/** ☆☆☆☆ ✔ Example: "0 (reserved)" */
|
|
964
|
-
Urgency?: string;
|
|
965
|
-
}
|
|
966
887
|
export interface MPFTags {
|
|
967
888
|
/** ★★☆☆ ✔ Example: 9697 */
|
|
968
889
|
DependentImage1EntryNumber?: number;
|
|
@@ -1016,8 +937,6 @@ export interface MetaTags {
|
|
|
1016
937
|
FilmProductCode?: number;
|
|
1017
938
|
/** ☆☆☆☆ Example: 1 */
|
|
1018
939
|
FilmSize?: number;
|
|
1019
|
-
/** ☆☆☆☆ Example: 16 */
|
|
1020
|
-
FrameNumber?: number;
|
|
1021
940
|
/** ☆☆☆☆ Example: 6 */
|
|
1022
941
|
ImageSourceEK?: number;
|
|
1023
942
|
/** ☆☆☆☆ ✔ Example: "0110" */
|
|
@@ -1033,6 +952,72 @@ export interface PanasonicRawTags {
|
|
|
1033
952
|
/** ☆☆☆☆ ✔ Example: 7 */
|
|
1034
953
|
NumWBEntries?: number;
|
|
1035
954
|
}
|
|
955
|
+
export interface IPTCTags {
|
|
956
|
+
/** ☆☆☆☆ ✔ Example: 4 */
|
|
957
|
+
ApplicationRecordVersion?: number;
|
|
958
|
+
/** ☆☆☆☆ Example: */
|
|
959
|
+
"Caption-Abstract"?: string;
|
|
960
|
+
/** ☆☆☆☆ ✔ Example: "Other" */
|
|
961
|
+
Category?: string;
|
|
962
|
+
/** ☆☆☆☆ ✔ Example: "TEDDINGTON" */
|
|
963
|
+
City?: string;
|
|
964
|
+
/** ☆☆☆☆ ✔ Example: "UTF8" */
|
|
965
|
+
CodedCharacterSet?: string;
|
|
966
|
+
/** ☆☆☆☆ ✔ Example: "Donna Ringmanumba" */
|
|
967
|
+
Contact?: string;
|
|
968
|
+
/** ☆☆☆☆ ✔ Example: "Creative Commons Attribution 4.0 International" */
|
|
969
|
+
CopyrightNotice?: string;
|
|
970
|
+
/** ☆☆☆☆ ✔ Example: "photo by Jenny Snapsalot" */
|
|
971
|
+
Credit?: string;
|
|
972
|
+
/** ☆☆☆☆ ✔ Example: "" */
|
|
973
|
+
DateSent?: string;
|
|
974
|
+
/** ☆☆☆☆ ✔ Example: "2022:10:25 11:21:56-07:00" */
|
|
975
|
+
DateTimeCreated?: ExifDateTime | string;
|
|
976
|
+
/** ☆☆☆☆ ✔ Example: "" */
|
|
977
|
+
Destination?: string;
|
|
978
|
+
/** ☆☆☆☆ ✔ Example: "2021:03:16" */
|
|
979
|
+
DigitalCreationDate?: ExifDate | string;
|
|
980
|
+
/** ☆☆☆☆ ✔ Example: "20:25:15" */
|
|
981
|
+
DigitalCreationTime?: ExifTime | string;
|
|
982
|
+
/** ☆☆☆☆ ✔ Example: "" */
|
|
983
|
+
EnvelopeNumber?: string;
|
|
984
|
+
/** ☆☆☆☆ ✔ Example: "5 (normal urgency)" */
|
|
985
|
+
EnvelopePriority?: string;
|
|
986
|
+
/** ☆☆☆☆ ✔ Example: 4 */
|
|
987
|
+
EnvelopeRecordVersion?: number;
|
|
988
|
+
/** ☆☆☆☆ ✔ Example: "X3F" */
|
|
989
|
+
FileFormat?: string;
|
|
990
|
+
/** ☆☆☆☆ ✔ Example: 2 */
|
|
991
|
+
FileVersion?: number;
|
|
992
|
+
/** ☆☆☆☆ ✔ Example: "" */
|
|
993
|
+
Headline?: string;
|
|
994
|
+
/** ☆☆☆☆ ✔ Example: ["red","car"] */
|
|
995
|
+
Keywords?: string | string[];
|
|
996
|
+
/** ☆☆☆☆ ✔ Example: "Artist deep into to wine and flower" */
|
|
997
|
+
ObjectName?: string;
|
|
998
|
+
/** ☆☆☆☆ ✔ Example: "" */
|
|
999
|
+
OriginalTransmissionReference?: string;
|
|
1000
|
+
/** ☆☆☆☆ ✔ Example: "digiKam" */
|
|
1001
|
+
OriginatingProgram?: string;
|
|
1002
|
+
/** ☆☆☆☆ ✔ Example: "Tagged:1, ColorClass:2, Rating:0, FrameNum:000940" */
|
|
1003
|
+
Prefs?: string;
|
|
1004
|
+
/** ☆☆☆☆ ✔ Example: "4.13.0" */
|
|
1005
|
+
ProgramVersion?: string;
|
|
1006
|
+
/** ☆☆☆☆ ✔ Example: "" */
|
|
1007
|
+
ServiceIdentifier?: string;
|
|
1008
|
+
/** ☆☆☆☆ ✔ Example: "Renee Lanette Sims" */
|
|
1009
|
+
Source?: string;
|
|
1010
|
+
/** ☆☆☆☆ ✔ Example: "" */
|
|
1011
|
+
SpecialInstructions?: string;
|
|
1012
|
+
/** ☆☆☆☆ ✔ Example: "" */
|
|
1013
|
+
SupplementalCategories?: string;
|
|
1014
|
+
/** ☆☆☆☆ ✔ Example: "23:59:46.92" */
|
|
1015
|
+
TimeCreated?: ExifTime | string;
|
|
1016
|
+
/** ☆☆☆☆ ✔ Example: "" */
|
|
1017
|
+
TimeSent?: string;
|
|
1018
|
+
/** ☆☆☆☆ ✔ Example: "1 (most urgent)" */
|
|
1019
|
+
Urgency?: string;
|
|
1020
|
+
}
|
|
1036
1021
|
export interface PhotoshopTags {
|
|
1037
1022
|
/** ☆☆☆☆ ✔ Example: true */
|
|
1038
1023
|
CopyrightFlag?: boolean;
|
|
@@ -1040,20 +1025,34 @@ export interface PhotoshopTags {
|
|
|
1040
1025
|
DisplayedUnitsX?: string;
|
|
1041
1026
|
/** ☆☆☆☆ ✔ Example: "inches" */
|
|
1042
1027
|
DisplayedUnitsY?: string;
|
|
1028
|
+
/** ☆☆☆☆ ✔ Example: 30 */
|
|
1029
|
+
GlobalAltitude?: number;
|
|
1030
|
+
/** ☆☆☆☆ ✔ Example: 90 */
|
|
1031
|
+
GlobalAngle?: number;
|
|
1032
|
+
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
1033
|
+
HasRealMergedData?: string;
|
|
1043
1034
|
/** ☆☆☆☆ ✔ Example: "fd826cdf97ac15335b426a20d23c1041" */
|
|
1044
1035
|
IPTCDigest?: string;
|
|
1036
|
+
/** ☆☆☆☆ ✔ Example: 1 */
|
|
1037
|
+
NumSlices?: number;
|
|
1045
1038
|
/** ☆☆☆☆ ✔ Example: "Standard" */
|
|
1046
1039
|
PhotoshopFormat?: string;
|
|
1047
1040
|
/** ☆☆☆☆ ✔ Example: 9 */
|
|
1048
1041
|
PhotoshopQuality?: number;
|
|
1049
1042
|
/** ☆☆☆☆ ✔ Example: "(Binary data 5768 bytes, use -b option to extract)" */
|
|
1050
1043
|
PhotoshopThumbnail?: BinaryField | string;
|
|
1044
|
+
/** ☆☆☆☆ ✔ Example: "0 0" */
|
|
1045
|
+
PrintPosition?: string;
|
|
1051
1046
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
1052
|
-
|
|
1053
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1054
|
-
|
|
1055
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1056
|
-
|
|
1047
|
+
PrintScale?: number;
|
|
1048
|
+
/** ☆☆☆☆ ✔ Example: "Centered" */
|
|
1049
|
+
PrintStyle?: string;
|
|
1050
|
+
/** ☆☆☆☆ ✔ Example: "Adobe Photoshop CS" */
|
|
1051
|
+
ReaderName?: string;
|
|
1052
|
+
/** ☆☆☆☆ ✔ Example: "panasonic_lumix_dmc_lx15_02" */
|
|
1053
|
+
SlicesGroupName?: string;
|
|
1054
|
+
/** ☆☆☆☆ ✔ Example: "Adobe Photoshop" */
|
|
1055
|
+
WriterName?: string;
|
|
1057
1056
|
}
|
|
1058
1057
|
export interface PrintIMTags {
|
|
1059
1058
|
/** ★★★☆ ✔ Example: "0300" */
|
|
@@ -1081,6 +1080,10 @@ export interface QuickTimeTags {
|
|
|
1081
1080
|
/** ☆☆☆☆ ✔ Example: "65535 65535 65535" */
|
|
1082
1081
|
BackgroundColor?: string;
|
|
1083
1082
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1083
|
+
Balance?: number;
|
|
1084
|
+
/** ☆☆☆☆ ✔ Example: 8 */
|
|
1085
|
+
BitDepth?: number;
|
|
1086
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1084
1087
|
ChapterListTrackID?: number;
|
|
1085
1088
|
/** ☆☆☆☆ ✔ Example: "3840x2160" */
|
|
1086
1089
|
CleanApertureDimensions?: string;
|
|
@@ -1100,12 +1103,24 @@ export interface QuickTimeTags {
|
|
|
1100
1103
|
CreationDate?: ExifDateTime | string;
|
|
1101
1104
|
/** ☆☆☆☆ ✔ Example: "0 s" */
|
|
1102
1105
|
CurrentTime?: string;
|
|
1106
|
+
/** ☆☆☆☆ ✔ Example: 9.5095 */
|
|
1107
|
+
Duration?: number;
|
|
1103
1108
|
/** ☆☆☆☆ ✔ Example: "3840x2160" */
|
|
1104
1109
|
EncodedPixelsDimensions?: string;
|
|
1105
1110
|
/** ☆☆☆☆ ✔ Example: "Helvetica" */
|
|
1106
1111
|
FontName?: string;
|
|
1107
1112
|
/** ☆☆☆☆ ✔ Example: "51 deg 6' 13.32" N, 0 deg 52' 23.52" W, 99.22 m Above Sea Level" */
|
|
1108
1113
|
GPSCoordinates?: string;
|
|
1114
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1115
|
+
GenBalance?: number;
|
|
1116
|
+
/** ☆☆☆☆ ✔ Example: "0 0 0" */
|
|
1117
|
+
GenFlags?: string;
|
|
1118
|
+
/** ☆☆☆☆ ✔ Example: "ditherCopy" */
|
|
1119
|
+
GenGraphicsMode?: string;
|
|
1120
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1121
|
+
GenMediaVersion?: number;
|
|
1122
|
+
/** ☆☆☆☆ ✔ Example: "32768 32768 32768" */
|
|
1123
|
+
GenOpColor?: string;
|
|
1109
1124
|
/** ☆☆☆☆ ✔ Example: "srcCopy" */
|
|
1110
1125
|
GraphicsMode?: string;
|
|
1111
1126
|
/** ☆☆☆☆ ✔ Example: "Data Handler" */
|
|
@@ -1114,6 +1129,8 @@ export interface QuickTimeTags {
|
|
|
1114
1129
|
HandlerDescription?: string;
|
|
1115
1130
|
/** ☆☆☆☆ ✔ Example: "Metadata Tags" */
|
|
1116
1131
|
HandlerType?: string;
|
|
1132
|
+
/** ☆☆☆☆ ✔ Example: "Panasonic" */
|
|
1133
|
+
HandlerVendorID?: string;
|
|
1117
1134
|
/** ☆☆☆☆ ✔ Example: 4.798027 */
|
|
1118
1135
|
LocationAccuracyHorizontal?: number;
|
|
1119
1136
|
/** ☆☆☆☆ ✔ Example: "MP4 v2 [ISO 14496-14]" */
|
|
@@ -1132,6 +1149,8 @@ export interface QuickTimeTags {
|
|
|
1132
1149
|
MediaDuration?: number;
|
|
1133
1150
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1134
1151
|
MediaHeaderVersion?: number;
|
|
1152
|
+
/** ☆☆☆☆ ✔ Example: "und" */
|
|
1153
|
+
MediaLanguageCode?: string;
|
|
1135
1154
|
/** ☆☆☆☆ ✔ Example: "2023:06:11 13:30:46" */
|
|
1136
1155
|
MediaModifyDate?: ExifDateTime | string;
|
|
1137
1156
|
/** ☆☆☆☆ ✔ Example: 8000 */
|
|
@@ -1172,8 +1191,6 @@ export interface QuickTimeTags {
|
|
|
1172
1191
|
SelectionTime?: string;
|
|
1173
1192
|
/** ☆☆☆☆ ✔ Example: "43333139313032343731363032300000" */
|
|
1174
1193
|
SerialNumberHash?: string;
|
|
1175
|
-
/** ☆☆☆☆ ✔ Example: "https://PhotoStructure.com/" */
|
|
1176
|
-
Software?: string;
|
|
1177
1194
|
/** ☆☆☆☆ ✔ Example: 720 */
|
|
1178
1195
|
SourceImageHeight?: number;
|
|
1179
1196
|
/** ☆☆☆☆ ✔ Example: 640 */
|
|
@@ -1208,18 +1225,30 @@ export interface QuickTimeTags {
|
|
|
1208
1225
|
TransferCharacteristics?: string;
|
|
1209
1226
|
/** ☆☆☆☆ ✔ Example: "Panasonic" */
|
|
1210
1227
|
VendorID?: string;
|
|
1211
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1212
|
-
VideoFrameRate?:
|
|
1228
|
+
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
1229
|
+
VideoFrameRate?: string;
|
|
1213
1230
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1214
1231
|
VideoFullRangeFlag?: number;
|
|
1215
1232
|
}
|
|
1216
1233
|
export interface RAFTags {
|
|
1234
|
+
/** ☆☆☆☆ ✔ Example: "294.2 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1 6.8e-05 0.000….001464" */
|
|
1235
|
+
ChromaticAberrationParams?: string;
|
|
1236
|
+
/** ☆☆☆☆ ✔ Example: "12 12 12 12" */
|
|
1237
|
+
FujiLayout?: string;
|
|
1238
|
+
/** ☆☆☆☆ ✔ Example: "267.4545455 0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1 0 0 0…5 0.488" */
|
|
1239
|
+
GeometricDistortionParams?: string;
|
|
1217
1240
|
/** ☆☆☆☆ ✔ Example: -1.7 */
|
|
1218
1241
|
RawExposureBias?: number;
|
|
1219
1242
|
/** ☆☆☆☆ ✔ Example: "6 16" */
|
|
1220
1243
|
RawImageCropTopLeft?: string;
|
|
1244
|
+
/** ☆☆☆☆ ✔ Example: "4896x3264" */
|
|
1245
|
+
RawImageCroppedSize?: string;
|
|
1246
|
+
/** ☆☆☆☆ ✔ Example: 3296 */
|
|
1247
|
+
RawImageFullHeight?: number;
|
|
1221
1248
|
/** ☆☆☆☆ ✔ Example: "5120x3288" */
|
|
1222
1249
|
RawImageFullSize?: string;
|
|
1250
|
+
/** ☆☆☆☆ ✔ Example: 5120 */
|
|
1251
|
+
RawImageFullWidth?: number;
|
|
1223
1252
|
/** ☆☆☆☆ ✔ Example: "267.4545455 0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1 100 9…3 94.11" */
|
|
1224
1253
|
VignettingParams?: string;
|
|
1225
1254
|
/** ☆☆☆☆ ✔ Example: "GRBGBR BGGRGG RGGBGG GBRGRB RGGBGG BGGRGG" */
|
|
@@ -1246,8 +1275,6 @@ export interface RIFFTags {
|
|
|
1246
1275
|
SampleSize?: string;
|
|
1247
1276
|
/** ☆☆☆☆ ✔ Example: 2 */
|
|
1248
1277
|
StreamCount?: number;
|
|
1249
|
-
/** ☆☆☆☆ ✔ Example: "Video" */
|
|
1250
|
-
StreamType?: string;
|
|
1251
1278
|
/** ☆☆☆☆ ✔ Example: "mjpg" */
|
|
1252
1279
|
VideoCodec?: string;
|
|
1253
1280
|
/** ☆☆☆☆ ✔ Example: 388 */
|
|
@@ -1256,8 +1283,6 @@ export interface RIFFTags {
|
|
|
1256
1283
|
export interface JFIFTags {
|
|
1257
1284
|
/** ★★★☆ ✔ Example: 1.02 */
|
|
1258
1285
|
JFIFVersion?: number;
|
|
1259
|
-
/** ★★★☆ ✔ Example: "inches" */
|
|
1260
|
-
ResolutionUnit?: string;
|
|
1261
1286
|
}
|
|
1262
1287
|
export interface MakerNotesTags {
|
|
1263
1288
|
/** ☆☆☆☆ Example: "(Binary data 1024 bytes, use -b option to extract)" */
|
|
@@ -1270,10 +1295,18 @@ export interface MakerNotesTags {
|
|
|
1270
1295
|
AEAperture?: number;
|
|
1271
1296
|
/** ☆☆☆☆ ✔ Example: 8 */
|
|
1272
1297
|
AEApertureSteps?: number;
|
|
1298
|
+
/** ☆☆☆☆ ✔ Example: 51 */
|
|
1299
|
+
AEAverage?: number;
|
|
1300
|
+
/** ☆☆☆☆ ✔ Example: "On" */
|
|
1301
|
+
AEBAutoCancel?: string;
|
|
1273
1302
|
/** ★★☆☆ ✔ Example: 0 */
|
|
1274
1303
|
AEBBracketValue?: number;
|
|
1304
|
+
/** ☆☆☆☆ ✔ Example: "0,-,+" */
|
|
1305
|
+
AEBSequence?: string;
|
|
1275
1306
|
/** ☆☆☆☆ ✔ Example: "0,-,+/Enabled" */
|
|
1276
1307
|
AEBSequenceAutoCancel?: string;
|
|
1308
|
+
/** ☆☆☆☆ ✔ Example: "7 shots" */
|
|
1309
|
+
AEBShotCount?: string;
|
|
1277
1310
|
/** ☆☆☆☆ ✔ Example: 0.5 */
|
|
1278
1311
|
AEBXv?: number;
|
|
1279
1312
|
/** ☆☆☆☆ ✔ Example: "AE Bracketing Disabled" */
|
|
@@ -1316,6 +1349,12 @@ export interface MakerNotesTags {
|
|
|
1316
1349
|
AEMinExposureTime?: string;
|
|
1317
1350
|
/** ☆☆☆☆ ✔ Example: "Sv or Green Mode" */
|
|
1318
1351
|
AEProgramMode?: string;
|
|
1352
|
+
/** ★☆☆☆ ✔ Example: "Normal AE" */
|
|
1353
|
+
AESetting?: string;
|
|
1354
|
+
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
1355
|
+
AEStable?: string;
|
|
1356
|
+
/** ☆☆☆☆ ✔ Example: 243 */
|
|
1357
|
+
AETarget?: number;
|
|
1319
1358
|
/** ☆☆☆☆ Example: "Daylight Fluorescent" */
|
|
1320
1359
|
AEWhiteBalance?: string;
|
|
1321
1360
|
/** ☆☆☆☆ ✔ Example: 0.5 */
|
|
@@ -1332,6 +1371,8 @@ export interface MakerNotesTags {
|
|
|
1332
1371
|
AFAperture?: number;
|
|
1333
1372
|
/** ☆☆☆☆ ✔ Example: 840 */
|
|
1334
1373
|
AFAreaHeight?: number;
|
|
1374
|
+
/** ★☆☆☆ ✔ Example: "994 18 18 18 18 18 18 18 18" */
|
|
1375
|
+
AFAreaHeights?: string;
|
|
1335
1376
|
/** ☆☆☆☆ ✔ Example: "Auto" */
|
|
1336
1377
|
AFAreaIllumination?: string;
|
|
1337
1378
|
/** ★★★☆ ✔ Example: "Zone AF" */
|
|
@@ -1346,10 +1387,16 @@ export interface MakerNotesTags {
|
|
|
1346
1387
|
AFAreaSelectionMethod?: string;
|
|
1347
1388
|
/** ☆☆☆☆ ✔ Example: 996 */
|
|
1348
1389
|
AFAreaWidth?: number;
|
|
1390
|
+
/** ★☆☆☆ ✔ Example: "994 18 18 18 18 18 18 18 18" */
|
|
1391
|
+
AFAreaWidths?: string;
|
|
1349
1392
|
/** ☆☆☆☆ ✔ Example: 4388 */
|
|
1350
1393
|
AFAreaXPosition?: number;
|
|
1394
|
+
/** ★☆☆☆ ✔ Example: "999 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0…0 0 0 0" */
|
|
1395
|
+
AFAreaXPositions?: string;
|
|
1351
1396
|
/** ☆☆☆☆ ✔ Example: 744 */
|
|
1352
1397
|
AFAreaYPosition?: number;
|
|
1398
|
+
/** ★☆☆☆ ✔ Example: "950 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0…0 0 0 0" */
|
|
1399
|
+
AFAreaYPositions?: string;
|
|
1353
1400
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
1354
1401
|
AFAreaZoneSize?: string;
|
|
1355
1402
|
/** ☆☆☆☆ ✔ Example: "none" */
|
|
@@ -1362,6 +1409,8 @@ export interface MakerNotesTags {
|
|
|
1362
1409
|
AFAssistLamp?: string;
|
|
1363
1410
|
/** ☆☆☆☆ ✔ Example: "No" */
|
|
1364
1411
|
AFButtonPressed?: string;
|
|
1412
|
+
/** ☆☆☆☆ ✔ Example: 4 */
|
|
1413
|
+
AFConfidence?: number;
|
|
1365
1414
|
/** ☆☆☆☆ ✔ Example: "Case 11" */
|
|
1366
1415
|
AFConfigTool?: string;
|
|
1367
1416
|
/** ☆☆☆☆ Example: "(Binary data 256 bytes, use -b option to extract)" */
|
|
@@ -1380,10 +1429,16 @@ export interface MakerNotesTags {
|
|
|
1380
1429
|
AFFineTuneIndex?: string;
|
|
1381
1430
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
1382
1431
|
AFIlluminator?: string;
|
|
1432
|
+
/** ★☆☆☆ ✔ Example: 88 */
|
|
1433
|
+
AFImageHeight?: number;
|
|
1434
|
+
/** ★☆☆☆ ✔ Example: 8688 */
|
|
1435
|
+
AFImageWidth?: number;
|
|
1383
1436
|
/** ☆☆☆☆ ✔ Example: "0400" */
|
|
1384
1437
|
AFInfo2Version?: string;
|
|
1385
1438
|
/** ☆☆☆☆ ✔ Example: "90 ms" */
|
|
1386
1439
|
AFIntegrationTime?: string;
|
|
1440
|
+
/** ☆☆☆☆ ✔ Example: 489 */
|
|
1441
|
+
AFMeasuredDepth?: number;
|
|
1387
1442
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1388
1443
|
AFMicroAdj?: number;
|
|
1389
1444
|
/** ☆☆☆☆ ✔ Example: "Unknown (3)" */
|
|
@@ -1394,6 +1449,8 @@ export interface MakerNotesTags {
|
|
|
1394
1449
|
AFMicroAdjValue?: number;
|
|
1395
1450
|
/** ☆☆☆☆ ✔ Example: "Disable; 0; 0; 0; 84" */
|
|
1396
1451
|
AFMicroadjustment?: string;
|
|
1452
|
+
/** ★☆☆☆ ✔ Example: "Zone" */
|
|
1453
|
+
AFMode?: string;
|
|
1397
1454
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
1398
1455
|
AFModeRestrictions?: string;
|
|
1399
1456
|
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
@@ -1414,6 +1471,8 @@ export interface MakerNotesTags {
|
|
|
1414
1471
|
AFPointBrightness?: string;
|
|
1415
1472
|
/** ☆☆☆☆ ✔ Example: 897 */
|
|
1416
1473
|
AFPointDetails?: number;
|
|
1474
|
+
/** ☆☆☆☆ ✔ Example: "Selected (pre-AF, focused)" */
|
|
1475
|
+
AFPointDisplayDuringFocus?: string;
|
|
1417
1476
|
/** ☆☆☆☆ ✔ Example: "On in Continuous Shooting and Manual Focusing" */
|
|
1418
1477
|
AFPointIllumination?: string;
|
|
1419
1478
|
/** ☆☆☆☆ ✔ Example: "Left (vertical)" */
|
|
@@ -1462,6 +1521,8 @@ export interface MakerNotesTags {
|
|
|
1462
1521
|
AFType?: string;
|
|
1463
1522
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
1464
1523
|
AFWithShutter?: string;
|
|
1524
|
+
/** ☆☆☆☆ ✔ Example: "Shooting not possible without focus" */
|
|
1525
|
+
AIServoContinuousShooting?: string;
|
|
1465
1526
|
/** ☆☆☆☆ ✔ Example: "Focus Priority" */
|
|
1466
1527
|
AIServoFirstImage?: string;
|
|
1467
1528
|
/** ☆☆☆☆ ✔ Example: "Unknown (2)" */
|
|
@@ -1476,22 +1537,40 @@ export interface MakerNotesTags {
|
|
|
1476
1537
|
AIServoTrackingMethod?: string;
|
|
1477
1538
|
/** ☆☆☆☆ ✔ Example: "Standard" */
|
|
1478
1539
|
AIServoTrackingSensitivity?: string;
|
|
1540
|
+
/** ☆☆☆☆ ✔ Example: "Off; Object Not Found" */
|
|
1541
|
+
AISubjectTrackingMode?: string;
|
|
1479
1542
|
/** ☆☆☆☆ ✔ Example: 2 */
|
|
1480
1543
|
AccelerationTracking?: number;
|
|
1481
1544
|
/** ☆☆☆☆ ✔ Example: "0.9421226483 0.0351725654 -0.3452420701" */
|
|
1482
1545
|
AccelerationVector?: string;
|
|
1483
1546
|
/** ☆☆☆☆ Example: "358.3 11.2" */
|
|
1484
1547
|
Accelerometer?: string;
|
|
1548
|
+
/** ☆☆☆☆ ✔ Example: 9 */
|
|
1549
|
+
AccelerometerX?: number;
|
|
1550
|
+
/** ☆☆☆☆ ✔ Example: 80 */
|
|
1551
|
+
AccelerometerY?: number;
|
|
1552
|
+
/** ☆☆☆☆ ✔ Example: 31 */
|
|
1553
|
+
AccelerometerZ?: number;
|
|
1554
|
+
/** ☆☆☆☆ ✔ Example: "00:00" */
|
|
1555
|
+
AccessorySerialNumber?: string;
|
|
1556
|
+
/** ☆☆☆☆ ✔ Example: "NO-ACCESSORY" */
|
|
1557
|
+
AccessoryType?: string;
|
|
1485
1558
|
/** ☆☆☆☆ Example: "+0.0" */
|
|
1486
1559
|
ActualCompensation?: string;
|
|
1487
1560
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
1488
1561
|
AddAspectRatioInfo?: string;
|
|
1489
1562
|
/** ☆☆☆☆ ✔ Example: "Disable" */
|
|
1490
1563
|
AddIPTCInformation?: string;
|
|
1564
|
+
/** ☆☆☆☆ ✔ Example: "On" */
|
|
1565
|
+
AddOriginalDecisionData?: string;
|
|
1491
1566
|
/** ☆☆☆☆ Example: "X3F Setting Mode" */
|
|
1492
1567
|
AdjustmentMode?: string;
|
|
1568
|
+
/** ☆☆☆☆ ✔ Example: "Toy Camera" */
|
|
1569
|
+
AdvancedFilter?: string;
|
|
1493
1570
|
/** ☆☆☆☆ ✔ Example: 9 */
|
|
1494
1571
|
AdvancedSceneType?: number;
|
|
1572
|
+
/** ☆☆☆☆ ✔ Example: "91 m" */
|
|
1573
|
+
Altitude?: string;
|
|
1495
1574
|
/** ☆☆☆☆ ✔ Example: "Standard" */
|
|
1496
1575
|
AmbienceSelection?: string;
|
|
1497
1576
|
/** ☆☆☆☆ Example: "95 F" */
|
|
@@ -1512,12 +1591,16 @@ export interface MakerNotesTags {
|
|
|
1512
1591
|
ApproximateFNumber?: number;
|
|
1513
1592
|
/** ☆☆☆☆ ✔ Example: "Soft Focus; 1280; 0; 0" */
|
|
1514
1593
|
ArtFilter?: string;
|
|
1594
|
+
/** ☆☆☆☆ ✔ Example: "Off; 0; 0; Partial Color 0; No Effect; 0; No Color Filter…0; 0; 0" */
|
|
1595
|
+
ArtFilterEffect?: string;
|
|
1515
1596
|
/** ☆☆☆☆ Example: "Unknown (8305)" */
|
|
1516
1597
|
ArtMode?: string;
|
|
1517
1598
|
/** ☆☆☆☆ Example: "0 0 0" */
|
|
1518
1599
|
ArtModeParameters?: string;
|
|
1519
1600
|
/** ☆☆☆☆ ✔ Example: "0 192 4607 3263" */
|
|
1520
1601
|
AspectFrame?: string;
|
|
1602
|
+
/** ★☆☆☆ ✔ Example: "Unknown (942874672)" */
|
|
1603
|
+
AspectRatio?: string;
|
|
1521
1604
|
/** ☆☆☆☆ ✔ Example: "Auto Bracketing" */
|
|
1522
1605
|
AssignBktButton?: string;
|
|
1523
1606
|
/** ☆☆☆☆ ✔ Example: "LCD brightness" */
|
|
@@ -1558,12 +1641,16 @@ export interface MakerNotesTags {
|
|
|
1558
1641
|
AutoBracketOrder?: string;
|
|
1559
1642
|
/** ☆☆☆☆ ✔ Example: "Exposure" */
|
|
1560
1643
|
AutoBracketSet?: string;
|
|
1644
|
+
/** ★☆☆☆ ✔ Example: "On" */
|
|
1645
|
+
AutoBracketing?: string;
|
|
1561
1646
|
/** ☆☆☆☆ ✔ Example: "Flash/Speed" */
|
|
1562
1647
|
AutoBracketingMode?: string;
|
|
1563
1648
|
/** ☆☆☆☆ ✔ Example: "AE Only" */
|
|
1564
1649
|
AutoBracketingSet?: string;
|
|
1565
1650
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
1566
1651
|
AutoDistortionControl?: string;
|
|
1652
|
+
/** ☆☆☆☆ ✔ Example: "400%" */
|
|
1653
|
+
AutoDynamicRange?: string;
|
|
1567
1654
|
/** ★★☆☆ ✔ Example: "On" */
|
|
1568
1655
|
AutoExposureBracketing?: string;
|
|
1569
1656
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
@@ -1578,6 +1665,8 @@ export interface MakerNotesTags {
|
|
|
1578
1665
|
AutoLightingOptimizer?: string;
|
|
1579
1666
|
/** ☆☆☆☆ ✔ Example: "No" */
|
|
1580
1667
|
AutoPortraitFramed?: string;
|
|
1668
|
+
/** ★☆☆☆ ✔ Example: "Rotate 90 CW" */
|
|
1669
|
+
AutoRotate?: string;
|
|
1581
1670
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
1582
1671
|
AuxiliaryLens?: string;
|
|
1583
1672
|
/** ☆☆☆☆ ✔ Example: 6.7 */
|
|
@@ -1596,8 +1685,10 @@ export interface MakerNotesTags {
|
|
|
1596
1685
|
BabyAge?: string;
|
|
1597
1686
|
/** ☆☆☆☆ ✔ Example: "" */
|
|
1598
1687
|
BabyName?: string;
|
|
1599
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1688
|
+
/** ☆☆☆☆ ✔ Example: "R0000148" */
|
|
1600
1689
|
Barcode?: string;
|
|
1690
|
+
/** ☆☆☆☆ ✔ Example: "0100" */
|
|
1691
|
+
BarometerInfoVersion?: string;
|
|
1601
1692
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1602
1693
|
BaseExposureCompensation?: number;
|
|
1603
1694
|
/** ★★☆☆ ✔ Example: 800 */
|
|
@@ -1610,6 +1701,8 @@ export interface MakerNotesTags {
|
|
|
1610
1701
|
BatteryState?: string;
|
|
1611
1702
|
/** ☆☆☆☆ ✔ Example: "50.6 C" */
|
|
1612
1703
|
BatteryTemperature?: string;
|
|
1704
|
+
/** ☆☆☆☆ ✔ Example: "NB-13L" */
|
|
1705
|
+
BatteryType?: string;
|
|
1613
1706
|
/** ☆☆☆☆ Example: "8.52 V" */
|
|
1614
1707
|
BatteryVoltage?: string;
|
|
1615
1708
|
/** ☆☆☆☆ Example: "Unknown (0)" */
|
|
@@ -1636,8 +1729,14 @@ export interface MakerNotesTags {
|
|
|
1636
1729
|
BlackPoint?: string;
|
|
1637
1730
|
/** ☆☆☆☆ Example: "n/a" */
|
|
1638
1731
|
BleachBypassToning?: string;
|
|
1732
|
+
/** ★★☆☆ ✔ Example: 46 */
|
|
1733
|
+
BlueBalance?: number;
|
|
1734
|
+
/** ☆☆☆☆ Example: "5C" */
|
|
1735
|
+
BlueGain?: string;
|
|
1639
1736
|
/** ☆☆☆☆ Example: "Off; 0; 0; 0" */
|
|
1640
1737
|
BlurControl?: string;
|
|
1738
|
+
/** ★☆☆☆ ✔ Example: "None" */
|
|
1739
|
+
BlurWarning?: string;
|
|
1641
1740
|
/** ☆☆☆☆ ✔ Example: "28 C" */
|
|
1642
1741
|
BoardTemperature?: string;
|
|
1643
1742
|
/** ☆☆☆☆ ✔ Example: 165 */
|
|
@@ -1660,20 +1759,22 @@ export interface MakerNotesTags {
|
|
|
1660
1759
|
BracketSequence?: string;
|
|
1661
1760
|
/** ☆☆☆☆ ✔ Example: "AE/Flash" */
|
|
1662
1761
|
BracketSet?: string;
|
|
1762
|
+
/** ☆☆☆☆ ✔ Example: "No Bracket" */
|
|
1763
|
+
BracketSettings?: string;
|
|
1663
1764
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1664
1765
|
BracketShotNumber?: number;
|
|
1665
1766
|
/** ☆☆☆☆ Example: "Unknown (429458713)" */
|
|
1666
1767
|
BracketStep?: string;
|
|
1667
1768
|
/** ☆☆☆☆ ✔ Example: 12 */
|
|
1668
1769
|
BracketValue?: number;
|
|
1669
|
-
/** ☆☆☆☆ ✔ Example: 9.25 */
|
|
1670
|
-
Brightness?: number;
|
|
1671
1770
|
/** ☆☆☆☆ Example: "SU6-7" */
|
|
1672
1771
|
BuildNumber?: string;
|
|
1673
1772
|
/** ★★☆☆ ✔ Example: 0 */
|
|
1674
1773
|
BulbDuration?: number;
|
|
1675
1774
|
/** ☆☆☆☆ ✔ Example: "Unlimited" */
|
|
1676
1775
|
BurstMode?: string;
|
|
1776
|
+
/** ☆☆☆☆ Example: 3 */
|
|
1777
|
+
BurstShot?: number;
|
|
1677
1778
|
/** ☆☆☆☆ ✔ Example: 9 */
|
|
1678
1779
|
BurstSpeed?: number;
|
|
1679
1780
|
/** ☆☆☆☆ ✔ Example: "460727F2-20CF-4031-957B-7E04D567DF1F" */
|
|
@@ -1706,6 +1807,8 @@ export interface MakerNotesTags {
|
|
|
1706
1807
|
CameraISO?: string;
|
|
1707
1808
|
/** ☆☆☆☆ ✔ Example: "Unknown (155)" */
|
|
1708
1809
|
CameraOrientation?: string;
|
|
1810
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 8942 bytes, use -b option to extract)" */
|
|
1811
|
+
CameraParameters?: BinaryField | string;
|
|
1709
1812
|
/** ☆☆☆☆ ✔ Example: "User Defined 3" */
|
|
1710
1813
|
CameraPictureStyle?: string;
|
|
1711
1814
|
/** ☆☆☆☆ Example: -90 */
|
|
@@ -1714,6 +1817,8 @@ export interface MakerNotesTags {
|
|
|
1714
1817
|
CameraRoll?: string;
|
|
1715
1818
|
/** ☆☆☆☆ ✔ Example: "0100" */
|
|
1716
1819
|
CameraSettingsVersion?: string;
|
|
1820
|
+
/** ★★☆☆ ✔ Example: "uD800,S800" */
|
|
1821
|
+
CameraType?: string;
|
|
1717
1822
|
/** ☆☆☆☆ Example: "+90.80" */
|
|
1718
1823
|
CameraYaw?: string;
|
|
1719
1824
|
/** ★★☆☆ ✔ Example: "Unknown (-1)" */
|
|
@@ -1726,10 +1831,14 @@ export interface MakerNotesTags {
|
|
|
1726
1831
|
CanonFirmwareVersion?: string;
|
|
1727
1832
|
/** ★★☆☆ ✔ Example: "n/a" */
|
|
1728
1833
|
CanonFlashMode?: string;
|
|
1834
|
+
/** ★☆☆☆ ✔ Example: 768 */
|
|
1835
|
+
CanonImageHeight?: number;
|
|
1729
1836
|
/** ★★☆☆ ✔ Example: "n/a" */
|
|
1730
1837
|
CanonImageSize?: string;
|
|
1731
1838
|
/** ★★☆☆ ✔ Example: "PIC:DC50 JPEG" */
|
|
1732
1839
|
CanonImageType?: string;
|
|
1840
|
+
/** ★☆☆☆ ✔ Example: 8688 */
|
|
1841
|
+
CanonImageWidth?: number;
|
|
1733
1842
|
/** ★★☆☆ ✔ Example: "XH A1S" */
|
|
1734
1843
|
CanonModelID?: string;
|
|
1735
1844
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
@@ -1744,10 +1853,16 @@ export interface MakerNotesTags {
|
|
|
1744
1853
|
CenterWeightedAreaSize?: string;
|
|
1745
1854
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
1746
1855
|
ChromaticAberrationCorr?: string;
|
|
1856
|
+
/** ☆☆☆☆ ✔ Example: "9758 13871 16956 16964 14142 9776 30 9502 13101 15416 151…1 15949" */
|
|
1857
|
+
ChromaticAberrationCorrParams?: string;
|
|
1747
1858
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
1748
1859
|
ChromaticAberrationSetting?: string;
|
|
1749
1860
|
/** ☆☆☆☆ Example: "+0.500" */
|
|
1750
1861
|
ChrominanceNoiseReduction?: string;
|
|
1862
|
+
/** ☆☆☆☆ ✔ Example: "San Francisco" */
|
|
1863
|
+
City2?: string;
|
|
1864
|
+
/** ☆☆☆☆ ✔ Example: 4 */
|
|
1865
|
+
Clarity?: number;
|
|
1751
1866
|
/** ☆☆☆☆ Example: "Off" */
|
|
1752
1867
|
ClarityControl?: string;
|
|
1753
1868
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
@@ -1772,6 +1887,8 @@ export interface MakerNotesTags {
|
|
|
1772
1887
|
ColorBalanceGreen?: number;
|
|
1773
1888
|
/** ☆☆☆☆ Example: 2.4960938 */
|
|
1774
1889
|
ColorBalanceRed?: number;
|
|
1890
|
+
/** ☆☆☆☆ ✔ Example: "R01," */
|
|
1891
|
+
ColorBalanceVersion?: string;
|
|
1775
1892
|
/** ☆☆☆☆ ✔ Example: 24 */
|
|
1776
1893
|
ColorBitDepth?: number;
|
|
1777
1894
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
@@ -1846,6 +1963,16 @@ export interface MakerNotesTags {
|
|
|
1846
1963
|
ColorTone?: string;
|
|
1847
1964
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1848
1965
|
ColorToneAuto?: number;
|
|
1966
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1967
|
+
ColorToneFaithful?: number;
|
|
1968
|
+
/** ☆☆☆☆ ✔ Example: 11 */
|
|
1969
|
+
ColorToneLandscape?: number;
|
|
1970
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1971
|
+
ColorToneNeutral?: number;
|
|
1972
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1973
|
+
ColorTonePortrait?: number;
|
|
1974
|
+
/** ☆☆☆☆ ✔ Example: 15663191 */
|
|
1975
|
+
ColorToneStandard?: number;
|
|
1849
1976
|
/** ☆☆☆☆ ✔ Example: "Standard (Main Shutter, Sub Aperture)" */
|
|
1850
1977
|
CommandDials?: string;
|
|
1851
1978
|
/** ☆☆☆☆ ✔ Example: "Sub-command Dial" */
|
|
@@ -1856,6 +1983,22 @@ export interface MakerNotesTags {
|
|
|
1856
1983
|
CommandDialsMenuAndPlayback?: string;
|
|
1857
1984
|
/** ☆☆☆☆ ✔ Example: "No" */
|
|
1858
1985
|
CommandDialsReverseRotation?: string;
|
|
1986
|
+
/** ☆☆☆☆ ✔ Example: 3 */
|
|
1987
|
+
CommanderChannel?: number;
|
|
1988
|
+
/** ☆☆☆☆ ✔ Example: "Full" */
|
|
1989
|
+
CommanderGroupAManualOutput?: string;
|
|
1990
|
+
/** ☆☆☆☆ ✔ Example: "TTL" */
|
|
1991
|
+
CommanderGroupAMode?: string;
|
|
1992
|
+
/** ☆☆☆☆ ✔ Example: "Full" */
|
|
1993
|
+
CommanderGroupBManualOutput?: string;
|
|
1994
|
+
/** ☆☆☆☆ ✔ Example: "TTL" */
|
|
1995
|
+
CommanderGroupBMode?: string;
|
|
1996
|
+
/** ☆☆☆☆ ✔ Example: "TTL" */
|
|
1997
|
+
CommanderInternalFlash?: string;
|
|
1998
|
+
/** ☆☆☆☆ ✔ Example: "Full" */
|
|
1999
|
+
CommanderInternalManualOutput?: string;
|
|
2000
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2001
|
+
CommanderInternalTTLComp?: number;
|
|
1859
2002
|
/** ☆☆☆☆ ✔ Example: -3 */
|
|
1860
2003
|
CommanderInternalTTLCompBuiltin?: number;
|
|
1861
2004
|
/** ☆☆☆☆ ✔ Example: -3 */
|
|
@@ -1902,16 +2045,30 @@ export interface MakerNotesTags {
|
|
|
1902
2045
|
ContrastDetectAF?: string;
|
|
1903
2046
|
/** ☆☆☆☆ Example: "496 184 48 48" */
|
|
1904
2047
|
ContrastDetectAFArea?: string;
|
|
2048
|
+
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
2049
|
+
ContrastDetectAFInFocus?: string;
|
|
2050
|
+
/** ☆☆☆☆ ✔ Example: 6553600 */
|
|
2051
|
+
ContrastFaithful?: number;
|
|
1905
2052
|
/** ☆☆☆☆ Example: 0 */
|
|
1906
2053
|
ContrastHighlight?: number;
|
|
1907
2054
|
/** ☆☆☆☆ Example: "On" */
|
|
1908
2055
|
ContrastHighlightShadowAdj?: string;
|
|
2056
|
+
/** ☆☆☆☆ ✔ Example: 6553600 */
|
|
2057
|
+
ContrastLandscape?: number;
|
|
1909
2058
|
/** ☆☆☆☆ ✔ Example: "Unknown (19)" */
|
|
1910
2059
|
ContrastMode?: string;
|
|
2060
|
+
/** ☆☆☆☆ ✔ Example: 524288 */
|
|
2061
|
+
ContrastMonochrome?: number;
|
|
2062
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2063
|
+
ContrastNeutral?: number;
|
|
2064
|
+
/** ☆☆☆☆ ✔ Example: 9699328 */
|
|
2065
|
+
ContrastPortrait?: number;
|
|
1911
2066
|
/** ☆☆☆☆ ✔ Example: "1 (min -5, max 5)" */
|
|
1912
2067
|
ContrastSetting?: string;
|
|
1913
2068
|
/** ☆☆☆☆ Example: 0 */
|
|
1914
2069
|
ContrastShadow?: number;
|
|
2070
|
+
/** ☆☆☆☆ ✔ Example: 12058626 */
|
|
2071
|
+
ContrastStandard?: number;
|
|
1915
2072
|
/** ☆☆☆☆ ✔ Example: "Shutter Speed" */
|
|
1916
2073
|
ControlDialSet?: string;
|
|
1917
2074
|
/** ★★☆☆ ✔ Example: "n/a" */
|
|
@@ -1924,12 +2081,10 @@ export interface MakerNotesTags {
|
|
|
1924
2081
|
ConversionLens?: string;
|
|
1925
2082
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1926
2083
|
Converter?: number;
|
|
2084
|
+
/** ☆☆☆☆ ✔ Example: 72 */
|
|
2085
|
+
CoringFilter?: number;
|
|
1927
2086
|
/** ☆☆☆☆ Example: 6807 */
|
|
1928
2087
|
CorrelatedColorTemp?: number;
|
|
1929
|
-
/** ☆☆☆☆ ✔ Example: "United States" */
|
|
1930
|
-
Country?: string;
|
|
1931
|
-
/** ☆☆☆☆ ✔ Example: "ENG" */
|
|
1932
|
-
CountryCode?: string;
|
|
1933
2088
|
/** ☆☆☆☆ ✔ Example: "Vivid" */
|
|
1934
2089
|
CreativeStyle?: string;
|
|
1935
2090
|
/** ☆☆☆☆ ✔ Example: "Standard" */
|
|
@@ -1940,16 +2095,12 @@ export interface MakerNotesTags {
|
|
|
1940
2095
|
CropHeight?: number;
|
|
1941
2096
|
/** ☆☆☆☆ ✔ Example: "Off (7424x4924 cropped to 7424x4924 at pixel 0,0)" */
|
|
1942
2097
|
CropHiSpeed?: string;
|
|
1943
|
-
/** ☆☆☆☆ ✔ Example: "8 0" */
|
|
1944
|
-
CropLeft?: string;
|
|
1945
2098
|
/** ☆☆☆☆ ✔ Example: 8240 */
|
|
1946
2099
|
CropLeftMargin?: number;
|
|
1947
2100
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
1948
2101
|
CropMode?: string;
|
|
1949
2102
|
/** ☆☆☆☆ ✔ Example: 8240 */
|
|
1950
2103
|
CropRightMargin?: number;
|
|
1951
|
-
/** ☆☆☆☆ ✔ Example: "8 0" */
|
|
1952
|
-
CropTop?: string;
|
|
1953
2104
|
/** ☆☆☆☆ ✔ Example: 8240 */
|
|
1954
2105
|
CropTopMargin?: number;
|
|
1955
2106
|
/** ☆☆☆☆ ✔ Example: 5184 */
|
|
@@ -1968,8 +2119,6 @@ export interface MakerNotesTags {
|
|
|
1968
2119
|
CustomControls?: string;
|
|
1969
2120
|
/** ☆☆☆☆ ✔ Example: "P-STUDIO" */
|
|
1970
2121
|
CustomPictureStyleFileName?: string;
|
|
1971
|
-
/** ☆☆☆☆ Example: "Scene: NORMAL" */
|
|
1972
|
-
CustomRendered?: string;
|
|
1973
2122
|
/** ☆☆☆☆ ✔ Example: "CS3 (min CS0, max CS4)" */
|
|
1974
2123
|
CustomSaturation?: string;
|
|
1975
2124
|
/** ☆☆☆☆ ✔ Example: "No" */
|
|
@@ -1988,6 +2137,8 @@ export interface MakerNotesTags {
|
|
|
1988
2137
|
CustomWBSetting?: string;
|
|
1989
2138
|
/** ☆☆☆☆ ✔ Example: "0 0 1 30 31 0 0 0 0 0 0 2 30 31 0 0 0 0 0 0 5 30 31 0 0 0…1 1 1 0" */
|
|
1990
2139
|
CustomizeDials?: string;
|
|
2140
|
+
/** ☆☆☆☆ Example: "Unknown (27471)" */
|
|
2141
|
+
DECPosition?: string;
|
|
1991
2142
|
/** ☆☆☆☆ ✔ Example: "100.00.00.00" */
|
|
1992
2143
|
DSPFirmwareVersion?: string;
|
|
1993
2144
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
@@ -2020,8 +2171,12 @@ export interface MakerNotesTags {
|
|
|
2020
2171
|
DestinationCityCode?: string;
|
|
2021
2172
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
2022
2173
|
DestinationDST?: string;
|
|
2174
|
+
/** ☆☆☆☆ ✔ Example: 100 */
|
|
2175
|
+
DevelopmentDynamicRange?: number;
|
|
2023
2176
|
/** ☆☆☆☆ ✔ Example: "SMX Video Camera" */
|
|
2024
2177
|
DeviceType?: string;
|
|
2178
|
+
/** ☆☆☆☆ ✔ Example: "Normal" */
|
|
2179
|
+
DialDirectionTvAv?: string;
|
|
2025
2180
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2026
2181
|
DiffractionCompensation?: string;
|
|
2027
2182
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
@@ -2032,8 +2187,16 @@ export interface MakerNotesTags {
|
|
|
2032
2187
|
DigitalGain?: number;
|
|
2033
2188
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2034
2189
|
DigitalICE?: string;
|
|
2190
|
+
/** ☆☆☆☆ ✔ Example: "Stanard" */
|
|
2191
|
+
DigitalLensOptimizer?: string;
|
|
2192
|
+
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2193
|
+
DigitalLensOptimizerSetting?: string;
|
|
2194
|
+
/** ★★★☆ ✔ Example: "undef.0" */
|
|
2195
|
+
DigitalZoom?: string;
|
|
2035
2196
|
/** ☆☆☆☆ Example: "On" */
|
|
2036
2197
|
DigitalZoomOn?: string;
|
|
2198
|
+
/** ☆☆☆☆ ✔ Example: 897 */
|
|
2199
|
+
DirectoryIndex?: number;
|
|
2037
2200
|
/** ☆☆☆☆ ✔ Example: 999 */
|
|
2038
2201
|
DirectoryNumber?: number;
|
|
2039
2202
|
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
@@ -2042,8 +2205,14 @@ export interface MakerNotesTags {
|
|
|
2042
2205
|
DisplayAperture?: number;
|
|
2043
2206
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2044
2207
|
DistortionControl?: string;
|
|
2208
|
+
/** ☆☆☆☆ ✔ Example: "88 0 -136 -288 -480 -696 -944 -1200 -1480 -1752 -2040 0 0 0 0 0" */
|
|
2209
|
+
DistortionCorrParams?: string;
|
|
2210
|
+
/** ☆☆☆☆ ✔ Example: "Unknown (0)" */
|
|
2211
|
+
DistortionCorrParamsNumber?: string;
|
|
2045
2212
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
2046
2213
|
DistortionCorrParamsPresent?: string;
|
|
2214
|
+
/** ★☆☆☆ ✔ Example: "Unknown (60)" */
|
|
2215
|
+
DistortionCorrection?: string;
|
|
2047
2216
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
2048
2217
|
DistortionCorrectionSetting?: string;
|
|
2049
2218
|
/** ☆☆☆☆ ✔ Example: 100 */
|
|
@@ -2064,6 +2233,8 @@ export interface MakerNotesTags {
|
|
|
2064
2233
|
DynamicRange?: string;
|
|
2065
2234
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2066
2235
|
DynamicRangeBoost?: string;
|
|
2236
|
+
/** ☆☆☆☆ ✔ Example: "On; Enabled; 0; 0" */
|
|
2237
|
+
DynamicRangeExpansion?: string;
|
|
2067
2238
|
/** ☆☆☆☆ ✔ Example: "Standard" */
|
|
2068
2239
|
DynamicRangeOptimizer?: string;
|
|
2069
2240
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
@@ -2078,6 +2249,8 @@ export interface MakerNotesTags {
|
|
|
2078
2249
|
DynamicRangeSetting?: string;
|
|
2079
2250
|
/** ☆☆☆☆ ✔ Example: "Evaluative" */
|
|
2080
2251
|
ETTLII?: string;
|
|
2252
|
+
/** ☆☆☆☆ ✔ Example: "1/3 EV" */
|
|
2253
|
+
EVStepSize?: string;
|
|
2081
2254
|
/** ☆☆☆☆ ✔ Example: "1/3 EV Steps" */
|
|
2082
2255
|
EVSteps?: string;
|
|
2083
2256
|
/** ☆☆☆☆ ✔ Example: "Manual" */
|
|
@@ -2090,10 +2263,14 @@ export interface MakerNotesTags {
|
|
|
2090
2263
|
EasyExposureCompensation?: string;
|
|
2091
2264
|
/** ★★☆☆ ✔ Example: "Unknown (83)" */
|
|
2092
2265
|
EasyMode?: string;
|
|
2266
|
+
/** ☆☆☆☆ ✔ Example: 9.8 */
|
|
2267
|
+
EffectiveLV?: number;
|
|
2093
2268
|
/** ☆☆☆☆ ✔ Example: 5.7 */
|
|
2094
2269
|
EffectiveMaxAperture?: number;
|
|
2095
2270
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2096
2271
|
ElectronicFrontCurtainShutter?: string;
|
|
2272
|
+
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2273
|
+
EnergySavingMode?: string;
|
|
2097
2274
|
/** ☆☆☆☆ Example: "Off" */
|
|
2098
2275
|
Enhancement?: string;
|
|
2099
2276
|
/** ☆☆☆☆ ✔ Example: 960 */
|
|
@@ -2132,6 +2309,8 @@ export interface MakerNotesTags {
|
|
|
2132
2309
|
ExposureControlStep?: string;
|
|
2133
2310
|
/** ☆☆☆☆ ✔ Example: "1/3 EV" */
|
|
2134
2311
|
ExposureControlStepSize?: string;
|
|
2312
|
+
/** ★☆☆☆ ✔ Example: 1 */
|
|
2313
|
+
ExposureCount?: number;
|
|
2135
2314
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2136
2315
|
ExposureDelayMode?: string;
|
|
2137
2316
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
@@ -2142,12 +2321,14 @@ export interface MakerNotesTags {
|
|
|
2142
2321
|
ExposureLevelIncrements?: string;
|
|
2143
2322
|
/** ☆☆☆☆ ✔ Example: "Spot metering" */
|
|
2144
2323
|
ExposureModeInManual?: string;
|
|
2145
|
-
/** ☆☆☆☆ ✔ Example:
|
|
2146
|
-
|
|
2324
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2325
|
+
ExposureShift?: number;
|
|
2147
2326
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2148
2327
|
ExposureStandardAdjustment?: number;
|
|
2149
2328
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2150
2329
|
ExposureTuning?: number;
|
|
2330
|
+
/** ★☆☆☆ ✔ Example: "Good" */
|
|
2331
|
+
ExposureWarning?: string;
|
|
2151
2332
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2152
2333
|
ExtendedShutterSpeeds?: string;
|
|
2153
2334
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
@@ -2174,6 +2355,8 @@ export interface MakerNotesTags {
|
|
|
2174
2355
|
ExternalFlashFlags?: string;
|
|
2175
2356
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2176
2357
|
ExternalFlashGValue?: number;
|
|
2358
|
+
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
2359
|
+
ExternalFlashGuideNumber?: string;
|
|
2177
2360
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
2178
2361
|
ExternalFlashMode?: number;
|
|
2179
2362
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
@@ -2184,6 +2367,8 @@ export interface MakerNotesTags {
|
|
|
2184
2367
|
ExternalFlashZoom?: number;
|
|
2185
2368
|
/** ☆☆☆☆ ✔ Example: "No" */
|
|
2186
2369
|
ExternalFlashZoomOverride?: string;
|
|
2370
|
+
/** ☆☆☆☆ Example: 9.14 */
|
|
2371
|
+
ExternalSensorBrightnessValue?: number;
|
|
2187
2372
|
/** ☆☆☆☆ ✔ Example: "0.2.0.0" */
|
|
2188
2373
|
ExtraInfoVersion?: string;
|
|
2189
2374
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
@@ -2196,6 +2381,8 @@ export interface MakerNotesTags {
|
|
|
2196
2381
|
FaceDetectArea?: BinaryField | string;
|
|
2197
2382
|
/** ☆☆☆☆ ✔ Example: "0 26 640 428 0 26 640 428 0 0 0 0" */
|
|
2198
2383
|
FaceDetectFrameCrop?: string;
|
|
2384
|
+
/** ★☆☆☆ ✔ Example: "720 480" */
|
|
2385
|
+
FaceDetectFrameSize?: string;
|
|
2199
2386
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2200
2387
|
FaceDetection?: string;
|
|
2201
2388
|
/** ☆☆☆☆ ✔ Example: "918 1058 1959 2101" */
|
|
@@ -2210,8 +2397,14 @@ export interface MakerNotesTags {
|
|
|
2210
2397
|
FaceInfoOffset?: number;
|
|
2211
2398
|
/** ☆☆☆☆ ✔ Example: "" */
|
|
2212
2399
|
FaceName?: string;
|
|
2400
|
+
/** ☆☆☆☆ Example: "67 23" */
|
|
2401
|
+
FacePosition?: string;
|
|
2213
2402
|
/** ☆☆☆☆ ✔ Example: "918 1058 1959 2101" */
|
|
2214
2403
|
FacePositions?: string;
|
|
2404
|
+
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2405
|
+
FaceRecognition?: string;
|
|
2406
|
+
/** ☆☆☆☆ ✔ Example: 35 */
|
|
2407
|
+
FaceWidth?: number;
|
|
2215
2408
|
/** ★★★☆ ✔ Example: 65535 */
|
|
2216
2409
|
FacesDetected?: number;
|
|
2217
2410
|
/** ☆☆☆☆ ✔ Example: 12336 */
|
|
@@ -2228,8 +2421,6 @@ export interface MakerNotesTags {
|
|
|
2228
2421
|
FileNumberMemory?: string;
|
|
2229
2422
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2230
2423
|
FileNumberSequence?: string;
|
|
2231
|
-
/** ☆☆☆☆ ✔ Example: "APS_H" */
|
|
2232
|
-
FileSource?: string;
|
|
2233
2424
|
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
2234
2425
|
FillFlashAutoReduction?: string;
|
|
2235
2426
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
@@ -2242,6 +2433,8 @@ export interface MakerNotesTags {
|
|
|
2242
2433
|
FilterEffect?: string;
|
|
2243
2434
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
2244
2435
|
FilterEffectAuto?: string;
|
|
2436
|
+
/** ☆☆☆☆ ✔ Example: "Unknown (0x10000)" */
|
|
2437
|
+
FilterEffectMonochrome?: string;
|
|
2245
2438
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2246
2439
|
FinderDisplayDuringExposure?: string;
|
|
2247
2440
|
/** ☆☆☆☆ ✔ Example: "On; Normal" */
|
|
@@ -2258,6 +2451,10 @@ export interface MakerNotesTags {
|
|
|
2258
2451
|
FirmwareDate?: ExifDateTime | string;
|
|
2259
2452
|
/** ☆☆☆☆ ✔ Example: "NX1_000000" */
|
|
2260
2453
|
FirmwareName?: string;
|
|
2454
|
+
/** ★☆☆☆ ✔ Example: "Rev01500000" */
|
|
2455
|
+
FirmwareRevision?: string;
|
|
2456
|
+
/** ★☆☆☆ ✔ Example: "v2.2.16" */
|
|
2457
|
+
FirmwareVersion?: string;
|
|
2261
2458
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2262
2459
|
FisheyeFilter?: string;
|
|
2263
2460
|
/** ☆☆☆☆ ✔ Example: "Fired" */
|
|
@@ -2276,10 +2473,10 @@ export interface MakerNotesTags {
|
|
|
2276
2473
|
FlashButtonFunction?: string;
|
|
2277
2474
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2278
2475
|
FlashChargeLevel?: number;
|
|
2476
|
+
/** ☆☆☆☆ ✔ Example: "None" */
|
|
2477
|
+
FlashColorFilter?: string;
|
|
2279
2478
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2280
2479
|
FlashCommanderMode?: string;
|
|
2281
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2282
|
-
FlashCompensation?: number;
|
|
2283
2480
|
/** ☆☆☆☆ ✔ Example: "Pre-flash TTL" */
|
|
2284
2481
|
FlashControl?: string;
|
|
2285
2482
|
/** ☆☆☆☆ ✔ Example: "iTTL-BL" */
|
|
@@ -2298,6 +2495,8 @@ export interface MakerNotesTags {
|
|
|
2298
2495
|
FlashExposureComp?: number;
|
|
2299
2496
|
/** ☆☆☆☆ ✔ Example: "Entire frame" */
|
|
2300
2497
|
FlashExposureCompArea?: string;
|
|
2498
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2499
|
+
FlashExposureCompSet?: number;
|
|
2301
2500
|
/** ☆☆☆☆ ✔ Example: "Not Indicated" */
|
|
2302
2501
|
FlashExposureIndicator?: string;
|
|
2303
2502
|
/** ☆☆☆☆ ✔ Example: "Not Indicated" */
|
|
@@ -2332,6 +2531,8 @@ export interface MakerNotesTags {
|
|
|
2332
2531
|
FlashGroupCControlMode?: string;
|
|
2333
2532
|
/** ★★☆☆ ✔ Example: 9 */
|
|
2334
2533
|
FlashGuideNumber?: number;
|
|
2534
|
+
/** ☆☆☆☆ ✔ Example: "Standard" */
|
|
2535
|
+
FlashIlluminationPattern?: string;
|
|
2335
2536
|
/** ☆☆☆☆ ✔ Example: "0301" */
|
|
2336
2537
|
FlashInfoVersion?: string;
|
|
2337
2538
|
/** ☆☆☆☆ ✔ Example: "n/a (x4)" */
|
|
@@ -2352,6 +2553,8 @@ export interface MakerNotesTags {
|
|
|
2352
2553
|
FlashModel?: string;
|
|
2353
2554
|
/** ☆☆☆☆ ✔ Example: "Red-eye reduction" */
|
|
2354
2555
|
FlashOptions?: string;
|
|
2556
|
+
/** ★☆☆☆ ✔ Example: 94 */
|
|
2557
|
+
FlashOutput?: number;
|
|
2355
2558
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2356
2559
|
FlashRemoteControl?: string;
|
|
2357
2560
|
/** ☆☆☆☆ ✔ Example: "01114671" */
|
|
@@ -2376,6 +2579,8 @@ export interface MakerNotesTags {
|
|
|
2376
2579
|
FlashThreshold?: number;
|
|
2377
2580
|
/** ☆☆☆☆ ✔ Example: "Yes (flash required but disabled)" */
|
|
2378
2581
|
FlashWarning?: string;
|
|
2582
|
+
/** ☆☆☆☆ ✔ Example: "320 262" */
|
|
2583
|
+
FlexibleSpotPosition?: string;
|
|
2379
2584
|
/** ☆☆☆☆ ✔ Example: "Left to Right" */
|
|
2380
2585
|
FlickAdvanceDirection?: string;
|
|
2381
2586
|
/** ☆☆☆☆ Example: "On" */
|
|
@@ -2396,8 +2601,18 @@ export interface MakerNotesTags {
|
|
|
2396
2601
|
FocalPlaneAFPointArea?: string;
|
|
2397
2602
|
/** ☆☆☆☆ ✔ Example: 9 */
|
|
2398
2603
|
FocalPlaneAFPointsUsed?: number;
|
|
2604
|
+
/** ★☆☆☆ ✔ Example: "9.45 mm" */
|
|
2605
|
+
FocalPlaneDiagonal?: string;
|
|
2606
|
+
/** ★☆☆☆ ✔ Example: "9.02 mm" */
|
|
2607
|
+
FocalPlaneXSize?: string;
|
|
2608
|
+
/** ★☆☆☆ ✔ Example: "8.10 mm" */
|
|
2609
|
+
FocalPlaneYSize?: string;
|
|
2610
|
+
/** ★☆☆☆ ✔ Example: "Zoom" */
|
|
2611
|
+
FocalType?: string;
|
|
2399
2612
|
/** ★★☆☆ ✔ Example: "32/mm" */
|
|
2400
2613
|
FocalUnits?: string;
|
|
2614
|
+
/** ☆☆☆☆ Example: "Wide Focus (normal)" */
|
|
2615
|
+
FocusArea?: string;
|
|
2401
2616
|
/** ☆☆☆☆ ✔ Example: "No Wrap" */
|
|
2402
2617
|
FocusAreaSelection?: string;
|
|
2403
2618
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
@@ -2408,16 +2623,24 @@ export interface MakerNotesTags {
|
|
|
2408
2623
|
FocusContinuous?: string;
|
|
2409
2624
|
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
2410
2625
|
FocusDisplayAIServoAndMF?: string;
|
|
2626
|
+
/** ★☆☆☆ ✔ Example: "inf" */
|
|
2627
|
+
FocusDistanceLower?: string;
|
|
2411
2628
|
/** ☆☆☆☆ ✔ Example: "7.68 - 36.90 m" */
|
|
2412
2629
|
FocusDistanceRange?: string;
|
|
2630
|
+
/** ★☆☆☆ ✔ Example: "inf" */
|
|
2631
|
+
FocusDistanceUpper?: string;
|
|
2413
2632
|
/** ☆☆☆☆ ✔ Example: "475x476" */
|
|
2414
2633
|
FocusFrameSize?: string;
|
|
2415
2634
|
/** ☆☆☆☆ ✔ Example: "Focus Hold" */
|
|
2416
2635
|
FocusHoldButton?: string;
|
|
2417
2636
|
/** ☆☆☆☆ ✔ Example: "0100" */
|
|
2418
2637
|
FocusInfoVersion?: string;
|
|
2638
|
+
/** ☆☆☆☆ ✔ Example: "9504 6336 5613 2112" */
|
|
2639
|
+
FocusLocation?: string;
|
|
2419
2640
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
2420
2641
|
FocusLocked?: string;
|
|
2642
|
+
/** ★★★☆ ✔ Example: "Unknown (860272)" */
|
|
2643
|
+
FocusMode?: string;
|
|
2421
2644
|
/** ☆☆☆☆ ✔ Example: "Manual" */
|
|
2422
2645
|
FocusModeSetting?: string;
|
|
2423
2646
|
/** ☆☆☆☆ ✔ Example: "AF" */
|
|
@@ -2426,6 +2649,8 @@ export interface MakerNotesTags {
|
|
|
2426
2649
|
FocusPeakingHighlightColor?: string;
|
|
2427
2650
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2428
2651
|
FocusPeakingLevel?: string;
|
|
2652
|
+
/** ★☆☆☆ ✔ Example: "972 1296" */
|
|
2653
|
+
FocusPixel?: string;
|
|
2429
2654
|
/** ☆☆☆☆ Example: "Auto" */
|
|
2430
2655
|
FocusPointPersistence?: string;
|
|
2431
2656
|
/** ☆☆☆☆ Example: "Normal" */
|
|
@@ -2464,16 +2689,26 @@ export interface MakerNotesTags {
|
|
|
2464
2689
|
FocusStepNear?: number;
|
|
2465
2690
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2466
2691
|
FocusTrackingLockOn?: string;
|
|
2692
|
+
/** ★☆☆☆ ✔ Example: "Out of focus" */
|
|
2693
|
+
FocusWarning?: string;
|
|
2467
2694
|
/** ☆☆☆☆ ✔ Example: "Eh-A" */
|
|
2468
2695
|
FocusingScreen?: string;
|
|
2696
|
+
/** ☆☆☆☆ Example: "Standard Form" */
|
|
2697
|
+
FolderName?: string;
|
|
2469
2698
|
/** ☆☆☆☆ ✔ Example: 373 */
|
|
2470
2699
|
FolderNumber?: number;
|
|
2700
|
+
/** ☆☆☆☆ ✔ Example: 849 */
|
|
2701
|
+
FrameNumber?: number;
|
|
2471
2702
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2472
2703
|
FramingGridDisplay?: string;
|
|
2473
2704
|
/** ☆☆☆☆ ✔ Example: "(Binary data 12 bytes, use -b option to extract)" */
|
|
2474
2705
|
FreeBytes?: BinaryField | string;
|
|
2706
|
+
/** ☆☆☆☆ ✔ Example: 805 */
|
|
2707
|
+
FreeMemoryCardImages?: number;
|
|
2475
2708
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
2476
2709
|
FrontFacingCamera?: string;
|
|
2710
|
+
/** ★☆☆☆ ✔ Example: "Red-eye reduction" */
|
|
2711
|
+
FujiFlashMode?: string;
|
|
2477
2712
|
/** ☆☆☆☆ ✔ Example: "X100V_0100" */
|
|
2478
2713
|
FujiModel?: string;
|
|
2479
2714
|
/** ☆☆☆☆ ✔ Example: "9504x6336" */
|
|
@@ -2524,22 +2759,32 @@ export interface MakerNotesTags {
|
|
|
2524
2759
|
GripBatteryState?: string;
|
|
2525
2760
|
/** ☆☆☆☆ ✔ Example: "Squares" */
|
|
2526
2761
|
GroupAreaAFIllumination?: string;
|
|
2762
|
+
/** ☆☆☆☆ ✔ Example: "Unknown (5)" */
|
|
2763
|
+
HDMIBitDepth?: string;
|
|
2527
2764
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2528
2765
|
HDMIExternalRecorder?: string;
|
|
2529
2766
|
/** ☆☆☆☆ ✔ Example: "Auto" */
|
|
2530
2767
|
HDMIOutputRange?: string;
|
|
2531
2768
|
/** ☆☆☆☆ ✔ Example: "Auto" */
|
|
2532
2769
|
HDMIOutputResolution?: string;
|
|
2770
|
+
/** ★☆☆☆ ✔ Example: "On (normal)" */
|
|
2771
|
+
HDR?: string;
|
|
2533
2772
|
/** ☆☆☆☆ ✔ Example: "Natural" */
|
|
2534
2773
|
HDREffect?: string;
|
|
2774
|
+
/** ☆☆☆☆ ✔ Example: 0.016037704 */
|
|
2775
|
+
HDRGain?: number;
|
|
2535
2776
|
/** ☆☆☆☆ ✔ Example: 1.447432 */
|
|
2536
2777
|
HDRHeadroom?: number;
|
|
2778
|
+
/** ☆☆☆☆ ✔ Example: "Unknown (2)" */
|
|
2779
|
+
HDRImageType?: string;
|
|
2537
2780
|
/** ☆☆☆☆ ✔ Example: "0200" */
|
|
2538
2781
|
HDRInfoVersion?: string;
|
|
2539
2782
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
2540
2783
|
HDRLevel?: string;
|
|
2541
2784
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
2542
2785
|
HDRSmoothing?: string;
|
|
2786
|
+
/** ★☆☆☆ ✔ Example: "n/a" */
|
|
2787
|
+
HighISONoiseReduction?: string;
|
|
2543
2788
|
/** ☆☆☆☆ Example: 4 */
|
|
2544
2789
|
HighLowKeyAdj?: number;
|
|
2545
2790
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
@@ -2548,6 +2793,8 @@ export interface MakerNotesTags {
|
|
|
2548
2793
|
Highlight?: number;
|
|
2549
2794
|
/** ☆☆☆☆ ✔ Example: "0 0" */
|
|
2550
2795
|
HighlightShadow?: string;
|
|
2796
|
+
/** ☆☆☆☆ ✔ Example: "0 (normal)" */
|
|
2797
|
+
HighlightTone?: string;
|
|
2551
2798
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2552
2799
|
HighlightTonePriority?: string;
|
|
2553
2800
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
@@ -2566,6 +2813,8 @@ export interface MakerNotesTags {
|
|
|
2566
2813
|
HostSoftwareExportVersion?: number;
|
|
2567
2814
|
/** ☆☆☆☆ Example: "Unknown (4 4)" */
|
|
2568
2815
|
HostSoftwareRendering?: string;
|
|
2816
|
+
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
2817
|
+
Hue?: string;
|
|
2569
2818
|
/** ☆☆☆☆ Example: "Off" */
|
|
2570
2819
|
HueAdjust?: string;
|
|
2571
2820
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
@@ -2604,6 +2853,8 @@ export interface MakerNotesTags {
|
|
|
2604
2853
|
ISOSetting?: number;
|
|
2605
2854
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
2606
2855
|
ISOSpeedExpansion?: string;
|
|
2856
|
+
/** ☆☆☆☆ ✔ Example: "1/3 Stop" */
|
|
2857
|
+
ISOSpeedIncrements?: string;
|
|
2607
2858
|
/** ☆☆☆☆ ✔ Example: "Enable; Max 3200; Min 1" */
|
|
2608
2859
|
ISOSpeedRange?: string;
|
|
2609
2860
|
/** ☆☆☆☆ ✔ Example: "1/3 EV" */
|
|
@@ -2622,6 +2873,8 @@ export interface MakerNotesTags {
|
|
|
2622
2873
|
ImageBoundary?: string;
|
|
2623
2874
|
/** ☆☆☆☆ ✔ Example: "Unknown (5)" */
|
|
2624
2875
|
ImageCaptureType?: string;
|
|
2876
|
+
/** ☆☆☆☆ ✔ Example: 994 */
|
|
2877
|
+
ImageCount?: number;
|
|
2625
2878
|
/** ☆☆☆☆ ✔ Example: 9927271 */
|
|
2626
2879
|
ImageDataSize?: number;
|
|
2627
2880
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
@@ -2648,6 +2901,8 @@ export interface MakerNotesTags {
|
|
|
2648
2901
|
ImageReviewMonitorOffTime?: string;
|
|
2649
2902
|
/** ☆☆☆☆ ✔ Example: "4 s" */
|
|
2650
2903
|
ImageReviewTime?: string;
|
|
2904
|
+
/** ☆☆☆☆ Example: "No" */
|
|
2905
|
+
ImageRotated?: string;
|
|
2651
2906
|
/** ☆☆☆☆ ✔ Example: "Small" */
|
|
2652
2907
|
ImageSizeRAW?: string;
|
|
2653
2908
|
/** ★★★☆ ✔ Example: "n/a" */
|
|
@@ -2660,6 +2915,10 @@ export interface MakerNotesTags {
|
|
|
2660
2915
|
ImageTemperatureMax?: number;
|
|
2661
2916
|
/** ☆☆☆☆ Example: 86 */
|
|
2662
2917
|
ImageTemperatureMin?: number;
|
|
2918
|
+
/** ☆☆☆☆ ✔ Example: "Vibrant" */
|
|
2919
|
+
ImageTone?: string;
|
|
2920
|
+
/** ★☆☆☆ ✔ Example: "fefafc6093e2c1470ac8dfa06ef26990" */
|
|
2921
|
+
ImageUniqueID?: string;
|
|
2663
2922
|
/** ☆☆☆☆ ✔ Example: "Displays shooting functions" */
|
|
2664
2923
|
InfoButtonWhenShooting?: string;
|
|
2665
2924
|
/** ☆☆☆☆ Example: "On" */
|
|
@@ -2686,8 +2945,14 @@ export interface MakerNotesTags {
|
|
|
2686
2945
|
IntelligentResolution?: string;
|
|
2687
2946
|
/** ☆☆☆☆ ✔ Example: "TTL" */
|
|
2688
2947
|
InternalFlash?: string;
|
|
2948
|
+
/** ☆☆☆☆ ✔ Example: "Did not fire, Red-eye reduction" */
|
|
2949
|
+
InternalFlashMode?: string;
|
|
2950
|
+
/** ☆☆☆☆ ✔ Example: 63 */
|
|
2951
|
+
InternalFlashStrength?: number;
|
|
2689
2952
|
/** ☆☆☆☆ ✔ Example: 95 */
|
|
2690
2953
|
InternalFlashTable?: number;
|
|
2954
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2955
|
+
InternalNDFilter?: number;
|
|
2691
2956
|
/** ★★☆☆ ✔ Example: "fdfec409" */
|
|
2692
2957
|
InternalSerialNumber?: string;
|
|
2693
2958
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
@@ -2722,6 +2987,10 @@ export interface MakerNotesTags {
|
|
|
2722
2987
|
KeystoneDirection?: string;
|
|
2723
2988
|
/** ☆☆☆☆ ✔ Example: "0 0 0" */
|
|
2724
2989
|
KeystoneValue?: string;
|
|
2990
|
+
/** ☆☆☆☆ Example: 864 */
|
|
2991
|
+
KodakImageHeight?: number;
|
|
2992
|
+
/** ☆☆☆☆ Example: 800 */
|
|
2993
|
+
KodakImageWidth?: number;
|
|
2725
2994
|
/** ☆☆☆☆ Example: "SKodakCommonInfo Jaguar7" */
|
|
2726
2995
|
KodakInfoType?: string;
|
|
2727
2996
|
/** ☆☆☆☆ Example: "Kodak " */
|
|
@@ -2742,6 +3011,10 @@ export interface MakerNotesTags {
|
|
|
2742
3011
|
LCDIlluminationDuringBulb?: string;
|
|
2743
3012
|
/** ☆☆☆☆ ✔ Example: "Remain. shots/File no." */
|
|
2744
3013
|
LCDPanels?: string;
|
|
3014
|
+
/** ☆☆☆☆ ✔ Example: "Masked" */
|
|
3015
|
+
LVShootingAreaDisplay?: string;
|
|
3016
|
+
/** ☆☆☆☆ ✔ Example: "UNICORN THEATRE FOR CHILDREN" */
|
|
3017
|
+
Landmark?: string;
|
|
2745
3018
|
/** ☆☆☆☆ ✔ Example: "English" */
|
|
2746
3019
|
Language?: string;
|
|
2747
3020
|
/** ☆☆☆☆ Example: 92 */
|
|
@@ -2776,10 +3049,14 @@ export interface MakerNotesTags {
|
|
|
2776
3049
|
LensFormat?: string;
|
|
2777
3050
|
/** ☆☆☆☆ ✔ Example: "AE/AF Lock" */
|
|
2778
3051
|
LensFunc1Button?: string;
|
|
3052
|
+
/** ☆☆☆☆ ✔ Example: "AF-On" */
|
|
3053
|
+
LensFunc2Button?: string;
|
|
2779
3054
|
/** ☆☆☆☆ ✔ Example: 93 */
|
|
2780
3055
|
LensIDNumber?: number;
|
|
2781
3056
|
/** ☆☆☆☆ Example: "4 to 4" */
|
|
2782
3057
|
LensMaxApertureRange?: string;
|
|
3058
|
+
/** ☆☆☆☆ ✔ Example: "On" */
|
|
3059
|
+
LensModulationOptimizer?: string;
|
|
2783
3060
|
/** ☆☆☆☆ ✔ Example: "Unknown (74)" */
|
|
2784
3061
|
LensMount?: string;
|
|
2785
3062
|
/** ☆☆☆☆ ✔ Example: "Z-mount Lens" */
|
|
@@ -2792,8 +3069,14 @@ export interface MakerNotesTags {
|
|
|
2792
3069
|
LensShading?: string;
|
|
2793
3070
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2794
3071
|
LensShutterLock?: string;
|
|
3072
|
+
/** ☆☆☆☆ ✔ Example: "Unknown (00 0 0 0 0 00)" */
|
|
3073
|
+
LensSpec?: string;
|
|
3074
|
+
/** ☆☆☆☆ ✔ Example: "ZA SSM II" */
|
|
3075
|
+
LensSpecFeatures?: string;
|
|
2795
3076
|
/** ☆☆☆☆ ✔ Example: 35 */
|
|
2796
3077
|
LensTemperature?: number;
|
|
3078
|
+
/** ★★☆☆ ✔ Example: "smc PENTAX-FA 28-105mm F3.2-4.5 AL[IF]" */
|
|
3079
|
+
LensType?: string;
|
|
2797
3080
|
/** ☆☆☆☆ Example: */
|
|
2798
3081
|
LensType2?: string;
|
|
2799
3082
|
/** ☆☆☆☆ Example: */
|
|
@@ -2804,10 +3087,14 @@ export interface MakerNotesTags {
|
|
|
2804
3087
|
LensTypeModel?: string;
|
|
2805
3088
|
/** ☆☆☆☆ ✔ Example: "98%" */
|
|
2806
3089
|
LensZoomPosition?: string;
|
|
3090
|
+
/** ☆☆☆☆ Example: 250 */
|
|
3091
|
+
LevelIndicator?: number;
|
|
2807
3092
|
/** ☆☆☆☆ Example: "n/a" */
|
|
2808
3093
|
LevelOrientation?: string;
|
|
2809
3094
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
2810
3095
|
LightCondition?: number;
|
|
3096
|
+
/** ☆☆☆☆ Example: 8 */
|
|
3097
|
+
LightReading?: number;
|
|
2811
3098
|
/** ☆☆☆☆ Example: "Unknown (512)" */
|
|
2812
3099
|
LightSourceSpecial?: string;
|
|
2813
3100
|
/** ☆☆☆☆ ✔ Example: "LCD Backlight and Shooting Information" */
|
|
@@ -2858,6 +3145,8 @@ export interface MakerNotesTags {
|
|
|
2858
3145
|
LockMicrophoneButton?: string;
|
|
2859
3146
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
2860
3147
|
LongExposureNRUsed?: string;
|
|
3148
|
+
/** ★☆☆☆ ✔ Example: "n/a" */
|
|
3149
|
+
LongExposureNoiseReduction?: string;
|
|
2861
3150
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2862
3151
|
LowLightAF?: string;
|
|
2863
3152
|
/** ☆☆☆☆ ✔ Example: 0.010031249 */
|
|
@@ -2870,6 +3159,8 @@ export interface MakerNotesTags {
|
|
|
2870
3159
|
MCCData?: string;
|
|
2871
3160
|
/** ☆☆☆☆ ✔ Example: 99 */
|
|
2872
3161
|
MCUVersion?: number;
|
|
3162
|
+
/** ★★☆☆ ✔ Example: "Unknown (3)" */
|
|
3163
|
+
Macro?: string;
|
|
2873
3164
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2874
3165
|
MacroLED?: string;
|
|
2875
3166
|
/** ★★☆☆ ✔ Example: "Unknown (852023)" */
|
|
@@ -2882,6 +3173,8 @@ export interface MakerNotesTags {
|
|
|
2882
3173
|
MainDialExposureComp?: string;
|
|
2883
3174
|
/** ☆☆☆☆ Example: 916 */
|
|
2884
3175
|
MakerNoteOffset?: number;
|
|
3176
|
+
/** ☆☆☆☆ Example: "Rdc" */
|
|
3177
|
+
MakerNoteType?: string;
|
|
2885
3178
|
/** ★★☆☆ ✔ Example: "mlt0" */
|
|
2886
3179
|
MakerNoteVersion?: string;
|
|
2887
3180
|
/** ☆☆☆☆ ✔ Example: "98 kPa" */
|
|
@@ -2906,6 +3199,8 @@ export interface MakerNotesTags {
|
|
|
2906
3199
|
ManualFocusRingInAFMode?: string;
|
|
2907
3200
|
/** ☆☆☆☆ ✔ Example: "Tv=Main/Av=Control" */
|
|
2908
3201
|
ManualTv?: string;
|
|
3202
|
+
/** ☆☆☆☆ ✔ Example: "2021:03:17" */
|
|
3203
|
+
ManufactureDate?: ExifDate | string;
|
|
2909
3204
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2910
3205
|
MasterGain?: number;
|
|
2911
3206
|
/** ☆☆☆☆ ✔ Example: "Face Detection On" */
|
|
@@ -2932,6 +3227,8 @@ export interface MakerNotesTags {
|
|
|
2932
3227
|
MeasuredRGGBData?: string;
|
|
2933
3228
|
/** ☆☆☆☆ ✔ Example: 7 */
|
|
2934
3229
|
MechanicalShutterCount?: number;
|
|
3230
|
+
/** ☆☆☆☆ ✔ Example: "High (48 kHz)" */
|
|
3231
|
+
MemoAudioQuality?: string;
|
|
2935
3232
|
/** ☆☆☆☆ ✔ Example: "SD card in use, MemoryStick slot empty" */
|
|
2936
3233
|
MemoryCardConfiguration?: string;
|
|
2937
3234
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
@@ -2950,8 +3247,6 @@ export interface MakerNotesTags {
|
|
|
2950
3247
|
MeterMode?: string;
|
|
2951
3248
|
/** ☆☆☆☆ ✔ Example: "Matrix" */
|
|
2952
3249
|
Metering?: string;
|
|
2953
|
-
/** ★★☆☆ ✔ Example: "Unknown (52990)" */
|
|
2954
|
-
MeteringMode?: string;
|
|
2955
3250
|
/** ☆☆☆☆ ✔ Example: "Within Range" */
|
|
2956
3251
|
MeteringOffScaleIndicator?: string;
|
|
2957
3252
|
/** ☆☆☆☆ ✔ Example: "8 s" */
|
|
@@ -3027,6 +3322,8 @@ export interface MakerNotesTags {
|
|
|
3027
3322
|
/** ☆☆☆☆ ✔ Example: "(none)" */
|
|
3028
3323
|
MonochromeColor?: string;
|
|
3029
3324
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3325
|
+
MonochromeFilterEffect?: string;
|
|
3326
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3030
3327
|
MonochromeGrainEffect?: string;
|
|
3031
3328
|
/** ☆☆☆☆ ✔ Example: "No Filter; 0; 8; Strength 2; 0; 3" */
|
|
3032
3329
|
MonochromeProfileSettings?: string;
|
|
@@ -3040,6 +3337,8 @@ export interface MakerNotesTags {
|
|
|
3040
3337
|
MoonPhase?: string;
|
|
3041
3338
|
/** ☆☆☆☆ Example: 100 */
|
|
3042
3339
|
MotionSensitivity?: number;
|
|
3340
|
+
/** ☆☆☆☆ ✔ Example: "AE/AF Lock" */
|
|
3341
|
+
MovieAELockButtonAssignment?: string;
|
|
3043
3342
|
/** ☆☆☆☆ ✔ Example: "Single" */
|
|
3044
3343
|
MovieAFAreaMode?: string;
|
|
3045
3344
|
/** ☆☆☆☆ ✔ Example: "4 (Normal)" */
|
|
@@ -3114,12 +3413,16 @@ export interface MakerNotesTags {
|
|
|
3114
3413
|
MyColorMode?: string;
|
|
3115
3414
|
/** ★★☆☆ ✔ Example: "n/a" */
|
|
3116
3415
|
NDFilter?: string;
|
|
3416
|
+
/** ☆☆☆☆ ✔ Example: "n/a (JPEG)" */
|
|
3417
|
+
NEFBitDepth?: string;
|
|
3117
3418
|
/** ☆☆☆☆ ✔ Example: "Uncompressed (reduced to 12 bit)" */
|
|
3118
3419
|
NEFCompression?: string;
|
|
3119
3420
|
/** ☆☆☆☆ ✔ Example: "(Binary data 624 bytes, use -b option to extract)" */
|
|
3120
3421
|
NEFLinearizationTable?: BinaryField | string;
|
|
3121
3422
|
/** ☆☆☆☆ Example: "Off (0 2)" */
|
|
3122
3423
|
NeutralDensityFilter?: string;
|
|
3424
|
+
/** ☆☆☆☆ ✔ Example: "ViewNX 2.8 M" */
|
|
3425
|
+
NikonCaptureVersion?: string;
|
|
3123
3426
|
/** ☆☆☆☆ ✔ Example: "Large (10.0 M)" */
|
|
3124
3427
|
NikonImageSize?: string;
|
|
3125
3428
|
/** ☆☆☆☆ ✔ Example: "Matrix" */
|
|
@@ -3130,28 +3433,38 @@ export interface MakerNotesTags {
|
|
|
3130
3433
|
NoiseFilter?: string;
|
|
3131
3434
|
/** ★★☆☆ ✔ Example: "[4]" */
|
|
3132
3435
|
NoiseReduction?: string;
|
|
3436
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
3437
|
+
NoiseReductionStrength?: number;
|
|
3133
3438
|
/** ☆☆☆☆ ✔ Example: 5.7 */
|
|
3134
3439
|
NominalMaxAperture?: number;
|
|
3135
3440
|
/** ☆☆☆☆ ✔ Example: 7 */
|
|
3136
3441
|
NominalMinAperture?: number;
|
|
3137
3442
|
/** ☆☆☆☆ ✔ Example: 16383 */
|
|
3138
3443
|
NormalWhiteLevel?: number;
|
|
3444
|
+
/** ★☆☆☆ ✔ Example: 9 */
|
|
3445
|
+
NumAFPoints?: number;
|
|
3139
3446
|
/** ☆☆☆☆ ✔ Example: 3 */
|
|
3140
3447
|
NumFaceElements?: number;
|
|
3141
3448
|
/** ☆☆☆☆ ✔ Example: 65535 */
|
|
3142
3449
|
NumFacePositions?: number;
|
|
3450
|
+
/** ☆☆☆☆ ✔ Example: "55 Points" */
|
|
3451
|
+
NumberOfFocusPoints?: string;
|
|
3143
3452
|
/** ☆☆☆☆ ✔ Example: 32 */
|
|
3144
3453
|
NumberOffsets?: number;
|
|
3145
3454
|
/** ☆☆☆☆ ✔ Example: 5 */
|
|
3146
3455
|
OISMode?: number;
|
|
3147
3456
|
/** ☆☆☆☆ ✔ Example: "Select Center Focus Point" */
|
|
3148
3457
|
OKButton?: string;
|
|
3458
|
+
/** ☆☆☆☆ Example: "inf" */
|
|
3459
|
+
ObjectDistance?: string;
|
|
3149
3460
|
/** ☆☆☆☆ ✔ Example: 960 */
|
|
3150
3461
|
OlympusImageHeight?: number;
|
|
3151
3462
|
/** ☆☆☆☆ ✔ Example: 3648 */
|
|
3152
3463
|
OlympusImageWidth?: number;
|
|
3153
3464
|
/** ☆☆☆☆ ✔ Example: "Unknown ()" */
|
|
3154
3465
|
OneTouchWB?: string;
|
|
3466
|
+
/** ☆☆☆☆ ✔ Example: "On" */
|
|
3467
|
+
OpticalVR?: string;
|
|
3155
3468
|
/** ☆☆☆☆ Example: 3 */
|
|
3156
3469
|
OpticalZoom?: number;
|
|
3157
3470
|
/** ★★☆☆ ✔ Example: 94 */
|
|
@@ -3166,6 +3479,8 @@ export interface MakerNotesTags {
|
|
|
3166
3479
|
OrientationLinkedAF?: string;
|
|
3167
3480
|
/** ☆☆☆☆ ✔ Example: "Same for vertical and horizontal" */
|
|
3168
3481
|
OrientationLinkedAFPoint?: string;
|
|
3482
|
+
/** ☆☆☆☆ ✔ Example: 3318 */
|
|
3483
|
+
OriginalDecisionDataOffset?: number;
|
|
3169
3484
|
/** ☆☆☆☆ Example: "/home/username/pictures" */
|
|
3170
3485
|
OriginalDirectory?: string;
|
|
3171
3486
|
/** ☆☆☆☆ ✔ Example: "L9997698.JPG" */
|
|
@@ -3178,10 +3493,14 @@ export interface MakerNotesTags {
|
|
|
3178
3493
|
OtherInfo?: string[];
|
|
3179
3494
|
/** ☆☆☆☆ ✔ Example: "(Binary data 864 bytes, use -b option to extract)" */
|
|
3180
3495
|
OutputLUT?: BinaryField | string;
|
|
3496
|
+
/** ★★☆☆ ✔ Example: "Itsa Myowna" */
|
|
3497
|
+
OwnerName?: string;
|
|
3181
3498
|
/** ☆☆☆☆ ✔ Example: 3 */
|
|
3182
3499
|
POILevel?: number;
|
|
3183
3500
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3184
3501
|
PaintingFilter?: string;
|
|
3502
|
+
/** ☆☆☆☆ ✔ Example: "2023:01:19 22:32:42.04" */
|
|
3503
|
+
PanasonicDateTime?: ExifDateTime | string;
|
|
3185
3504
|
/** ☆☆☆☆ ✔ Example: "0421" */
|
|
3186
3505
|
PanasonicExifVersion?: string;
|
|
3187
3506
|
/** ☆☆☆☆ ✔ Example: 5584 */
|
|
@@ -3222,6 +3541,8 @@ export interface MakerNotesTags {
|
|
|
3222
3541
|
PentaxModelID?: string;
|
|
3223
3542
|
/** ☆☆☆☆ ✔ Example: 6 */
|
|
3224
3543
|
PentaxModelType?: number;
|
|
3544
|
+
/** ☆☆☆☆ ✔ Example: "9.1.2.0" */
|
|
3545
|
+
PentaxVersion?: string;
|
|
3225
3546
|
/** ☆☆☆☆ ✔ Example: "513 513 513 513" */
|
|
3226
3547
|
PerChannelBlackLevel?: string;
|
|
3227
3548
|
/** ☆☆☆☆ ✔ Example: "Unknown (3)" */
|
|
@@ -3244,6 +3565,8 @@ export interface MakerNotesTags {
|
|
|
3244
3565
|
PhotoShootingMenuBank?: string;
|
|
3245
3566
|
/** ☆☆☆☆ ✔ Example: "FX (36x24)" */
|
|
3246
3567
|
PhotoShootingMenuBankImageArea?: string;
|
|
3568
|
+
/** ☆☆☆☆ ✔ Example: "Vivid" */
|
|
3569
|
+
PhotoStyle?: string;
|
|
3247
3570
|
/** ☆☆☆☆ ✔ Example: "Quick Adjust" */
|
|
3248
3571
|
PictureControlAdjust?: string;
|
|
3249
3572
|
/** ☆☆☆☆ ✔ Example: "Vivid" */
|
|
@@ -3284,6 +3607,8 @@ export interface MakerNotesTags {
|
|
|
3284
3607
|
Pitch?: string;
|
|
3285
3608
|
/** ☆☆☆☆ ✔ Example: 8.3 */
|
|
3286
3609
|
PitchAngle?: number;
|
|
3610
|
+
/** ☆☆☆☆ ✔ Example: 1 */
|
|
3611
|
+
PixelAspectRatio?: number;
|
|
3287
3612
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3288
3613
|
PixelShiftInfo?: string;
|
|
3289
3614
|
/** ☆☆☆☆ Example: "On" */
|
|
@@ -3318,16 +3643,36 @@ export interface MakerNotesTags {
|
|
|
3318
3643
|
PreviewButtonPlusDials?: string;
|
|
3319
3644
|
/** ☆☆☆☆ ✔ Example: "28 28 0 0" */
|
|
3320
3645
|
PreviewImageBorders?: string;
|
|
3646
|
+
/** ☆☆☆☆ ✔ Example: 976 */
|
|
3647
|
+
PreviewImageHeight?: number;
|
|
3648
|
+
/** ★★☆☆ ✔ Example: 9983 */
|
|
3649
|
+
PreviewImageLength?: number;
|
|
3650
|
+
/** ★☆☆☆ ✔ Example: "816x459" */
|
|
3651
|
+
PreviewImageSize?: string;
|
|
3652
|
+
/** ★★☆☆ ✔ Example: 9996 */
|
|
3653
|
+
PreviewImageStart?: number;
|
|
3321
3654
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
3322
3655
|
PreviewImageValid?: string;
|
|
3656
|
+
/** ☆☆☆☆ ✔ Example: 816 */
|
|
3657
|
+
PreviewImageWidth?: number;
|
|
3658
|
+
/** ☆☆☆☆ ✔ Example: 95 */
|
|
3659
|
+
PreviewQuality?: number;
|
|
3660
|
+
/** ★☆☆☆ ✔ Example: 8 */
|
|
3661
|
+
PrimaryAFPoint?: number;
|
|
3662
|
+
/** ☆☆☆☆ ✔ Example: "XQD Card" */
|
|
3663
|
+
PrimarySlot?: string;
|
|
3323
3664
|
/** ☆☆☆☆ ✔ Example: "AF" */
|
|
3324
3665
|
PrioritySetupShutterRelease?: string;
|
|
3666
|
+
/** ☆☆☆☆ ✔ Example: 9.987 */
|
|
3667
|
+
ProductionCode?: number;
|
|
3325
3668
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3326
3669
|
ProgramISO?: string;
|
|
3327
3670
|
/** ☆☆☆☆ ✔ Example: "Normal" */
|
|
3328
3671
|
ProgramLine?: string;
|
|
3329
3672
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
3330
3673
|
ProgramShift?: number;
|
|
3674
|
+
/** ★★★☆ ✔ Example: "Unknown (5)" */
|
|
3675
|
+
Quality?: string;
|
|
3331
3676
|
/** ☆☆☆☆ ✔ Example: "Exposure comp/Aperture" */
|
|
3332
3677
|
QuickControlDialInMeter?: string;
|
|
3333
3678
|
/** ☆☆☆☆ Example: "Off" */
|
|
@@ -3426,12 +3771,18 @@ export interface MakerNotesTags {
|
|
|
3426
3771
|
RecordingFormat?: string;
|
|
3427
3772
|
/** ☆☆☆☆ Example: "Auto" */
|
|
3428
3773
|
RecordingMode?: string;
|
|
3774
|
+
/** ★★☆☆ ✔ Example: 38.625 */
|
|
3775
|
+
RedBalance?: number;
|
|
3429
3776
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
3430
3777
|
RedEyeRemoval?: string;
|
|
3778
|
+
/** ☆☆☆☆ Example: "8D" */
|
|
3779
|
+
RedGain?: string;
|
|
3431
3780
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
3432
3781
|
ReleaseButtonToUseDial?: string;
|
|
3433
3782
|
/** ☆☆☆☆ ✔ Example: "Unknown (7)" */
|
|
3434
3783
|
ReleaseMode?: string;
|
|
3784
|
+
/** ☆☆☆☆ ✔ Example: "None" */
|
|
3785
|
+
RemoteFuncButton?: string;
|
|
3435
3786
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
3436
3787
|
RemoteOnDuration?: number;
|
|
3437
3788
|
/** ☆☆☆☆ ✔ Example: 10 */
|
|
@@ -3454,6 +3805,8 @@ export interface MakerNotesTags {
|
|
|
3454
3805
|
RetouchInfoVersion?: string;
|
|
3455
3806
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
3456
3807
|
RetouchNEFProcessing?: string;
|
|
3808
|
+
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
3809
|
+
RetractLensOnPowerOff?: string;
|
|
3457
3810
|
/** ☆☆☆☆ ✔ Example: "No" */
|
|
3458
3811
|
ReverseExposureCompDial?: string;
|
|
3459
3812
|
/** ☆☆☆☆ ✔ Example: "Not Reversed" */
|
|
@@ -3472,10 +3825,16 @@ export interface MakerNotesTags {
|
|
|
3472
3825
|
RicohMake?: string;
|
|
3473
3826
|
/** ☆☆☆☆ Example: "RICOH WG-M1" */
|
|
3474
3827
|
RicohModel?: string;
|
|
3475
|
-
/** ☆☆☆☆ Example:
|
|
3828
|
+
/** ☆☆☆☆ Example: 150.43 */
|
|
3476
3829
|
Roll?: number;
|
|
3477
3830
|
/** ☆☆☆☆ ✔ Example: 90 */
|
|
3478
3831
|
RollAngle?: number;
|
|
3832
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
3833
|
+
RunTimeEpoch?: number;
|
|
3834
|
+
/** ☆☆☆☆ ✔ Example: "Valid" */
|
|
3835
|
+
RunTimeFlags?: string;
|
|
3836
|
+
/** ☆☆☆☆ ✔ Example: 1000000000 */
|
|
3837
|
+
RunTimeScale?: number;
|
|
3479
3838
|
/** ☆☆☆☆ ✔ Example: 987823130000000 */
|
|
3480
3839
|
RunTimeValue?: number;
|
|
3481
3840
|
/** ☆☆☆☆ ✔ Example: "sRAW2 (sRAW)" */
|
|
@@ -3504,8 +3863,18 @@ export interface MakerNotesTags {
|
|
|
3504
3863
|
SaturationAdj?: number;
|
|
3505
3864
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
3506
3865
|
SaturationAuto?: number;
|
|
3866
|
+
/** ☆☆☆☆ ✔ Example: 655360 */
|
|
3867
|
+
SaturationFaithful?: number;
|
|
3868
|
+
/** ☆☆☆☆ ✔ Example: 8650752 */
|
|
3869
|
+
SaturationLandscape?: number;
|
|
3870
|
+
/** ☆☆☆☆ ✔ Example: 6619136 */
|
|
3871
|
+
SaturationNeutral?: number;
|
|
3872
|
+
/** ☆☆☆☆ ✔ Example: 6553609 */
|
|
3873
|
+
SaturationPortrait?: number;
|
|
3507
3874
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
3508
3875
|
SaturationSetting?: number;
|
|
3876
|
+
/** ☆☆☆☆ ✔ Example: 3 */
|
|
3877
|
+
SaturationStandard?: number;
|
|
3509
3878
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3510
3879
|
SaveFocus?: string;
|
|
3511
3880
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
@@ -3518,6 +3887,8 @@ export interface MakerNotesTags {
|
|
|
3518
3887
|
SceneMode?: string;
|
|
3519
3888
|
/** ☆☆☆☆ Example: "Unknown (9)" */
|
|
3520
3889
|
SceneModeUsed?: string;
|
|
3890
|
+
/** ☆☆☆☆ ✔ Example: "Unrecognized" */
|
|
3891
|
+
SceneRecognition?: string;
|
|
3521
3892
|
/** ☆☆☆☆ Example: "User 1" */
|
|
3522
3893
|
SceneSelect?: string;
|
|
3523
3894
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
@@ -3538,6 +3909,8 @@ export interface MakerNotesTags {
|
|
|
3538
3909
|
SelfTimerShotCount?: number;
|
|
3539
3910
|
/** ☆☆☆☆ ✔ Example: "1 s" */
|
|
3540
3911
|
SelfTimerShotInterval?: string;
|
|
3912
|
+
/** ☆☆☆☆ ✔ Example: "2 s" */
|
|
3913
|
+
SelfTimerTime?: string;
|
|
3541
3914
|
/** ☆☆☆☆ ✔ Example: {"_0":1,"_1":0,"_2":0,"_3":0} */
|
|
3542
3915
|
SemanticStyle?: Struct;
|
|
3543
3916
|
/** ☆☆☆☆ ✔ Example: true */
|
|
@@ -3554,6 +3927,8 @@ export interface MakerNotesTags {
|
|
|
3554
3927
|
SensorBitDepth?: number;
|
|
3555
3928
|
/** ☆☆☆☆ ✔ Example: 4214 */
|
|
3556
3929
|
SensorBlueLevel?: number;
|
|
3930
|
+
/** ☆☆☆☆ ✔ Example: 5893 */
|
|
3931
|
+
SensorBottomBorder?: number;
|
|
3557
3932
|
/** ☆☆☆☆ ✔ Example: "4095 646" */
|
|
3558
3933
|
SensorCalibration?: string;
|
|
3559
3934
|
/** ☆☆☆☆ ✔ Example: "Disable" */
|
|
@@ -3562,18 +3937,28 @@ export interface MakerNotesTags {
|
|
|
3562
3937
|
SensorFullHeight?: number;
|
|
3563
3938
|
/** ☆☆☆☆ Example: 3288 */
|
|
3564
3939
|
SensorFullWidth?: number;
|
|
3940
|
+
/** ☆☆☆☆ ✔ Example: 5920 */
|
|
3941
|
+
SensorHeight?: number;
|
|
3565
3942
|
/** ☆☆☆☆ Example: "1TCTJ8803BJ07G" */
|
|
3566
3943
|
SensorID?: string;
|
|
3944
|
+
/** ☆☆☆☆ ✔ Example: 88 */
|
|
3945
|
+
SensorLeftBorder?: number;
|
|
3567
3946
|
/** ☆☆☆☆ ✔ Example: "9.4 x 9.4 um" */
|
|
3568
3947
|
SensorPixelSize?: string;
|
|
3569
3948
|
/** ☆☆☆☆ ✔ Example: 4370 */
|
|
3570
3949
|
SensorRedLevel?: number;
|
|
3950
|
+
/** ☆☆☆☆ ✔ Example: 8883 */
|
|
3951
|
+
SensorRightBorder?: number;
|
|
3571
3952
|
/** ☆☆☆☆ ✔ Example: "7.576 x 5.682 mm" */
|
|
3572
3953
|
SensorSize?: string;
|
|
3573
3954
|
/** ☆☆☆☆ ✔ Example: "80.9 C" */
|
|
3574
3955
|
SensorTemperature?: string;
|
|
3956
|
+
/** ☆☆☆☆ ✔ Example: 96 */
|
|
3957
|
+
SensorTopBorder?: number;
|
|
3575
3958
|
/** ☆☆☆☆ ✔ Example: "Standard" */
|
|
3576
3959
|
SensorType?: string;
|
|
3960
|
+
/** ☆☆☆☆ ✔ Example: 8896 */
|
|
3961
|
+
SensorWidth?: number;
|
|
3577
3962
|
/** ☆☆☆☆ Example: "5 of 5" */
|
|
3578
3963
|
Sequence?: string;
|
|
3579
3964
|
/** ☆☆☆☆ ✔ Example: 4 */
|
|
@@ -3588,16 +3973,24 @@ export interface MakerNotesTags {
|
|
|
3588
3973
|
SequenceShotInterval?: string;
|
|
3589
3974
|
/** ☆☆☆☆ Example: "Unknown (28928)" */
|
|
3590
3975
|
SequentialShot?: string;
|
|
3976
|
+
/** ★★☆☆ ✔ Example: "sw02028104 " */
|
|
3977
|
+
SerialNumber?: string;
|
|
3978
|
+
/** ☆☆☆☆ ✔ Example: "Format 2" */
|
|
3979
|
+
SerialNumberFormat?: string;
|
|
3591
3980
|
/** ☆☆☆☆ ✔ Example: "Set: Picture Style" */
|
|
3592
3981
|
SetButtonCrossKeysFunc?: string;
|
|
3593
3982
|
/** ☆☆☆☆ ✔ Example: "Unknown (37 0)" */
|
|
3594
3983
|
SetButtonWhenShooting?: string;
|
|
3984
|
+
/** ☆☆☆☆ ✔ Example: "Default (no function)" */
|
|
3985
|
+
SetFunctionWhenShooting?: string;
|
|
3595
3986
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
3596
3987
|
ShadingCompensation?: string;
|
|
3597
3988
|
/** ☆☆☆☆ Example: 0 */
|
|
3598
3989
|
Shadow?: number;
|
|
3599
3990
|
/** ☆☆☆☆ Example: "On" */
|
|
3600
3991
|
ShadowCorrection?: string;
|
|
3992
|
+
/** ☆☆☆☆ ✔ Example: "0 (normal)" */
|
|
3993
|
+
ShadowTone?: string;
|
|
3601
3994
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
3602
3995
|
Shadows?: number;
|
|
3603
3996
|
/** ☆☆☆☆ ✔ Example: "On but Disabled" */
|
|
@@ -3608,14 +4001,26 @@ export interface MakerNotesTags {
|
|
|
3608
4001
|
SharpnessAuto?: number;
|
|
3609
4002
|
/** ☆☆☆☆ ✔ Example: 768 */
|
|
3610
4003
|
SharpnessFactor?: number;
|
|
4004
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4005
|
+
SharpnessFaithful?: number;
|
|
3611
4006
|
/** ☆☆☆☆ ✔ Example: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" */
|
|
3612
4007
|
SharpnessFreqTable?: string;
|
|
3613
4008
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3614
4009
|
SharpnessFrequency?: string;
|
|
4010
|
+
/** ☆☆☆☆ ✔ Example: 4 */
|
|
4011
|
+
SharpnessLandscape?: number;
|
|
4012
|
+
/** ☆☆☆☆ ✔ Example: 3 */
|
|
4013
|
+
SharpnessMonochrome?: number;
|
|
4014
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4015
|
+
SharpnessNeutral?: number;
|
|
4016
|
+
/** ☆☆☆☆ ✔ Example: 2752758 */
|
|
4017
|
+
SharpnessPortrait?: number;
|
|
3615
4018
|
/** ☆☆☆☆ ✔ Example: "+3" */
|
|
3616
4019
|
SharpnessRange?: string;
|
|
3617
4020
|
/** ☆☆☆☆ ✔ Example: "3 (min -3, max 5)" */
|
|
3618
4021
|
SharpnessSetting?: string;
|
|
4022
|
+
/** ☆☆☆☆ ✔ Example: 4 */
|
|
4023
|
+
SharpnessStandard?: number;
|
|
3619
4024
|
/** ☆☆☆☆ ✔ Example: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" */
|
|
3620
4025
|
SharpnessTable?: string;
|
|
3621
4026
|
/** ☆☆☆☆ ✔ Example: "Unknown (0)" */
|
|
@@ -3634,14 +4039,20 @@ export interface MakerNotesTags {
|
|
|
3634
4039
|
ShotNumberSincePowerUp?: number;
|
|
3635
4040
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
3636
4041
|
ShotsPerInterval?: number;
|
|
4042
|
+
/** ☆☆☆☆ ✔ Example: "Silent / Electronic (0 0 0)" */
|
|
4043
|
+
Shutter?: string;
|
|
3637
4044
|
/** ☆☆☆☆ ✔ Example: "AF/AE lock stop" */
|
|
3638
4045
|
ShutterAELButton?: string;
|
|
4046
|
+
/** ☆☆☆☆ ✔ Example: "Metering start/Meter + AF start" */
|
|
4047
|
+
ShutterButtonAFOnButton?: string;
|
|
3639
4048
|
/** ☆☆☆☆ ✔ Example: 998 */
|
|
3640
4049
|
ShutterCount?: number;
|
|
3641
4050
|
/** ☆☆☆☆ Example: */
|
|
3642
4051
|
ShutterCount2?: number;
|
|
3643
4052
|
/** ☆☆☆☆ Example: */
|
|
3644
4053
|
ShutterCount3?: number;
|
|
4054
|
+
/** ☆☆☆☆ ✔ Example: "2nd-curtain sync" */
|
|
4055
|
+
ShutterCurtainSync?: string;
|
|
3645
4056
|
/** ☆☆☆☆ ✔ Example: "Unknown (4)" */
|
|
3646
4057
|
ShutterMode?: string;
|
|
3647
4058
|
/** ☆☆☆☆ ✔ Example: "Single Shot" */
|
|
@@ -3662,6 +4073,8 @@ export interface MakerNotesTags {
|
|
|
3662
4073
|
ShutterType?: string;
|
|
3663
4074
|
/** ☆☆☆☆ ✔ Example: 58.592815 */
|
|
3664
4075
|
SignalToNoiseRatio?: number;
|
|
4076
|
+
/** ☆☆☆☆ ✔ Example: "On" */
|
|
4077
|
+
SilentPhotography?: string;
|
|
3665
4078
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
3666
4079
|
SingleFrame?: number;
|
|
3667
4080
|
/** ☆☆☆☆ ✔ Example: "Low" */
|
|
@@ -3672,6 +4085,8 @@ export interface MakerNotesTags {
|
|
|
3672
4085
|
SlaveFlashMeteringSegments?: string;
|
|
3673
4086
|
/** ★★☆☆ ✔ Example: "n/a" */
|
|
3674
4087
|
SlowShutter?: string;
|
|
4088
|
+
/** ★☆☆☆ ✔ Example: "On" */
|
|
4089
|
+
SlowSync?: string;
|
|
3675
4090
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3676
4091
|
SmartAlbumColor?: string;
|
|
3677
4092
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
@@ -3710,6 +4125,8 @@ export interface MakerNotesTags {
|
|
|
3710
4125
|
SonyModelID?: string;
|
|
3711
4126
|
/** ☆☆☆☆ ✔ Example: "Fine" */
|
|
3712
4127
|
SonyQuality?: string;
|
|
4128
|
+
/** ☆☆☆☆ ✔ Example: */
|
|
4129
|
+
SonyTimeMinSec?: string;
|
|
3713
4130
|
/** ☆☆☆☆ Example: 100 */
|
|
3714
4131
|
SourceDirectoryIndex?: number;
|
|
3715
4132
|
/** ☆☆☆☆ Example: 60 */
|
|
@@ -3718,6 +4135,10 @@ export interface MakerNotesTags {
|
|
|
3718
4135
|
SpecialEffectLevel?: number;
|
|
3719
4136
|
/** ☆☆☆☆ Example: "Off" */
|
|
3720
4137
|
SpecialEffectMode?: string;
|
|
4138
|
+
/** ☆☆☆☆ Example: "Unknown (15)" */
|
|
4139
|
+
SpecialEffectSetting?: string;
|
|
4140
|
+
/** ★☆☆☆ ✔ Example: "Unknown (962), Sequence: 0, Panorama: (none)" */
|
|
4141
|
+
SpecialMode?: string;
|
|
3721
4142
|
/** ☆☆☆☆ ✔ Example: 16383 */
|
|
3722
4143
|
SpecularWhiteLevel?: number;
|
|
3723
4144
|
/** ☆☆☆☆ Example: "+0.10" */
|
|
@@ -3726,8 +4147,14 @@ export interface MakerNotesTags {
|
|
|
3726
4147
|
SpeedY?: string;
|
|
3727
4148
|
/** ☆☆☆☆ Example: "+0.00" */
|
|
3728
4149
|
SpeedZ?: string;
|
|
4150
|
+
/** ☆☆☆☆ Example: 1632 */
|
|
4151
|
+
SpotFocusPointX?: number;
|
|
4152
|
+
/** ☆☆☆☆ Example: 960 */
|
|
4153
|
+
SpotFocusPointY?: number;
|
|
3729
4154
|
/** ☆☆☆☆ ✔ Example: "Enable (use active AF point)" */
|
|
3730
4155
|
SpotMeterLinkToAFPoint?: string;
|
|
4156
|
+
/** ★☆☆☆ ✔ Example: "Center" */
|
|
4157
|
+
SpotMeteringMode?: string;
|
|
3731
4158
|
/** ☆☆☆☆ ✔ Example: "Tripod high resolution" */
|
|
3732
4159
|
StackedImage?: string;
|
|
3733
4160
|
/** ☆☆☆☆ ✔ Example: "6 s" */
|
|
@@ -3748,6 +4175,8 @@ export interface MakerNotesTags {
|
|
|
3748
4175
|
SubSelectorAssignment?: string;
|
|
3749
4176
|
/** ☆☆☆☆ ✔ Example: "Virtual Horizon" */
|
|
3750
4177
|
SubSelectorCenter?: string;
|
|
4178
|
+
/** ☆☆☆☆ ✔ Example: "None" */
|
|
4179
|
+
SubSelectorPlusDials?: string;
|
|
3751
4180
|
/** ☆☆☆☆ ✔ Example: "Steady" */
|
|
3752
4181
|
SubjectMotion?: string;
|
|
3753
4182
|
/** ☆☆☆☆ Example: "None" */
|
|
@@ -3790,10 +4219,10 @@ export interface MakerNotesTags {
|
|
|
3790
4219
|
ThumbnailHeight?: number;
|
|
3791
4220
|
/** ★★☆☆ ✔ Example: "0 159 7 112" */
|
|
3792
4221
|
ThumbnailImageValidArea?: string;
|
|
3793
|
-
/** ☆☆☆☆ ✔ Example: 13181 */
|
|
3794
|
-
ThumbnailLength?: number;
|
|
3795
4222
|
/** ☆☆☆☆ ✔ Example: 160 */
|
|
3796
4223
|
ThumbnailWidth?: number;
|
|
4224
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 7404 bytes, use -b option to extract)" */
|
|
4225
|
+
TiffMeteringImage?: BinaryField | string;
|
|
3797
4226
|
/** ☆☆☆☆ ✔ Example: 30 */
|
|
3798
4227
|
TiffMeteringImageHeight?: number;
|
|
3799
4228
|
/** ☆☆☆☆ ✔ Example: 44 */
|
|
@@ -3804,6 +4233,8 @@ export interface MakerNotesTags {
|
|
|
3804
4233
|
TimeLapseShotNumber?: number;
|
|
3805
4234
|
/** ☆☆☆☆ ✔ Example: "01:48:53.63" */
|
|
3806
4235
|
TimeSincePowerOn?: ExifTime | string;
|
|
4236
|
+
/** ☆☆☆☆ ✔ Example: "2023:02:08 02:24:10.176-08:00" */
|
|
4237
|
+
TimeStamp?: ExifDateTime | string;
|
|
3807
4238
|
/** ★☆☆☆ ✔ Example: "-09:00" */
|
|
3808
4239
|
TimeZone?: string;
|
|
3809
4240
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
@@ -3812,23 +4243,35 @@ export interface MakerNotesTags {
|
|
|
3812
4243
|
TimeZoneCode?: number;
|
|
3813
4244
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
3814
4245
|
TimeZoneInfo?: number;
|
|
4246
|
+
/** ☆☆☆☆ ✔ Example: "Self-timer" */
|
|
4247
|
+
TimerFunctionButton?: string;
|
|
3815
4248
|
/** ☆☆☆☆ ✔ Example: "Disable; 6 s: 6; 16 s: 16; After release: 2" */
|
|
3816
4249
|
TimerLength?: string;
|
|
4250
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
4251
|
+
TimerRecording?: string;
|
|
4252
|
+
/** ☆☆☆☆ ✔ Example: "Normal" */
|
|
4253
|
+
ToneComp?: string;
|
|
3817
4254
|
/** ☆☆☆☆ ✔ Example: "Standard" */
|
|
3818
4255
|
ToneCurve?: string;
|
|
3819
4256
|
/** ☆☆☆☆ ✔ Example: "(Binary data 95 bytes, use -b option to extract)" */
|
|
3820
4257
|
ToneCurveMatching?: BinaryField | string;
|
|
3821
4258
|
/** ☆☆☆☆ ✔ Example: "(Binary data 1679 bytes, use -b option to extract)" */
|
|
3822
4259
|
ToneCurveTable?: BinaryField | string;
|
|
4260
|
+
/** ☆☆☆☆ ✔ Example: "Highlights; 0; -7; 7; Shadows; 0; -7; 7; Midtones; 0; -7;…0; 0; 0" */
|
|
4261
|
+
ToneLevel?: string;
|
|
3823
4262
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3824
4263
|
ToningEffect?: string;
|
|
3825
4264
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3826
4265
|
ToningEffectAuto?: string;
|
|
4266
|
+
/** ☆☆☆☆ ✔ Example: "None" */
|
|
4267
|
+
ToningEffectMonochrome?: string;
|
|
3827
4268
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3828
4269
|
ToningSaturation?: string;
|
|
3829
4270
|
/** ☆☆☆☆ Example: 5 */
|
|
3830
4271
|
TotalZoom?: number;
|
|
3831
4272
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
4273
|
+
TouchAE?: string;
|
|
4274
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3832
4275
|
ToyCameraFilter?: string;
|
|
3833
4276
|
/** ☆☆☆☆ Example: "Off" */
|
|
3834
4277
|
Transform?: string;
|
|
@@ -3840,6 +4283,10 @@ export interface MakerNotesTags {
|
|
|
3840
4283
|
TriggerMode?: string;
|
|
3841
4284
|
/** ☆☆☆☆ ✔ Example: "1/64" */
|
|
3842
4285
|
TvExposureTimeSetting?: string;
|
|
4286
|
+
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
4287
|
+
USBPowerDelivery?: string;
|
|
4288
|
+
/** ☆☆☆☆ ✔ Example: "Turns on after one-shot AF" */
|
|
4289
|
+
USMLensElectronicMF?: string;
|
|
3843
4290
|
/** ☆☆☆☆ ✔ Example: "7860345b882000641403450101000000170d0f1d0f11827ca3111430d3000000" */
|
|
3844
4291
|
UniqueID?: string;
|
|
3845
4292
|
/** ☆☆☆☆ Example: "ZME151000007" */
|
|
@@ -3848,20 +4295,38 @@ export interface MakerNotesTags {
|
|
|
3848
4295
|
UsableMeteringModes?: string;
|
|
3849
4296
|
/** ☆☆☆☆ ✔ Example: "Flags 0x3f" */
|
|
3850
4297
|
UsableShootingModes?: string;
|
|
4298
|
+
/** ☆☆☆☆ ✔ Example: "Unknown (4)" */
|
|
4299
|
+
UserDef1PictureStyle?: string;
|
|
4300
|
+
/** ☆☆☆☆ ✔ Example: "Unknown (0)" */
|
|
4301
|
+
UserDef2PictureStyle?: string;
|
|
4302
|
+
/** ☆☆☆☆ ✔ Example: "Unknown (4)" */
|
|
4303
|
+
UserDef3PictureStyle?: string;
|
|
3851
4304
|
/** ☆☆☆☆ Example: "PC900 COVERT PRO" */
|
|
3852
4305
|
UserLabel?: string;
|
|
4306
|
+
/** ☆☆☆☆ Example: "dpreview " */
|
|
4307
|
+
UserProfile?: string;
|
|
4308
|
+
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
4309
|
+
VFDisplayIllumination?: string;
|
|
4310
|
+
/** ★☆☆☆ ✔ Example: 0 */
|
|
4311
|
+
VRDOffset?: number;
|
|
3853
4312
|
/** ☆☆☆☆ ✔ Example: "0200" */
|
|
3854
4313
|
VRInfoVersion?: string;
|
|
3855
4314
|
/** ☆☆☆☆ ✔ Example: "Sport" */
|
|
3856
4315
|
VRMode?: string;
|
|
3857
4316
|
/** ☆☆☆☆ ✔ Example: "Unknown (1)" */
|
|
3858
4317
|
VRType?: string;
|
|
4318
|
+
/** ★☆☆☆ ✔ Example: 99 */
|
|
4319
|
+
ValidAFPoints?: number;
|
|
3859
4320
|
/** ☆☆☆☆ ✔ Example: "12 0" */
|
|
3860
4321
|
ValidBits?: string;
|
|
3861
4322
|
/** ☆☆☆☆ ✔ Example: "Scene Auto" */
|
|
3862
4323
|
VariProgram?: string;
|
|
4324
|
+
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
4325
|
+
VariableLowPassFilter?: string;
|
|
3863
4326
|
/** ☆☆☆☆ ✔ Example: "Same as AF-On Button" */
|
|
3864
4327
|
VerticalAFOnButton?: string;
|
|
4328
|
+
/** ☆☆☆☆ ✔ Example: "Exposure Compensation" */
|
|
4329
|
+
VerticalFuncButton?: string;
|
|
3865
4330
|
/** ☆☆☆☆ ✔ Example: "None" */
|
|
3866
4331
|
VerticalFuncButtonPlusDials?: string;
|
|
3867
4332
|
/** ☆☆☆☆ ✔ Example: "Same as AF-On" */
|
|
@@ -3888,12 +4353,20 @@ export interface MakerNotesTags {
|
|
|
3888
4353
|
ViewfinderWarnings?: string;
|
|
3889
4354
|
/** ☆☆☆☆ ✔ Example: "ViewFinder" */
|
|
3890
4355
|
ViewingMode?: string;
|
|
4356
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
4357
|
+
VignetteControl?: string;
|
|
3891
4358
|
/** ☆☆☆☆ Example: "Off" */
|
|
3892
4359
|
Vignetting?: string;
|
|
4360
|
+
/** ☆☆☆☆ ✔ Example: "36 -17446 -19682 0 15496 -19605 -10627 -28672 187 27452 -… 99 121" */
|
|
4361
|
+
VignettingCorrParams?: string;
|
|
3893
4362
|
/** ☆☆☆☆ ✔ Example: 97 */
|
|
3894
4363
|
VignettingCorrVersion?: number;
|
|
4364
|
+
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
4365
|
+
VignettingCorrection?: string;
|
|
3895
4366
|
/** ☆☆☆☆ Example: "Off" */
|
|
3896
4367
|
VoiceMemo?: string;
|
|
4368
|
+
/** ☆☆☆☆ ✔ Example: 9235 */
|
|
4369
|
+
WBBlueLevel?: number;
|
|
3897
4370
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3898
4371
|
WBBracketMode?: string;
|
|
3899
4372
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
@@ -3904,16 +4377,22 @@ export interface MakerNotesTags {
|
|
|
3904
4377
|
WBBracketValueGM?: number;
|
|
3905
4378
|
/** ☆☆☆☆ ✔ Example: "WB Bracketing Disabled" */
|
|
3906
4379
|
WBBracketingSteps?: string;
|
|
4380
|
+
/** ☆☆☆☆ ✔ Example: 60416 */
|
|
4381
|
+
WBGreenLevel?: number;
|
|
3907
4382
|
/** ☆☆☆☆ ✔ Example: "Rear LCD panel" */
|
|
3908
4383
|
WBMediaImageSizeSetting?: string;
|
|
3909
4384
|
/** ☆☆☆☆ ✔ Example: "Unknown (1 1)" */
|
|
3910
4385
|
WBMode?: string;
|
|
4386
|
+
/** ☆☆☆☆ ✔ Example: 834 */
|
|
4387
|
+
WBRedLevel?: number;
|
|
3911
4388
|
/** ☆☆☆☆ ✔ Example: 7 */
|
|
3912
4389
|
WBShiftAB?: number;
|
|
3913
4390
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
3914
4391
|
WBShiftCreativeControl?: number;
|
|
3915
4392
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
3916
4393
|
WBShiftGM?: number;
|
|
4394
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4395
|
+
WBShiftIntelligentAuto?: number;
|
|
3917
4396
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3918
4397
|
WatercolorFilter?: string;
|
|
3919
4398
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
@@ -3926,6 +4405,8 @@ export interface MakerNotesTags {
|
|
|
3926
4405
|
WhiteBalanceBracket?: string;
|
|
3927
4406
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3928
4407
|
WhiteBalanceBracketing?: string;
|
|
4408
|
+
/** ★☆☆☆ ✔ Example: 3 */
|
|
4409
|
+
WhiteBalanceFineTune?: number;
|
|
3929
4410
|
/** ☆☆☆☆ ✔ Example: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" */
|
|
3930
4411
|
WhiteBalanceMatching?: string;
|
|
3931
4412
|
/** ☆☆☆☆ ✔ Example: "User-Selected" */
|
|
@@ -3936,6 +4417,8 @@ export interface MakerNotesTags {
|
|
|
3936
4417
|
WhiteBalanceSet?: string;
|
|
3937
4418
|
/** ☆☆☆☆ ✔ Example: "Custom 1" */
|
|
3938
4419
|
WhiteBalanceSetting?: string;
|
|
4420
|
+
/** ☆☆☆☆ ✔ Example: "Auto" */
|
|
4421
|
+
WhiteBalanceSetup?: string;
|
|
3939
4422
|
/** ☆☆☆☆ ✔ Example: "(Binary data 2217 bytes, use -b option to extract)" */
|
|
3940
4423
|
WhiteBalanceTable?: BinaryField | string;
|
|
3941
4424
|
/** ☆☆☆☆ ✔ Example: "Auto" */
|
|
@@ -3944,6 +4427,8 @@ export interface MakerNotesTags {
|
|
|
3944
4427
|
WhiteBoard?: number;
|
|
3945
4428
|
/** ☆☆☆☆ Example: "Not Attached" */
|
|
3946
4429
|
WideAdapter?: string;
|
|
4430
|
+
/** ☆☆☆☆ Example: "Unknown (9)" */
|
|
4431
|
+
WideFocusZone?: string;
|
|
3947
4432
|
/** ☆☆☆☆ Example: "Off" */
|
|
3948
4433
|
WideRange?: string;
|
|
3949
4434
|
/** ☆☆☆☆ ✔ Example: "Hometown" */
|
|
@@ -3952,8 +4437,6 @@ export interface MakerNotesTags {
|
|
|
3952
4437
|
X3FillLight?: number;
|
|
3953
4438
|
/** ☆☆☆☆ Example: "(Binary data 512 bytes, use -b option to extract)" */
|
|
3954
4439
|
Xidiri?: BinaryField | string;
|
|
3955
|
-
/** ☆☆☆☆ ✔ Example: "Unknown (512)" */
|
|
3956
|
-
YCbCrPositioning?: string;
|
|
3957
4440
|
/** ☆☆☆☆ Example: 0.83734368 */
|
|
3958
4441
|
Yaw?: number;
|
|
3959
4442
|
/** ☆☆☆☆ ✔ Example: 99 */
|
|
@@ -4016,14 +4499,20 @@ export interface XMPTags {
|
|
|
4016
4499
|
BlueHue?: number;
|
|
4017
4500
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4018
4501
|
BlueSaturation?: number;
|
|
4502
|
+
/** ☆☆☆☆ ✔ Example: 9.25 */
|
|
4503
|
+
Brightness?: number;
|
|
4019
4504
|
/** ☆☆☆☆ ✔ Example: "5c62348a-2bbb-4e4c-89d9-3bf6a461ec89" */
|
|
4020
4505
|
BurstID?: string;
|
|
4021
4506
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
4022
4507
|
BurstPrimary?: number;
|
|
4508
|
+
/** ☆☆☆☆ Example: 0 */
|
|
4509
|
+
CamReverse?: number;
|
|
4023
4510
|
/** ☆☆☆☆ ✔ Example: "5c62348a-2bbb-4e4c-89d9-3bf6a461ec89" */
|
|
4024
4511
|
CameraBurstID?: string;
|
|
4025
4512
|
/** ☆☆☆☆ Example: "Front" */
|
|
4026
4513
|
CameraFacing?: string;
|
|
4514
|
+
/** ☆☆☆☆ ✔ Example: "" */
|
|
4515
|
+
CameraModelID?: string;
|
|
4027
4516
|
/** ☆☆☆☆ ✔ Example: "Embedded" */
|
|
4028
4517
|
CameraProfile?: string;
|
|
4029
4518
|
/** ☆☆☆☆ ✔ Example: "D4FE5D91640D0C5A01B5633EB8061002" */
|
|
@@ -4062,20 +4551,28 @@ export interface XMPTags {
|
|
|
4062
4551
|
ColorNoiseReductionDetail?: number;
|
|
4063
4552
|
/** ☆☆☆☆ ✔ Example: 50 */
|
|
4064
4553
|
ColorNoiseReductionSmoothness?: number;
|
|
4065
|
-
/** ☆☆☆☆ ✔ Example: "sRGB" */
|
|
4066
|
-
ColorSpace?: string;
|
|
4067
4554
|
/** ☆☆☆☆ ✔ Example: "" */
|
|
4068
4555
|
Colorlabels?: string;
|
|
4556
|
+
/** ☆☆☆☆ ✔ Example: "This is a comment." */
|
|
4557
|
+
Comment?: string;
|
|
4069
4558
|
/** ☆☆☆☆ ✔ Example: {"Directory":[{"DataURI":"primary_image","Length":0,"Mime…peg"}]} */
|
|
4070
4559
|
Container?: Struct;
|
|
4071
4560
|
/** ☆☆☆☆ ✔ Example: false */
|
|
4072
4561
|
ConvertToGrayscale?: boolean;
|
|
4562
|
+
/** ☆☆☆☆ ✔ Example: "United States" */
|
|
4563
|
+
Country?: string;
|
|
4564
|
+
/** ☆☆☆☆ ✔ Example: "ir" */
|
|
4565
|
+
CountryCode?: string;
|
|
4073
4566
|
/** ☆☆☆☆ Example: */
|
|
4074
4567
|
CreationTime?: ExifDateTime | string;
|
|
4075
4568
|
/** ☆☆☆☆ ✔ Example: ["daniel@woss.io"] */
|
|
4076
4569
|
Creator?: string[];
|
|
4570
|
+
/** ☆☆☆☆ Example: "{2d7e7fd6-2942-4d77-9842-389c3f62b14d}" */
|
|
4571
|
+
CreatorAppID?: string;
|
|
4077
4572
|
/** ☆☆☆☆ ✔ Example: {"CiAdrCity":"Amsterdam","CiAdrCtry":"Netherlands","CiAdr…73 CH"} */
|
|
4078
4573
|
CreatorContactInfo?: Struct;
|
|
4574
|
+
/** ☆☆☆☆ Example: 1 */
|
|
4575
|
+
CreatorOpenWithUIOptions?: number;
|
|
4079
4576
|
/** ☆☆☆☆ ✔ Example: "picnik.com" */
|
|
4080
4577
|
CreatorTool?: string;
|
|
4081
4578
|
/** ☆☆☆☆ Example: "Version Ver 1.04 " */
|
|
@@ -4086,8 +4583,12 @@ export interface XMPTags {
|
|
|
4086
4583
|
CropBottom?: number;
|
|
4087
4584
|
/** ☆☆☆☆ Example: 0 */
|
|
4088
4585
|
CropConstrainToWarp?: number;
|
|
4586
|
+
/** ☆☆☆☆ ✔ Example: "8 0" */
|
|
4587
|
+
CropLeft?: string;
|
|
4089
4588
|
/** ☆☆☆☆ Example: 1 */
|
|
4090
4589
|
CropRight?: number;
|
|
4590
|
+
/** ☆☆☆☆ ✔ Example: "8 0" */
|
|
4591
|
+
CropTop?: string;
|
|
4091
4592
|
/** ☆☆☆☆ ✔ Example: 3872 */
|
|
4092
4593
|
CroppedAreaImageHeightPixels?: number;
|
|
4093
4594
|
/** ☆☆☆☆ ✔ Example: 7744 */
|
|
@@ -4098,6 +4599,8 @@ export interface XMPTags {
|
|
|
4098
4599
|
CroppedAreaTopPixels?: number;
|
|
4099
4600
|
/** ☆☆☆☆ ✔ Example: "2014:05:11 13:08:25.659" */
|
|
4100
4601
|
DateAcquired?: ExifDateTime | string;
|
|
4602
|
+
/** ☆☆☆☆ ✔ Example: "2022:10:25" */
|
|
4603
|
+
DateCreated?: ExifDateTime | string;
|
|
4101
4604
|
/** ☆☆☆☆ ✔ Example: "2017:08:13 12:38:30" */
|
|
4102
4605
|
DateTime?: ExifDateTime | string;
|
|
4103
4606
|
/** ☆☆☆☆ ✔ Example: "2017:08:13 12:38:30" */
|
|
@@ -4126,10 +4629,6 @@ export interface XMPTags {
|
|
|
4126
4629
|
DisableAutoCreation?: string[];
|
|
4127
4630
|
/** ☆☆☆☆ ✔ Example: "xmp.did:7bf80ec8-c5cf-4881-b631-5ac83ae65ce2" */
|
|
4128
4631
|
DocumentID?: string;
|
|
4129
|
-
/** ☆☆☆☆ ✔ Example: "Exif Version 2.2" */
|
|
4130
|
-
ExifVersion?: string;
|
|
4131
|
-
/** ☆☆☆☆ ✔ Example: "Unknown (Auto exposure)" */
|
|
4132
|
-
ExposureMode?: string;
|
|
4133
4632
|
/** ☆☆☆☆ Example: [{"FaceAnglePitch":0.009265,"FaceAngleRoll":-0.021281,"Fa…re":4}] */
|
|
4134
4633
|
Face?: Struct[];
|
|
4135
4634
|
/** ☆☆☆☆ Example: 1 */
|
|
@@ -4138,14 +4637,14 @@ export interface XMPTags {
|
|
|
4138
4637
|
FaceSelectedIndex?: number;
|
|
4139
4638
|
/** ☆☆☆☆ Example: 8 */
|
|
4140
4639
|
Far?: number;
|
|
4141
|
-
/** ☆☆☆☆ ✔ Example:
|
|
4142
|
-
Firmware?:
|
|
4640
|
+
/** ☆☆☆☆ ✔ Example: "u77" */
|
|
4641
|
+
Firmware?: string;
|
|
4642
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4643
|
+
FlashCompensation?: number;
|
|
4143
4644
|
/** ☆☆☆☆ ✔ Example: "Example flash make" */
|
|
4144
4645
|
FlashManufacturer?: string;
|
|
4145
4646
|
/** ☆☆☆☆ ✔ Example: "FlashPix Version 1.0" */
|
|
4146
4647
|
FlashPixVersion?: string;
|
|
4147
|
-
/** ☆☆☆☆ Example: "0100" */
|
|
4148
|
-
FlashpixVersion?: string;
|
|
4149
4648
|
/** ☆☆☆☆ Example: 3.8 */
|
|
4150
4649
|
FlightPitchDegree?: number;
|
|
4151
4650
|
/** ☆☆☆☆ Example: 4.5 */
|
|
@@ -4174,6 +4673,8 @@ export interface XMPTags {
|
|
|
4174
4673
|
FullPanoWidthPixels?: number;
|
|
4175
4674
|
/** ☆☆☆☆ Example: -90 */
|
|
4176
4675
|
GimbalPitchDegree?: number;
|
|
4676
|
+
/** ☆☆☆☆ Example: 0 */
|
|
4677
|
+
GimbalReverse?: number;
|
|
4177
4678
|
/** ☆☆☆☆ Example: "+0.00" */
|
|
4178
4679
|
GimbalRollDegree?: string;
|
|
4179
4680
|
/** ☆☆☆☆ Example: "+90.80" */
|
|
@@ -4184,6 +4685,8 @@ export interface XMPTags {
|
|
|
4184
4685
|
GreenHue?: number;
|
|
4185
4686
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4186
4687
|
GreenSaturation?: number;
|
|
4688
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 23317 bytes, use -b option to extract)" */
|
|
4689
|
+
HDRPMakerNote?: BinaryField | string;
|
|
4187
4690
|
/** ☆☆☆☆ ✔ Example: false */
|
|
4188
4691
|
HasCrop?: boolean;
|
|
4189
4692
|
/** ☆☆☆☆ ✔ Example: "D1C7077D72112BA2E3FD1FDA7BCC2F0C" */
|
|
@@ -4214,6 +4717,10 @@ export interface XMPTags {
|
|
|
4214
4717
|
HueAdjustmentYellow?: number;
|
|
4215
4718
|
/** ☆☆☆☆ ✔ Example: "sRGB IEC61966-2.1" */
|
|
4216
4719
|
ICCProfileName?: string;
|
|
4720
|
+
/** ☆☆☆☆ ✔ Example: 4048 */
|
|
4721
|
+
ImageLength?: number;
|
|
4722
|
+
/** ☆☆☆☆ ✔ Example: 9956 */
|
|
4723
|
+
ImageNumber?: number;
|
|
4217
4724
|
/** ☆☆☆☆ ✔ Example: 180 */
|
|
4218
4725
|
InitialViewHeadingDegrees?: number;
|
|
4219
4726
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
@@ -4230,6 +4737,10 @@ export interface XMPTags {
|
|
|
4230
4737
|
IsBokehActive?: boolean;
|
|
4231
4738
|
/** ☆☆☆☆ ✔ Example: true */
|
|
4232
4739
|
IsHDRActive?: boolean;
|
|
4740
|
+
/** ☆☆☆☆ ✔ Example: false */
|
|
4741
|
+
IsNightModeActive?: boolean;
|
|
4742
|
+
/** ☆☆☆☆ ✔ Example: "選択" */
|
|
4743
|
+
Label?: string;
|
|
4233
4744
|
/** ☆☆☆☆ ✔ Example: ["red fish","bluefish"] */
|
|
4234
4745
|
LastKeywordXMP?: string[];
|
|
4235
4746
|
/** ☆☆☆☆ ✔ Example: "F351B7C76CEF50C906DB9B78A92FB1B4" */
|
|
@@ -4272,8 +4783,6 @@ export interface XMPTags {
|
|
|
4272
4783
|
Marked?: boolean;
|
|
4273
4784
|
/** ☆☆☆☆ ✔ Example: "" */
|
|
4274
4785
|
Mask?: string;
|
|
4275
|
-
/** ☆☆☆☆ ✔ Example: 5.7 */
|
|
4276
|
-
MaxApertureValue?: number;
|
|
4277
4786
|
/** ☆☆☆☆ ✔ Example: "2021:10:26 11:01:05+01:00" */
|
|
4278
4787
|
MetadataDate?: ExifDateTime | string;
|
|
4279
4788
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
@@ -4352,6 +4861,8 @@ export interface XMPTags {
|
|
|
4352
4861
|
PhotographicSensitivity?: number;
|
|
4353
4862
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4354
4863
|
PickLabel?: number;
|
|
4864
|
+
/** ☆☆☆☆ ✔ Example: "01.00" */
|
|
4865
|
+
PipelineVersion?: string;
|
|
4355
4866
|
/** ☆☆☆☆ ✔ Example: 65537 */
|
|
4356
4867
|
PortraitEffectsMatteVersion?: number;
|
|
4357
4868
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
@@ -4370,8 +4881,14 @@ export interface XMPTags {
|
|
|
4370
4881
|
ProcessVersion?: number;
|
|
4371
4882
|
/** ☆☆☆☆ ✔ Example: [{"CameraIndices":[0],"Type":"DepthPhoto"}] */
|
|
4372
4883
|
Profiles?: Struct[];
|
|
4884
|
+
/** ☆☆☆☆ Example: */
|
|
4885
|
+
ProgramMode?: string;
|
|
4373
4886
|
/** ☆☆☆☆ ✔ Example: "equirectangular" */
|
|
4374
4887
|
ProjectionType?: string;
|
|
4888
|
+
/** ★★☆☆ ✔ Example: 5 */
|
|
4889
|
+
Rating?: number;
|
|
4890
|
+
/** ☆☆☆☆ ✔ Example: 50 */
|
|
4891
|
+
RatingPercent?: number;
|
|
4375
4892
|
/** ☆☆☆☆ ✔ Example: "P2030414.jpg" */
|
|
4376
4893
|
RawFileName?: string;
|
|
4377
4894
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
@@ -4406,8 +4923,10 @@ export interface XMPTags {
|
|
|
4406
4923
|
SaturationAdjustmentYellow?: number;
|
|
4407
4924
|
/** ☆☆☆☆ ✔ Example: "AutoHDR" */
|
|
4408
4925
|
Scene?: string;
|
|
4409
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
4410
|
-
|
|
4926
|
+
/** ☆☆☆☆ ✔ Example: "[0.997883, 0.92984027]" */
|
|
4927
|
+
SceneDetectResultConfidences?: string;
|
|
4928
|
+
/** ☆☆☆☆ ✔ Example: "[901, 60, 0]" */
|
|
4929
|
+
SceneDetectResultIds?: string;
|
|
4411
4930
|
/** ☆☆☆☆ Example: "Undefined" */
|
|
4412
4931
|
SelfData?: string;
|
|
4413
4932
|
/** ☆☆☆☆ ✔ Example: 65536 */
|
|
@@ -4422,6 +4941,8 @@ export interface XMPTags {
|
|
|
4422
4941
|
SharpenRadius?: string;
|
|
4423
4942
|
/** ☆☆☆☆ ✔ Example: 2 */
|
|
4424
4943
|
SourcePhotosCount?: number;
|
|
4944
|
+
/** ☆☆☆☆ ✔ Example: ["com.google.android.apps.camera.gallery.specialtype.Spec…TRAIT"] */
|
|
4945
|
+
SpecialTypeID?: string[];
|
|
4425
4946
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4426
4947
|
SplitToningBalance?: number;
|
|
4427
4948
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
@@ -4432,22 +4953,26 @@ export interface XMPTags {
|
|
|
4432
4953
|
SplitToningShadowHue?: number;
|
|
4433
4954
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4434
4955
|
SplitToningShadowSaturation?: number;
|
|
4435
|
-
/** ☆☆☆☆
|
|
4956
|
+
/** ☆☆☆☆ ✔ Example: "Washington" */
|
|
4436
4957
|
State?: string;
|
|
4437
4958
|
/** ☆☆☆☆ ✔ Example: "https://PhotoStructure.com/" */
|
|
4438
4959
|
StitchingSoftware?: string;
|
|
4439
|
-
/** ☆☆☆☆ ✔ Example:
|
|
4440
|
-
|
|
4960
|
+
/** ☆☆☆☆ ✔ Example: 3 */
|
|
4961
|
+
StreamType?: number;
|
|
4441
4962
|
/** ☆☆☆☆ ✔ Example: ["点像F11"] */
|
|
4442
4963
|
Subject?: string[];
|
|
4443
4964
|
/** ☆☆☆☆ ✔ Example: 296185 */
|
|
4444
4965
|
SubsecTime?: number;
|
|
4966
|
+
/** ☆☆☆☆ ✔ Example: "#MB%:{9C0B071B-5553-4D89-B252-934C9EC1E04D}GBMB1:%MB#" */
|
|
4967
|
+
Tag?: string;
|
|
4445
4968
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
4446
4969
|
Tagged?: string;
|
|
4447
4970
|
/** ☆☆☆☆ ✔ Example: ["Subjekt/Natur/Pflanzen","Ort/Deutschland/Rangsdorf"] */
|
|
4448
4971
|
TagsList?: string[];
|
|
4449
4972
|
/** ☆☆☆☆ ✔ Example: "+5" */
|
|
4450
4973
|
Tint?: string;
|
|
4974
|
+
/** ☆☆☆☆ ✔ Example: "Very Blank" */
|
|
4975
|
+
Title?: string;
|
|
4451
4976
|
/** ☆☆☆☆ Example: 0 */
|
|
4452
4977
|
TlinearGain?: number;
|
|
4453
4978
|
/** ☆☆☆☆ ✔ Example: ["0, 0","255, 255"] */
|
|
@@ -4484,6 +5009,8 @@ export interface XMPTags {
|
|
|
4484
5009
|
UprightTransformCount?: number;
|
|
4485
5010
|
/** ☆☆☆☆ ✔ Example: 151388160 */
|
|
4486
5011
|
UprightVersion?: number;
|
|
5012
|
+
/** ☆☆☆☆ ✔ Example: true */
|
|
5013
|
+
UsePanoramaViewer?: boolean;
|
|
4487
5014
|
/** ☆☆☆☆ Example: */
|
|
4488
5015
|
Versions?: Version[] | Version | string;
|
|
4489
5016
|
/** ☆☆☆☆ ✔ Example: "+21" */
|
|
@@ -4509,15 +5036,11 @@ export interface XMPTags {
|
|
|
4509
5036
|
* devices (like iPhones) An example value, JSON stringified, follows the
|
|
4510
5037
|
* popularity ratings.
|
|
4511
5038
|
*
|
|
4512
|
-
* Autogenerated by "yarn mktags" by ExifTool 12.70 on
|
|
4513
|
-
*
|
|
5039
|
+
* Autogenerated by "yarn mktags" by ExifTool 12.70 on Fri Dec 08 2023.
|
|
5040
|
+
* 2724 unique tags were found in 10096 photo and video files.
|
|
4514
5041
|
*/
|
|
4515
|
-
export interface Tags extends APP12Tags, APP14Tags, APP1Tags, APP4Tags, APP5Tags, APP6Tags, ApplicationRecordTags, CompositeTags, EXIFTags, ExifToolTags, FileTags, FlashPixTags, ICCProfileTags, IPTCTags, ImageDataHashTag, JFIFTags, MPFTags, MWGCollectionsTags, MWGKeywordTags, MakerNotesTags, MetaTags, PanasonicRawTags, PhotoshopTags, PrintIMTags, QuickTimeTags, RAFTags, RIFFTags, XMPTags {
|
|
4516
|
-
|
|
4517
|
-
/** ☆☆☆☆ ✔ Example: "File is empty" */
|
|
4518
|
-
Error?: string;
|
|
4519
|
-
/** ☆☆☆☆ ✔ Example: "Unrecognized IPTC record 0 (ignored)" */
|
|
4520
|
-
Warning?: string;
|
|
5042
|
+
export interface Tags extends APP12Tags, APP14Tags, APP1Tags, APP4Tags, APP5Tags, APP6Tags, ApplicationRecordTags, CompositeTags, EXIFTags, ErrorsAndWarnings, ExifToolTags, FileTags, FlashPixTags, ICCProfileTags, IPTCTags, ImageDataHashTag, JFIFTags, MPFTags, MWGCollectionsTags, MWGKeywordTags, MakerNotesTags, MetaTags, PanasonicRawTags, PhotoshopTags, PrintIMTags, QuickTimeTags, RAFTags, RIFFTags, XMPTags {
|
|
5043
|
+
/** Full, resolved native path to this file */
|
|
4521
5044
|
SourceFile?: string;
|
|
4522
5045
|
/** Either an offset, like `UTC-7`, or an actual timezone, like `America/Los_Angeles` */
|
|
4523
5046
|
tz?: string;
|