We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6392aa0 commit 0c7a3f7Copy full SHA for 0c7a3f7
unpackori.py
@@ -83,6 +83,11 @@ def parse_header(headerdata, shotnum):
83
10: 'Scan'}
84
xphase_exif['Exif.Image.Model'] = xphase_models[headerdata[0]]
85
86
+ if(headerdata[0] == 10):
87
+ xphase_exif['Exif.Image.Orientation'] = 6
88
+ else:
89
+ xphase_exif['Exif.Image.Orientation'] = 0
90
+
91
xphase_exif['Exif.Photo.ExposureProgram'] = (headerdata[0x1c] & 0x1) + 1
92
93
hdr_modes = {2 : 'HDR3',
0 commit comments