Skip to content

Commit 91eaba1

Browse files
committed
add some EXIF tags (see #141)
1 parent b5935f0 commit 91eaba1

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

exifread/tags/exif.py

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,7 @@
181181
1: 'Regenerated',
182182
2: 'Unclean'
183183
}),
184+
0x014A: ('SubIFDs', ),
184185
0x0148: ('ConsecutiveBadFaxLines', ),
185186
0x014C: ('InkSet', {
186187
1: 'CMYK',
@@ -207,9 +208,10 @@
207208
0x0155: ('SMaxSampleValue', ),
208209
0x0156: ('TransferRange', ),
209210
0x0157: ('ClipPath', ),
211+
0x015B: ('JPEGTables', ),
210212
0x0200: ('JPEGProc', ),
211-
0x0201: ('JPEGInterchangeFormat', ),
212-
0x0202: ('JPEGInterchangeFormatLength', ),
213+
0x0201: ('JPEGInterchangeFormat', ), # JpegIFOffset
214+
0x0202: ('JPEGInterchangeFormatLength', ), # JpegIFByteCount
213215
0x0211: ('YCbCrCoefficients', ),
214216
0x0212: ('YCbCrSubSampling', ),
215217
0x0213: ('YCbCrPositioning', {
@@ -243,6 +245,9 @@
243245
0x8825: ('GPSInfo', GPS_INFO), # GPS tags
244246
0x8827: ('ISOSpeedRatings', ),
245247
0x8828: ('OECF', ),
248+
0x8829: ('Interlace', ),
249+
0x882A: ('TimeZoneOffset', ),
250+
0x882B: ('SelfTimerMode', ),
246251
0x8830: ('SensitivityType', {
247252
0: 'Unknown',
248253
1: 'Standard Output Sensitivity',
@@ -335,7 +340,15 @@
335340
95: 'Flash fired, auto mode, return light detected, red-eye reduction mode'
336341
}),
337342
0x920A: ('FocalLength', ),
343+
0x920B: ('FlashEnergy', ),
344+
0x920C: ('SpatialFrequencyResponse', ),
345+
0x920D: ('Noise', ),
346+
0x9211: ('ImageNumber', ),
347+
0x9212: ('SecurityClassification', ),
348+
0x9213: ('ImageHistory', ),
338349
0x9214: ('SubjectArea', ),
350+
0x9215: ('ExposureIndex', ),
351+
0x9216: ('TIFF/EPStandardID', ),
339352
0x927C: ('MakerNote', ),
340353
0x9286: ('UserComment', make_string_uc),
341354
0x9290: ('SubSecTime', ),

0 commit comments

Comments
 (0)