-
Notifications
You must be signed in to change notification settings - Fork 141
/
Copy pathdump
4304 lines (4208 loc) · 172 KB
/
dump
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Opening: exif-samples-master/heic/samplefilehub.heif
Image Orientation (Short): Horizontal (normal)
Image ResolutionUnit (Short): Pixels/Inch
Image XResolution (Ratio): 72
Image YCbCrPositioning (Short): Centered
Image YResolution (Ratio): 72
Opening: exif-samples-master/jpg/Canon_40D.jpg
File has JPEG thumbnail
EXIF ApertureValue (Ratio): 45/8
EXIF ColorSpace (Short): sRGB
EXIF ComponentsConfiguration (Undefined): YCbCr
EXIF CustomRendered (Short): Normal
EXIF DateTimeDigitized (ASCII): 2008:05:30 15:56:01
EXIF DateTimeOriginal (ASCII): 2008:05:30 15:56:01
EXIF ExifImageLength (Long): 68
EXIF ExifImageWidth (Long): 100
EXIF ExifVersion (Undefined): 0221
EXIF ExposureBiasValue (Signed Ratio): 0
EXIF ExposureMode (Short): Manual Exposure
EXIF ExposureProgram (Short): Manual
EXIF ExposureTime (Ratio): 1/160
EXIF FNumber (Ratio): 71/10
EXIF Flash (Short): Flash fired, compulsory flash mode
EXIF FlashPixVersion (Undefined): 0100
EXIF FocalLength (Ratio): 135
EXIF FocalPlaneResolutionUnit (Short): 2
EXIF FocalPlaneXResolution (Ratio): 324000/73
EXIF FocalPlaneYResolution (Ratio): 2592000/583
EXIF ISOSpeedRatings (Short): 100
EXIF InteroperabilityOffset (Long): 948
EXIF MeteringMode (Short): Pattern
EXIF SceneCaptureType (Short): Standard
EXIF ShutterSpeedValue (Signed Ratio): 59/8
EXIF SubSecTime (ASCII): 00
EXIF SubSecTimeDigitized (ASCII): 00
EXIF SubSecTimeOriginal (ASCII): 00
EXIF UserComment (Undefined):
EXIF WhiteBalance (Short): Auto
GPS GPSVersionID (Byte): [2, 2, 0, 0]
Image DateTime (ASCII): 2008:07:31 10:38:11
Image ExifOffset (Long): 214
Image GPSInfo (Long): 978
Image Make (ASCII): Canon
Image Model (ASCII): Canon EOS 40D
Image Orientation (Short): Horizontal (normal)
Image ResolutionUnit (Short): Pixels/Inch
Image Software (ASCII): GIMP 2.4.5
Image XResolution (Ratio): 72
Image YCbCrPositioning (Short): Co-sited
Image YResolution (Ratio): 72
Interoperability InteroperabilityIndex (ASCII): R98
Interoperability InteroperabilityVersion (Undefined): [48, 49, 48, 48]
Thumbnail Compression (Short): JPEG (old-style)
Thumbnail JPEGInterchangeFormat (Long): 1090
Thumbnail JPEGInterchangeFormatLength (Long): 1378
Thumbnail ResolutionUnit (Short): Pixels/Inch
Thumbnail XResolution (Ratio): 72
Thumbnail YResolution (Ratio): 72
Opening: exif-samples-master/jpg/Canon_40D_photoshop_import.jpg
File has JPEG thumbnail
EXIF ColorSpace (Short): sRGB
EXIF ExifImageLength (Long): 77
EXIF ExifImageWidth (Long): 100
Image DateTime (ASCII): 2008:07:31 10:05:49
Image ExifOffset (Long): 146
Image Orientation (Short): Horizontal (normal)
Image ResolutionUnit (Short): Pixels/Inch
Image Software (ASCII): GIMP 2.4.5
Image XResolution (Ratio): 300
Image YResolution (Ratio): 300
Thumbnail Compression (Short): JPEG (old-style)
Thumbnail JPEGInterchangeFormat (Long): 282
Thumbnail JPEGInterchangeFormatLength (Long): 2022
Thumbnail ResolutionUnit (Short): Pixels/Inch
Thumbnail XResolution (Ratio): 72
Thumbnail YResolution (Ratio): 72
Opening: exif-samples-master/jpg/Canon_DIGITAL_IXUS_400.jpg
File has JPEG thumbnail
EXIF ApertureValue (Ratio): 213/32
EXIF ColorSpace (Short): sRGB
EXIF ComponentsConfiguration (Undefined): YCbCr
EXIF CompressedBitsPerPixel (Ratio): 3
EXIF CustomRendered (Short): Custom
EXIF DateTimeDigitized (ASCII): 2004:08:27 13:52:55
EXIF DateTimeOriginal (ASCII): 2004:08:27 13:52:55
EXIF DigitalZoomRatio (Ratio): 1
EXIF ExifImageLength (Short): 75
EXIF ExifImageWidth (Short): 100
EXIF ExifVersion (Undefined): 0220
EXIF ExposureBiasValue (Signed Ratio): 0
EXIF ExposureMode (Short): Auto Exposure
EXIF ExposureTime (Ratio): 1/200
EXIF FNumber (Ratio): 10
EXIF FileSource (Undefined): Digital Camera
EXIF Flash (Short): Flash did not fire, auto mode
EXIF FlashPixVersion (Undefined): 0100
EXIF FocalLength (Ratio): 247/16
EXIF FocalPlaneResolutionUnit (Short): 2
EXIF FocalPlaneXResolution (Ratio): 56800/7
EXIF FocalPlaneYResolution (Ratio): 56800/7
EXIF InteroperabilityOffset (Long): 1284
EXIF MakerNote (Undefined): [14, 0, 0, 0, 3, 0, 6, 0, 0, 0, 76, 3, 0, 0, 0, 0, 3, 0, 4, 0, ... ]
EXIF MaxApertureValue (Ratio): 4
EXIF MeteringMode (Short): Pattern
EXIF SceneCaptureType (Short): Standard
EXIF SensingMethod (Short): One-chip color area
EXIF ShutterSpeedValue (Signed Ratio): 245/32
EXIF WhiteBalance (Short): Auto
Image DateTime (ASCII): 2008:07:31 17:15:01
Image ExifOffset (Long): 200
Image Make (ASCII): Canon
Image Model (ASCII): Canon DIGITAL IXUS 400
Image ResolutionUnit (Short): Pixels/Inch
Image Software (ASCII): GIMP 2.4.5
Image XResolution (Ratio): 72
Image YCbCrPositioning (Short): Centered
Image YResolution (Ratio): 72
Interoperability InteroperabilityIndex (ASCII): R98
Interoperability InteroperabilityVersion (Undefined): [48, 49, 48, 48]
Interoperability RelatedImageLength (Short): 1704
Interoperability RelatedImageWidth (Short): 2272
MakerNote AESetting (Proprietary): Normal AE
MakerNote AFPointSelected (Proprietary): Unknown
MakerNote AFPointUsed (Proprietary): 0
MakerNote ContinuousDriveMode (Proprietary): Single Or Timer
MakerNote Contrast (Proprietary): Normal
MakerNote DigitalZoom (Proprietary): None
MakerNote EasyShootingMode (Proprietary): Full Auto
MakerNote ExposureMode (Proprietary): Easy Shooting
MakerNote FirmwareVersion (ASCII): Firmware Version 1.00
MakerNote FlashActivity (Proprietary): Did Not Fire
MakerNote FlashBias (Proprietary): 0 EV
MakerNote FlashDetails (Proprietary): Manual
MakerNote FlashInfo (Short): [1024, 0, 0, 0]
MakerNote FlashMode (Proprietary): Auto
MakerNote FocalLength (Proprietary): 286
MakerNote FocalType (Proprietary): Unknown
MakerNote FocalUnitsPerMM (Proprietary): 32
MakerNote FocusMode (Proprietary): Single
MakerNote FocusType (Proprietary): Auto
MakerNote ISO (Proprietary): Auto
MakerNote ImageNumber (Long): 1242489
MakerNote ImageSize (Proprietary): Large
MakerNote ImageStabilization (Proprietary): Unknown
MakerNote ImageType (ASCII): IMG:DIGITAL IXUS 400 JPEG
MakerNote LensType (Proprietary): 65535
MakerNote LongFocalLengthOfLensInFocalUnits (Proprietary): 711
MakerNote Macromode (Proprietary): Normal
MakerNote ManualFlashOutput (Proprietary): n/a
MakerNote MeteringMode (Proprietary): Evaluative
MakerNote ModelID (Long): PowerShot S400 / Digital IXUS 400 / IXY Digital 400
MakerNote OwnerName (ASCII): Jean-Pierre Grignon
MakerNote Quality (Proprietary): Fine
MakerNote RecordMode (Proprietary): JPEG
MakerNote Saturation (Proprietary): Normal
MakerNote SelfTimer (Proprietary): 0
MakerNote SequenceNumber (Proprietary): 0
MakerNote Sharpness (Proprietary): Normal
MakerNote ShortFocalLengthOfLensInFocalUnits (Proprietary): 237
MakerNote SlowShutter (Proprietary): Off
MakerNote SpotMeteringMode (Proprietary): AF Point
MakerNote SubjectDistance (Proprietary): 216
MakerNote Tag 0x0000 (Short): [0, 0, 0, 0]
MakerNote Tag 0x0012 (Short): [9, 9, 2272, 1704, 2272, 212, 409, 38, 65126, 0, 410, 65126, 0, 410, 65126, 0, 410, 65495, 65495, 65495, 0, 0, 0, 41, 41, 41, 8, 3]
MakerNote ThumbnailImageValidArea (Short): [0, 0, 0, 0]
MakerNote Unknown (Proprietary): 0
MakerNote WhiteBalance (Proprietary): Auto
Thumbnail Compression (Short): JPEG (old-style)
Thumbnail JPEGInterchangeFormat (Long): 1432
Thumbnail JPEGInterchangeFormatLength (Long): 1805
Thumbnail ResolutionUnit (Short): Pixels/Inch
Thumbnail XResolution (Ratio): 72
Thumbnail YResolution (Ratio): 72
Opening: exif-samples-master/jpg/Canon_PowerShot_S40.jpg
File has JPEG thumbnail
EXIF ApertureValue (Ratio): 149/32
EXIF ColorSpace (Short): sRGB
EXIF ComponentsConfiguration (Undefined): YCbCr
EXIF CompressedBitsPerPixel (Ratio): 5
EXIF CustomRendered (Short): Normal
EXIF DateTimeDigitized (ASCII): 2003:12:14 12:01:44
EXIF DateTimeOriginal (ASCII): 2003:12:14 12:01:44
EXIF DigitalZoomRatio (Ratio): 1
EXIF ExifImageLength (Short): 1704
EXIF ExifImageWidth (Short): 2272
EXIF ExifVersion (Undefined): 0220
EXIF ExposureBiasValue (Signed Ratio): 0
EXIF ExposureMode (Short): Auto Exposure
EXIF ExposureTime (Ratio): 1/500
EXIF FNumber (Ratio): 49/10
EXIF FileSource (Undefined): Digital Camera
EXIF Flash (Short): Flash did not fire, auto mode
EXIF FlashPixVersion (Undefined): 0100
EXIF FocalLength (Ratio): 341/16
EXIF FocalPlaneResolutionUnit (Short): 2
EXIF FocalPlaneXResolution (Ratio): 56800/7
EXIF FocalPlaneYResolution (Ratio): 56800/7
EXIF InteroperabilityOffset (Long): 1416
EXIF MakerNote (Undefined): [12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]
EXIF MaxApertureValue (Ratio): 97349/32768
EXIF MeteringMode (Short): CenterWeightedAverage
EXIF SceneCaptureType (Short): Standard
EXIF SensingMethod (Short): One-chip color area
EXIF ShutterSpeedValue (Signed Ratio): 287/32
EXIF UserComment (Undefined):
EXIF WhiteBalance (Short): Auto
Image DateTime (ASCII): 2003:12:14 12:01:44
Image ExifOffset (Long): 196
Image Make (ASCII): Canon
Image Model (ASCII): Canon PowerShot S40
Image Orientation (Short): Horizontal (normal)
Image ResolutionUnit (Short): Pixels/Inch
Image XResolution (Ratio): 180
Image YCbCrPositioning (Short): Centered
Image YResolution (Ratio): 180
Interoperability InteroperabilityIndex (ASCII): R98
Interoperability InteroperabilityVersion (Undefined): [48, 49, 48, 48]
Interoperability RelatedImageLength (Short): 1704
Interoperability RelatedImageWidth (Short): 2272
MakerNote AESetting (Proprietary): Normal AE
MakerNote AFPointSelected (Proprietary): Center
MakerNote AFPointUsed (Proprietary): 12290
MakerNote ContinuousDriveMode (Proprietary): Single Or Timer
MakerNote Contrast (Proprietary): Normal
MakerNote DigitalZoom (Proprietary): None
MakerNote EasyShootingMode (Proprietary): Manual
MakerNote ExposureMode (Proprietary): Program
MakerNote FirmwareVersion (ASCII): Firmware Version 1.10
MakerNote FlashActivity (Proprietary): Did Not Fire
MakerNote FlashBias (Proprietary): 0 EV
MakerNote FlashDetails (Proprietary): Manual
MakerNote FlashInfo (Short): [0, 0, 0, 0]
MakerNote FlashMode (Proprietary): Auto
MakerNote FocalLength (Proprietary): 286
MakerNote FocalType (Proprietary): Unknown
MakerNote FocalUnitsPerMM (Proprietary): 32
MakerNote FocusMode (Proprietary): Single
MakerNote FocusType (Proprietary): Auto
MakerNote ISO (Proprietary): 100
MakerNote ImageNumber (Long): 1171771
MakerNote ImageSize (Proprietary): Large
MakerNote ImageStabilization (Proprietary): Unknown
MakerNote ImageType (ASCII): IMG:PowerShot S40 JPEG
MakerNote LensType (Proprietary): 65535
MakerNote LongFocalLengthOfLensInFocalUnits (Proprietary): 682
MakerNote Macromode (Proprietary): Normal
MakerNote MeteringMode (Proprietary): Center-weighted
MakerNote ModelID (Long): PowerShot S40
MakerNote OwnerName (ASCII): Andreas Huggel
MakerNote Quality (Proprietary): Superfine
MakerNote RecordMode (Proprietary): JPEG
MakerNote Saturation (Proprietary): Normal
MakerNote SelfTimer (Proprietary): 0
MakerNote SequenceNumber (Proprietary): 0
MakerNote Sharpness (Proprietary): Normal
MakerNote ShortFocalLengthOfLensInFocalUnits (Proprietary): 227
MakerNote SlowShutter (Proprietary): Off
MakerNote SpotMeteringMode (Proprietary): AF Point
MakerNote SubjectDistance (Proprietary): 782
MakerNote Tag 0x0000 (Short): [0, 0, 0, 0]
MakerNote Unknown (Proprietary): 250
MakerNote WhiteBalance (Proprietary): Auto
Thumbnail Compression (Short): JPEG (old-style)
Thumbnail JPEGInterchangeFormat (Long): 2036
Thumbnail JPEGInterchangeFormatLength (Long): 5448
Thumbnail ResolutionUnit (Short): Pixels/Inch
Thumbnail XResolution (Ratio): 180
Thumbnail YResolution (Ratio): 180
Opening: exif-samples-master/jpg/corrupted.jpg
File has JPEG thumbnail
EXIF ColorSpace (Short): sRGB
EXIF ComponentsConfiguration (Undefined): YCbCr
EXIF Contrast (Short): Normal
EXIF CustomRendered (Short): Normal
EXIF DateTimeDigitized (ASCII): 2015:09:08 11:02:17
EXIF DateTimeOriginal (ASCII): 2015:09:08 11:02:17
EXIF DigitalZoomRatio (Ratio): 1
EXIF ExifImageLength (Long): 2736
EXIF ExifImageWidth (Long): 3648
EXIF ExifVersion (Undefined): 0221
EXIF ExposureBiasValue (Signed Ratio): 0
EXIF ExposureMode (Short): Auto Exposure
EXIF ExposureProgram (Short): Program Creative
EXIF ExposureTime (Ratio): 1/250
EXIF FNumber (Ratio): 7/2
EXIF FileSource (Undefined): Digital Camera
EXIF Flash (Short): Flash did not fire, auto mode
EXIF FlashPixVersion (Undefined): 0100
EXIF FocalLength (Ratio): 33/5
EXIF GainControl (Short): None
EXIF ISOSpeedRatings (Short): 80
EXIF InteroperabilityOffset (Long): 614
EXIF LightSource (Short): Unknown
EXIF MakerNote (Undefined): [79, 76, 89, 77, 80, 85, 83, 0, 73, 73, 3, 0, 7, 0, 0, 2, 4, 0, 3, 0, ... ]
EXIF MaxApertureValue (Ratio): 86/25
EXIF MeteringMode (Short): Pattern
EXIF Saturation (Short): Normal
EXIF SceneCaptureType (Short): Standard
EXIF Sharpness (Short): Normal
EXIF UserComment (Undefined):
EXIF WhiteBalance (Short): Auto
Image DateTime (ASCII): 2015:09:08 11:02:17
Image ExifOffset (Long): 158
Image ImageDescription (ASCII): OLYMPUS DIGITAL CAMERA
Image Make (ASCII): OLYMPUS IMAGING CORP.
Image Model (ASCII): u1020,S1020
Image Orientation (Short): Horizontal (normal)
Image PrintIM (Undefined): [80, 114, 105, 110, 116, 73, 77, 0, 48, 51, 48, 48, 0, 0, 37, 0, 1, 0, 20, 0, ... ]
Image ResolutionUnit (Short): Pixels/Inch
Image Software (ASCII): Version 1.0
Image XResolution (Ratio): 314
Image YCbCrPositioning (Short): Co-sited
Image YResolution (Ratio): 314
Interoperability InteroperabilityIndex (ASCII): R98
Interoperability InteroperabilityVersion (Undefined): [48, 49, 48, 48]
MakerNote Tag 0x0001 (Byte): []
MakerNote Tag 0x0002 (Signed Byte): []
MakerNote Tag 0x0003 (Short): []
MakerNote Tag 0x0004 (Byte): []
MakerNote Tag 0x0005 (Byte): []
MakerNote Tag 0x0007 (Long): []
MakerNote Tag 0x0008 (Byte): []
MakerNote Tag 0x000A (Byte): []
MakerNote Tag 0x0101 (Byte): []
MakerNote Tag 0x0405 (Long): []
MakerNote Tag 0x05B8 (Short): []
MakerNote Tag 0x9466 (Signed Ratio): []
MakerNote Tag 0xAA01 (Byte): []
MakerNote Tag 0xAA60 (Signed Byte): []
MakerNote Tag 0xCCC4 (Single-Precision Floating Point (32-bit)): []
MakerNote Tag 0xFFFE (ASCII):
MakerNote Tag 0xFFFF (Signed Ratio): []
Thumbnail Compression (Short): JPEG (old-style)
Thumbnail JPEGInterchangeFormat (Long): 8980
Thumbnail JPEGInterchangeFormatLength (Long): 5309
Thumbnail ResolutionUnit (Short): Pixels/Inch
Thumbnail XResolution (Ratio): 72
Thumbnail YResolution (Ratio): 72
Opening: exif-samples-master/jpg/exif-org/canon-ixus.jpg
File has JPEG thumbnail
EXIF ApertureValue (Ratio): 4
EXIF ColorSpace (Short): sRGB
EXIF ComponentsConfiguration (Undefined): YCbCr
EXIF CompressedBitsPerPixel (Ratio): 3
EXIF DateTimeDigitized (ASCII): 2001:06:09 15:17:32
EXIF DateTimeOriginal (ASCII): 2001:06:09 15:17:32
EXIF ExifImageLength (Short): 480
EXIF ExifImageWidth (Short): 640
EXIF ExifVersion (Undefined): 0210
EXIF ExposureBiasValue (Signed Ratio): 0
EXIF ExposureTime (Ratio): 1/350
EXIF FNumber (Ratio): 4
EXIF FileSource (Undefined): Digital Camera
EXIF Flash (Short): Flash did not fire
EXIF FlashPixVersion (Undefined): 0100
EXIF FocalLength (Ratio): 173/16
EXIF FocalPlaneResolutionUnit (Short): 2
EXIF FocalPlaneXResolution (Ratio): 320000/103
EXIF FocalPlaneYResolution (Ratio): 96000/31
EXIF InteroperabilityOffset (Long): 1088
EXIF MakerNote (Undefined): [10, 0, 1, 0, 3, 0, 19, 0, 0, 0, 120, 3, 0, 0, 2, 0, 3, 0, 4, 0, ... ]
EXIF MaxApertureValue (Ratio): 97349/32768
EXIF MeteringMode (Short): CenterWeightedAverage
EXIF SensingMethod (Short): One-chip color area
EXIF ShutterSpeedValue (Signed Ratio): 553859/65536
EXIF SubjectDistance (Ratio): 15/4
EXIF UserComment (Undefined):
Image DateTime (ASCII): 2001:06:09 15:17:32
Image ExifOffset (Long): 184
Image Make (ASCII): Canon
Image Model (ASCII): Canon DIGITAL IXUS
Image Orientation (Short): Horizontal (normal)
Image ResolutionUnit (Short): Pixels/Inch
Image XResolution (Ratio): 180
Image YCbCrPositioning (Short): Centered
Image YResolution (Ratio): 180
Interoperability InteroperabilityIndex (ASCII): R98
Interoperability InteroperabilityVersion (Undefined): [48, 49, 48, 48]
Interoperability RelatedImageLength (Short): 480
Interoperability RelatedImageWidth (Short): 640
MakerNote AFPointUsed (Proprietary): 12290
MakerNote ContinuousDriveMode (Proprietary): Single Or Timer
MakerNote Contrast (Proprietary): Normal
MakerNote DigitalZoom (Proprietary): None
MakerNote EasyShootingMode (Proprietary): Manual
MakerNote FirmwareVersion (ASCII): Firmware Version 1.0
MakerNote FlashInfo (Short): [0, 0, 0, 0]
MakerNote FlashMode (Proprietary): Auto
MakerNote FocalLength (Proprietary): 211
MakerNote FocalType (Proprietary): Unknown
MakerNote FocusMode (Proprietary): AI Servo
MakerNote FocusType (Proprietary): Auto
MakerNote ISO (Proprietary): See ISOSpeedRatings Tag
MakerNote ImageNumber (Long): 1010163
MakerNote ImageSize (Proprietary): Small
MakerNote ImageType (ASCII): IMG:JPEG file
MakerNote Macromode (Proprietary): Normal
MakerNote MeteringMode (Proprietary): Default
MakerNote ModelID (Long): PowerShot S100 / Digital IXUS / IXY Digital
MakerNote OwnerName (ASCII): Tom Rowan and Sarah Clifton
MakerNote Quality (Proprietary): Fine
MakerNote RecordMode (Proprietary): JPEG
MakerNote Saturation (Proprietary): Normal
MakerNote SelfTimer (Proprietary): 0
MakerNote SequenceNumber (Proprietary): 1
MakerNote Sharpness (Proprietary): Normal
MakerNote SlowShutter (Proprietary): Off
MakerNote Tag 0x0000 (Short): [0, 0, 0, 0, 0, 0]
MakerNote Unknown (Proprietary): 0
MakerNote WhiteBalance (Proprietary): Auto
Thumbnail Compression (Short): JPEG (old-style)
Thumbnail JPEGInterchangeFormat (Long): 1524
Thumbnail JPEGInterchangeFormatLength (Long): 5342
Thumbnail ResolutionUnit (Short): Pixels/Inch
Thumbnail XResolution (Ratio): 180
Thumbnail YResolution (Ratio): 180
Opening: exif-samples-master/jpg/exif-org/fujifilm-dx10.jpg
File has JPEG thumbnail
EXIF ApertureValue (Ratio): 41/10
EXIF BrightnessValue (Signed Ratio): -27/10
EXIF ColorSpace (Short): sRGB
EXIF ComponentsConfiguration (Undefined): YCbCr
EXIF CompressedBitsPerPixel (Ratio): 7/5
EXIF DateTimeDigitized (ASCII): 2001:04:12 20:33:14
EXIF DateTimeOriginal (ASCII): 2001:04:12 20:33:14
EXIF ExifImageLength (Long): 768
EXIF ExifImageWidth (Long): 1024
EXIF ExifVersion (Undefined): 0210
EXIF ExposureBiasValue (Signed Ratio): 0
EXIF ExposureProgram (Short): Program Normal
EXIF FNumber (Ratio): 21/5
EXIF FileSource (Undefined): Digital Camera
EXIF Flash (Short): Flash fired
EXIF FlashPixVersion (Undefined): 0100
EXIF FocalLength (Ratio): 29/5
EXIF FocalPlaneResolutionUnit (Short): 3
EXIF FocalPlaneXResolution (Ratio): 2151
EXIF FocalPlaneYResolution (Ratio): 2151
EXIF ISOSpeedRatings (Short): 150
EXIF InteroperabilityOffset (Long): 708
EXIF MaxApertureValue (Ratio): 41/10
EXIF MeteringMode (Short): Pattern
EXIF SceneType (Undefined): Directly Photographed
EXIF SensingMethod (Short): One-chip color area
EXIF ShutterSpeedValue (Signed Ratio): 33/5
Image Copyright (ASCII): J P Bowen
Image DateTime (ASCII): 2001:04:12 20:33:14
Image ExifOffset (Long): 258
Image Make (ASCII): FUJIFILM
Image Model (ASCII): DX-10
Image Orientation (Short): Horizontal (normal)
Image ResolutionUnit (Short): Pixels/Inch
Image Software (ASCII): Digital Camera DX-10 Ver1.00
Image XResolution (Ratio): 72
Image YCbCrPositioning (Short): Co-sited
Image YResolution (Ratio): 72
Interoperability InteroperabilityIndex (ASCII): R98
Interoperability InteroperabilityVersion (Undefined): [48, 49, 48, 48]
Thumbnail Compression (Short): JPEG (old-style)
Thumbnail JPEGInterchangeFormat (Long): 856
Thumbnail JPEGInterchangeFormatLength (Long): 10274
Thumbnail Orientation (Short): Horizontal (normal)
Thumbnail ResolutionUnit (Short): Pixels/Inch
Thumbnail XResolution (Ratio): 72
Thumbnail YCbCrPositioning (Short): Co-sited
Thumbnail YResolution (Ratio): 72
Opening: exif-samples-master/jpg/exif-org/fujifilm-finepix40i.jpg
File has JPEG thumbnail
EXIF ApertureValue (Ratio): 3
EXIF BrightnessValue (Signed Ratio): 13/50
EXIF ColorSpace (Short): sRGB
EXIF ComponentsConfiguration (Undefined): YCbCr
EXIF CompressedBitsPerPixel (Ratio): 3/2
EXIF DateTimeDigitized (ASCII): 2000:08:04 18:22:57
EXIF DateTimeOriginal (ASCII): 2000:08:04 18:22:57
EXIF ExifImageLength (Long): 1800
EXIF ExifImageWidth (Long): 2400
EXIF ExifVersion (Undefined): 0210
EXIF ExposureBiasValue (Signed Ratio): 0
EXIF ExposureProgram (Short): Program Normal
EXIF FNumber (Ratio): 14/5
EXIF FileSource (Undefined): Digital Camera
EXIF Flash (Short): Flash fired
EXIF FlashPixVersion (Undefined): 0100
EXIF FocalLength (Ratio): 87/10
EXIF FocalPlaneResolutionUnit (Short): 3
EXIF FocalPlaneXResolution (Ratio): 2381
EXIF FocalPlaneYResolution (Ratio): 2381
EXIF ISOSpeedRatings (Short): 200
EXIF InteroperabilityOffset (Long): 926
EXIF MakerNote (Undefined): [70, 85, 74, 73, 70, 73, 76, 77, 12, 0, 0, 0, 15, 0, 0, 0, 7, 0, 4, 0, ... ]
EXIF MaxApertureValue (Ratio): 3
EXIF MeteringMode (Short): Pattern
EXIF SceneType (Undefined): Directly Photographed
EXIF SensingMethod (Short): One-chip color area
EXIF ShutterSpeedValue (Signed Ratio): 11/2
Image Copyright (ASCII):
Image DateTime (ASCII): 2000:08:04 18:22:57
Image ExifOffset (Long): 250
Image Make (ASCII): FUJIFILM
Image Model (ASCII): FinePix40i
Image Orientation (Short): Horizontal (normal)
Image ResolutionUnit (Short): Pixels/Inch
Image Software (ASCII): Digital Camera FinePix40i Ver1.39
Image XResolution (Ratio): 72
Image YCbCrPositioning (Short): Co-sited
Image YResolution (Ratio): 72
Interoperability InteroperabilityIndex (ASCII): R98
Interoperability InteroperabilityVersion (Undefined): [48, 49, 48, 48]
MakerNote BlurWarning (Short): Off
MakerNote ExposureWarning (Short): Off
MakerNote FlashMode (Short): On
MakerNote FlashStrength (Signed Ratio): 0
MakerNote FocusMode (Short): Auto
MakerNote FocusWarning (Short): Off
MakerNote Macro (Short): Off
MakerNote MotorOrBracket (Short): Off
MakerNote NoteVersion (Undefined): 0130
MakerNote PictureMode (Short): Portrait
MakerNote Quality (ASCII): NORMAL
MakerNote Sharpness (Short): Normal
MakerNote SlowSync (Short): Off
MakerNote Tag 0x1200 (Short): 0
MakerNote WhiteBalance (Short): Auto
Thumbnail Compression (Short): JPEG (old-style)
Thumbnail JPEGInterchangeFormat (Long): 1074
Thumbnail JPEGInterchangeFormatLength (Long): 8691
Thumbnail Orientation (Short): Horizontal (normal)
Thumbnail ResolutionUnit (Short): Pixels/Inch
Thumbnail XResolution (Ratio): 72
Thumbnail YCbCrPositioning (Short): Co-sited
Thumbnail YResolution (Ratio): 72
Opening: exif-samples-master/jpg/exif-org/fujifilm-mx1700.jpg
File has JPEG thumbnail
EXIF ApertureValue (Ratio): 28/5
EXIF BrightnessValue (Signed Ratio): 38/5
EXIF ColorSpace (Short): sRGB
EXIF ComponentsConfiguration (Undefined): YCbCr
EXIF CompressedBitsPerPixel (Ratio): 2
EXIF DateTimeDigitized (ASCII): 2000:09:02 14:30:10
EXIF DateTimeOriginal (ASCII): 2000:09:02 14:30:10
EXIF ExifImageLength (Long): 480
EXIF ExifImageWidth (Long): 640
EXIF ExifVersion (Undefined): 0210
EXIF ExposureBiasValue (Signed Ratio): 0
EXIF ExposureProgram (Short): Program Normal
EXIF FNumber (Ratio): 7
EXIF FileSource (Undefined): Digital Camera
EXIF Flash (Short): Flash did not fire
EXIF FlashPixVersion (Undefined): 0100
EXIF FocalLength (Ratio): 99/10
EXIF FocalPlaneResolutionUnit (Short): 3
EXIF FocalPlaneXResolution (Ratio): 1087
EXIF FocalPlaneYResolution (Ratio): 1087
EXIF ISOSpeedRatings (Short): 125
EXIF InteroperabilityOffset (Long): 708
EXIF MaxApertureValue (Ratio): 33/10
EXIF MeteringMode (Short): Pattern
EXIF SceneType (Undefined): Directly Photographed
EXIF SensingMethod (Short): One-chip color area
EXIF ShutterSpeedValue (Signed Ratio): 37/5
Image Copyright (ASCII):
Image DateTime (ASCII): 2000:09:02 14:30:10
Image ExifOffset (Long): 258
Image Make (ASCII): FUJIFILM
Image Model (ASCII): MX-1700ZOOM
Image Orientation (Short): Horizontal (normal)
Image ResolutionUnit (Short): Pixels/Inch
Image Software (ASCII): Digital Camera MX-1700ZOOM Ver1.00
Image XResolution (Ratio): 72
Image YCbCrPositioning (Short): Co-sited
Image YResolution (Ratio): 72
Interoperability InteroperabilityIndex (ASCII): R98
Interoperability InteroperabilityVersion (Undefined): [48, 49, 48, 48]
Thumbnail Compression (Short): JPEG (old-style)
Thumbnail JPEGInterchangeFormat (Long): 856
Thumbnail JPEGInterchangeFormatLength (Long): 4354
Thumbnail Orientation (Short): Horizontal (normal)
Thumbnail ResolutionUnit (Short): Pixels/Inch
Thumbnail XResolution (Ratio): 72
Thumbnail YCbCrPositioning (Short): Co-sited
Thumbnail YResolution (Ratio): 72
Opening: exif-samples-master/jpg/exif-org/kodak-dc210.jpg
EXIF ApertureValue (Ratio): 4
EXIF BrightnessValue (Signed Ratio): 3/2
EXIF ComponentsConfiguration (Undefined): YCbCr
EXIF CompressedBitsPerPixel (Ratio): 0/0
EXIF DateTimeOriginal (ASCII): 2000:10:26 16:46:51
EXIF ExifVersion (Undefined): 0110
EXIF ExposureBiasValue (Signed Ratio): 0
EXIF ExposureTime (Ratio): 1/30
EXIF FNumber (Ratio): 4
EXIF Flash (Short): Flash fired
EXIF FocalLength (Ratio): 22/5
EXIF LightSource (Short): Unknown
EXIF MakerNote (Undefined): [1, 4, 3, 0, 2, 1, 255, 255, 0, 1, 55, 142, 14, 93, 109, 246, 1, 0, 0, 251, ... ]
EXIF MaxApertureValue (Ratio): 4
EXIF MeteringMode (Short): CenterWeightedAverage
EXIF ShutterSpeedValue (Signed Ratio): 5
EXIF SubjectDistance (Ratio): 0/0
Image Copyright (ASCII):
Image ExifOffset (Long): 374
Image ImageDescription (ASCII):
Image Make (ASCII): Eastman Kodak Company
Image Model (ASCII): DC210 Zoom (V05.00)
Image Orientation (Short): Horizontal (normal)
Image ResolutionUnit (Short): Pixels/Inch
Image XResolution (Ratio): 216
Image YCbCrPositioning (Short): Centered
Image YResolution (Ratio): 216
Thumbnail BitsPerSample (Short): [8, 8, 8]
Thumbnail Compression (Short): Uncompressed
Thumbnail ImageLength (Short): 72
Thumbnail ImageWidth (Short): 96
Thumbnail PhotometricInterpretation (Short): 2
Thumbnail ResolutionUnit (Short): Pixels/Inch
Thumbnail RowsPerStrip (Short): 72
Thumbnail SamplesPerPixel (Short): 3
Thumbnail StripByteCounts (Short): 20736
Thumbnail StripOffsets (Short): 928
Thumbnail XResolution (Ratio): 72
Thumbnail YResolution (Ratio): 72
Opening: exif-samples-master/jpg/exif-org/kodak-dc240.jpg
File has JPEG thumbnail
EXIF ApertureValue (Ratio): 4
EXIF ColorSpace (Short): sRGB
EXIF ComponentsConfiguration (Undefined): YCbCr
EXIF DateTimeDigitized (ASCII): 1999:05:25 21:00:09
EXIF DateTimeOriginal (ASCII): 1999:05:25 21:00:09
EXIF ExifImageLength (Short): 960
EXIF ExifImageWidth (Short): 1280
EXIF ExifVersion (Undefined): 0210
EXIF ExposureBiasValue (Signed Ratio): 0
EXIF ExposureIndex (Ratio): 140
EXIF ExposureTime (Ratio): 1/30
EXIF FNumber (Ratio): 4
EXIF FileSource (Undefined): Digital Camera
EXIF Flash (Short): Flash fired
EXIF FlashPixVersion (Undefined): 0100
EXIF FocalLength (Ratio): 14
EXIF InteroperabilityOffset (Long): 1284
EXIF LightSource (Short): Unknown
EXIF MakerNote (Undefined): [1, 5, 3, 1, 2, 0, 0, 0, 255, 255, 255, 255, 7, 207, 5, 25, 21, 0, 9, 62, ... ]
EXIF MaxApertureValue (Ratio): 19/5
EXIF MeteringMode (Short): Average
EXIF SceneType (Undefined): Directly Photographed
EXIF SensingMethod (Short): One-chip color area
EXIF ShutterSpeedValue (Signed Ratio): 5
Image Copyright (ASCII): KODAK DC240 ZOOM DIGITAL CAMERA
Image ExifOffset (Long): 250
Image Make (ASCII): EASTMAN KODAK COMPANY
Image Model (ASCII): KODAK DC240 ZOOM DIGITAL CAMERA
Image Orientation (Short): Horizontal (normal)
Image ResolutionUnit (Short): Pixels/Inch
Image XResolution (Ratio): 192
Image YCbCrPositioning (Short): Centered
Image YResolution (Ratio): 192
Interoperability InteroperabilityIndex (ASCII): R98
Interoperability InteroperabilityVersion (Undefined): [48, 49, 48, 48]
Thumbnail Compression (Short): JPEG (old-style)
Thumbnail JPEGInterchangeFormat (Long): 1480
Thumbnail JPEGInterchangeFormatLength (Long): 6934
Thumbnail Orientation (Short): Horizontal (normal)
Thumbnail ResolutionUnit (Short): Pixels/Inch
Thumbnail XResolution (Ratio): 72
Thumbnail YResolution (Ratio): 72
Opening: exif-samples-master/jpg/exif-org/nikon-e950.jpg
File has JPEG thumbnail
EXIF ColorSpace (Short): sRGB
EXIF ComponentsConfiguration (Undefined): YCbCr
EXIF CompressedBitsPerPixel (Ratio): 4
EXIF DateTimeDigitized (ASCII): 2001:04:06 11:51:40
EXIF DateTimeOriginal (ASCII): 2001:04:06 11:51:40
EXIF ExifImageLength (Long): 1200
EXIF ExifImageWidth (Long): 1600
EXIF ExifVersion (Undefined): 0210
EXIF ExposureBiasValue (Signed Ratio): 0
EXIF ExposureProgram (Short): Program Normal
EXIF ExposureTime (Ratio): 1/77
EXIF FNumber (Ratio): 11/2
EXIF FileSource (Undefined): Digital Camera
EXIF Flash (Short): Flash did not fire
EXIF FlashPixVersion (Undefined): 0100
EXIF FocalLength (Ratio): 64/5
EXIF ISOSpeedRatings (Short): 80
EXIF InteroperabilityOffset (Long): 886
EXIF LightSource (Short): Unknown
EXIF MakerNote (Undefined): [78, 105, 107, 111, 110, 0, 1, 0, 11, 0, 2, 0, 2, 0, 6, 0, 0, 0, 38, 4, ... ]
EXIF MaxApertureValue (Ratio): 13/5
EXIF MeteringMode (Short): Pattern
EXIF SceneType (Undefined): Directly Photographed
EXIF UserComment (Undefined):
Image DateTime (ASCII): 2001:04:06 11:51:40
Image ExifOffset (Long): 284
Image ImageDescription (ASCII):
Image Make (ASCII): NIKON
Image Model (ASCII): E950
Image Orientation (Short): Horizontal (normal)
Image ResolutionUnit (Short): Pixels/Inch
Image Software (ASCII): v981-79
Image XResolution (Ratio): 300
Image YCbCrPositioning (Short): Co-sited
Image YResolution (Ratio): 300
Interoperability InteroperabilityIndex (ASCII): R98
Interoperability InteroperabilityVersion (Undefined): [48, 49, 48, 48]
MakerNote CCDSpeed (Short): ISO 80
MakerNote ColorMode (Short): Color
MakerNote ImageAdjustment (Short): Contrast+
MakerNote Quality (Short): 12
MakerNote Tag 0x0002 (ASCII): 08.00
MakerNote Tag 0x0008 (Ratio): 0/0
MakerNote Tag 0x0009 (ASCII):
MakerNote Tag 0x000A (Ratio): 0
MakerNote Tag 0x000B (Short): 0
MakerNote Tag 0x0F00 (Long): [0, 0, 16777216, 0, 2685774096, 0, 34833, 6931, 16178, 4372, 4372, 3322676767, 3373084416, 15112, 0, 0, 1151495, 252903424, 17, 0, 0, 844038208, 55184128, 218129428, 1476410198, 370540566, 4044363286, 16711749, 204629079, 1729]
MakerNote WhiteBalance (Short): Auto
Thumbnail Compression (Short): JPEG (old-style)
Thumbnail JPEGInterchangeFormat (Long): 2036
Thumbnail JPEGInterchangeFormatLength (Long): 4662
Thumbnail ResolutionUnit (Short): Pixels/Inch
Thumbnail XResolution (Ratio): 300
Thumbnail YResolution (Ratio): 300
Opening: exif-samples-master/jpg/exif-org/olympus-c960.jpg
File has JPEG thumbnail
EXIF ColorSpace (Short): sRGB
EXIF ComponentsConfiguration (Undefined): YCbCr
EXIF CompressedBitsPerPixel (Ratio): 1
EXIF DateTimeDigitized (ASCII): 2000:11:07 10:41:43
EXIF DateTimeOriginal (ASCII): 2000:11:07 10:41:43
EXIF ExifImageLength (Short): 960
EXIF ExifImageWidth (Short): 1280
EXIF ExifVersion (Undefined): 0210
EXIF ExposureBiasValue (Signed Ratio): 0
EXIF ExposureProgram (Short): Program Normal
EXIF ExposureTime (Ratio): 1/345
EXIF FNumber (Ratio): 8
EXIF FileSource (Undefined): Digital Camera
EXIF Flash (Short): Flash did not fire
EXIF FlashPixVersion (Undefined): 0100
EXIF FocalLength (Ratio): 28/5
EXIF ISOSpeedRatings (Short): 125
EXIF InteroperabilityOffset (Long): 958
EXIF LightSource (Short): Unknown
EXIF MakerNote (Undefined): [79, 76, 89, 77, 80, 0, 1, 0, 8, 0, 1, 2, 3, 0, 1, 0, 0, 0, 2, 0, ... ]
EXIF MaxApertureValue (Ratio): 3
EXIF MeteringMode (Short): Pattern
EXIF SceneType (Undefined): Directly Photographed
EXIF UserComment (Undefined):
Image DateTime (ASCII): 2000:11:08 20:14:38
Image ExifOffset (Long): 274
Image ImageDescription (ASCII): OLYMPUS DIGITAL CAMERA
Image Make (ASCII): OLYMPUS OPTICAL CO.,LTD
Image Model (ASCII): C960Z,D460Z
Image Orientation (Short): Horizontal (normal)
Image ResolutionUnit (Short): Pixels/Inch
Image Software (ASCII): OLYMPUS CAMEDIA Master
Image XResolution (Ratio): 72
Image YCbCrPositioning (Short): Co-sited
Image YResolution (Ratio): 72
Interoperability InteroperabilityIndex (ASCII): R98
Interoperability InteroperabilityVersion (Undefined): [48, 49, 48, 48]
MakerNote BWMode (Short): Off
MakerNote CameraID (Undefined): OLYMPUS DIGITAL CAMERA
MakerNote DigitalZoom (Ratio): 0
MakerNote FocalPlaneDiagonal (Ratio): 166/25
MakerNote JPEGQual (Short): HQ
MakerNote LensDistortionParams (Signed Short): [-283, -524, -571, -267, -485, -518]
MakerNote Macro (Short): Normal
MakerNote SoftwareRelease (ASCII): SR874
Thumbnail Compression (Short): JPEG (old-style)
Thumbnail JPEGInterchangeFormat (Long): 2012
Thumbnail JPEGInterchangeFormatLength (Long): 5145
Thumbnail ResolutionUnit (Short): Pixels/Inch
Thumbnail XResolution (Ratio): 72
Thumbnail YResolution (Ratio): 72
Opening: exif-samples-master/jpg/exif-org/olympus-d320l.jpg
No EXIF information found
Opening: exif-samples-master/jpg/exif-org/ricoh-rdc5300.jpg
File has JPEG thumbnail
EXIF ApertureValue (Ratio): 4
EXIF BrightnessValue (Signed Ratio): -2
EXIF ColorSpace (Short): sRGB
EXIF ComponentsConfiguration (Undefined): YCbCr
EXIF CompressedBitsPerPixel (Ratio): 3
EXIF DateTimeDigitized (ASCII): 2000:05:31 21:50:40
EXIF DateTimeOriginal (ASCII): 2000:05:31 21:50:40
EXIF ExifImageLength (Long): 1200
EXIF ExifImageWidth (Long): 1792
EXIF ExifVersion (Undefined): 0210
EXIF ExposureBiasValue (Signed Ratio): 0
EXIF Flash (Short): Flash fired
EXIF FlashPixVersion (Undefined): 0100
EXIF FocalLength (Ratio): 133/10
EXIF InteroperabilityOffset (Long): 936
EXIF LightSource (Short): Unknown
EXIF MakerNote (Undefined): [82, 118, 48, 50, 48, 55, 59, 83, 102, 54, 67, 56, 52, 59, 82, 103, 55, 54, 59, 66, ... ]
EXIF MaxApertureValue (Ratio): 39/10
EXIF RelatedSoundFile (ASCII):
EXIF ShutterSpeedValue (Signed Ratio): 13/2
EXIF UserComment (Undefined):
Image Copyright (ASCII): (C) by RDC-5300 User
Image ExifOffset (Long): 192
Image Make (ASCII): RICOH
Image Model (ASCII): RDC-5300
Image Orientation (Short): Horizontal (normal)
Image ResolutionUnit (Short): Pixels/Inch
Image XResolution (Ratio): 72
Image YCbCrPositioning (Short): Co-sited
Image YResolution (Ratio): 72
Interoperability InteroperabilityIndex (ASCII): R98
Interoperability InteroperabilityVersion (Undefined): [48, 49, 48, 48]
Thumbnail Compression (Short): JPEG (old-style)
Thumbnail JPEGInterchangeFormat (Long): 1061
Thumbnail JPEGInterchangeFormatLength (Long): 5046
Thumbnail ResolutionUnit (Short): Pixels/Inch
Thumbnail XResolution (Ratio): 72
Thumbnail YResolution (Ratio): 72
Opening: exif-samples-master/jpg/exif-org/sanyo-vpcg250.jpg
File has JPEG thumbnail
EXIF ColorSpace (Short): Uncalibrated
EXIF ComponentsConfiguration (Undefined): YCbCr
EXIF CompressedBitsPerPixel (Ratio): 17/10
EXIF DateTimeDigitized (ASCII): 1998:01:01 00:00:00
EXIF DateTimeOriginal (ASCII): 1998:01:01 00:00:00
EXIF ExifImageLength (Long): 480
EXIF ExifImageWidth (Long): 640
EXIF ExifVersion (Undefined): 0200
EXIF ExposureBiasValue (Signed Ratio): 0
EXIF ExposureTime (Ratio): 1/171
EXIF FNumber (Ratio): 8
EXIF FileSource (Undefined): Digital Camera
EXIF Flash (Short): Flash fired
EXIF FlashPixVersion (Undefined): 0100
EXIF FocalLength (Ratio): 6
EXIF LightSource (Short): Unknown
EXIF MakerNote (Undefined): [83, 65, 78, 89, 79, 0, 1, 0, 3, 0, 0, 2, 4, 0, 3, 0, 0, 0, 17, 3, ... ]
EXIF MaxApertureValue (Ratio): 3
EXIF MeteringMode (Short): CenterWeightedAverage
EXIF RelatedSoundFile (ASCII):
Image DateTime (ASCII): 1998:01:01 00:00:00
Image ExifOffset (Long): 294
Image ImageDescription (ASCII): SANYO DIGITAL CAMERA
Image Make (ASCII): SANYO Electric Co.,Ltd.
Image Model (ASCII): SR6
Image Orientation (Short): Horizontal (normal)
Image ResolutionUnit (Short): Pixels/Inch
Image Software (ASCII): V06P-74
Image XResolution (Ratio): 72
Image YCbCrPositioning (Short): Co-sited
Image YResolution (Ratio): 72
Thumbnail Compression (Short): JPEG (old-style)
Thumbnail JPEGInterchangeFormat (Long): 877
Thumbnail JPEGInterchangeFormatLength (Long): 3602
Thumbnail ResolutionUnit (Short): Pixels/Inch
Thumbnail XResolution (Ratio): 72
Thumbnail YResolution (Ratio): 72
Opening: exif-samples-master/jpg/exif-org/sanyo-vpcsx550.jpg
File has JPEG thumbnail
EXIF ColorSpace (Short): sRGB
EXIF ComponentsConfiguration (Undefined): YCbCr
EXIF CompressedBitsPerPixel (Ratio): 17/10
EXIF DateTimeDigitized (ASCII): 2000:11:18 21:14:19
EXIF DateTimeOriginal (ASCII): 2000:11:18 21:14:19
EXIF ExifImageLength (Long): 480
EXIF ExifImageWidth (Long): 640
EXIF ExifVersion (Undefined): 0210
EXIF ExposureBiasValue (Signed Ratio): 0
EXIF ExposureTime (Ratio): 10/483
EXIF FNumber (Ratio): 12/5
EXIF FileSource (Undefined): Digital Camera
EXIF Flash (Short): Flash did not fire
EXIF FlashPixVersion (Undefined): 0100
EXIF FocalLength (Ratio): 6
EXIF ISOSpeedRatings (Short): 400
EXIF InteroperabilityOffset (Long): 862
EXIF LightSource (Short): Unknown
EXIF MakerNote (Undefined): [83, 65, 78, 89, 79, 0, 1, 0, 6, 0, 0, 2, 4, 0, 3, 0, 0, 0, 210, 3, ... ]
EXIF MaxApertureValue (Ratio): 3
EXIF MeteringMode (Short): CenterWeightedAverage
EXIF UserComment (Undefined):
Image DateTime (ASCII): 2000:11:18 21:14:19
Image ExifOffset (Long): 284
Image ImageDescription (ASCII): SANYO DIGITAL CAMERA
Image Make (ASCII): SANYO Electric Co.,Ltd.
Image Model (ASCII): SX113
Image Orientation (Short): Horizontal (normal)
Image ResolutionUnit (Short): Pixels/Inch
Image Software (ASCII): V113p-73
Image XResolution (Ratio): 72
Image YCbCrPositioning (Short): Co-sited
Image YResolution (Ratio): 72
Interoperability InteroperabilityIndex (ASCII): R98
Interoperability InteroperabilityVersion (Undefined): [48, 49, 48, 48]
Thumbnail Compression (Short): JPEG (old-style)
Thumbnail JPEGInterchangeFormat (Long): 1070
Thumbnail JPEGInterchangeFormatLength (Long): 13234
Thumbnail ResolutionUnit (Short): Pixels/Inch
Thumbnail XResolution (Ratio): 72
Thumbnail YResolution (Ratio): 72
Opening: exif-samples-master/jpg/exif-org/sony-cybershot.jpg
File has JPEG thumbnail
EXIF ColorSpace (Short): sRGB
EXIF ComponentsConfiguration (Undefined): YCbCr
EXIF CompressedBitsPerPixel (Ratio): 2
EXIF DateTimeDigitized (ASCII): 2000:09:30 10:59:45
EXIF DateTimeOriginal (ASCII): 2000:09:30 10:59:45
EXIF ExifImageLength (Long): 480
EXIF ExifImageWidth (Long): 640
EXIF ExifVersion (Undefined): 0210
EXIF ExposureBiasValue (Signed Ratio): 0
EXIF ExposureProgram (Short): Program Normal
EXIF ExposureTime (Ratio): 1/197
EXIF FNumber (Ratio): 4
EXIF FileSource (Undefined): Digital Camera
EXIF Flash (Short): Flash did not fire
EXIF FlashPixVersion (Undefined): 0100
EXIF FocalLength (Ratio): 108/5
EXIF ISOSpeedRatings (Short): 100
EXIF InteroperabilityOffset (Long): 582
EXIF LightSource (Short): Unknown
EXIF MaxApertureValue (Ratio): 3
EXIF MeteringMode (Short): CenterWeightedAverage
EXIF SceneType (Undefined): Directly Photographed
Image DateTime (ASCII): 2000:09:30 10:59:45
Image ExifOffset (Long): 224
Image ImageDescription (ASCII):
Image Make (ASCII): SONY
Image Model (ASCII): CYBERSHOT
Image Orientation (Short): Horizontal (normal)
Image ResolutionUnit (Short): Pixels/Inch
Image XResolution (Ratio): 72
Image YCbCrPositioning (Short): Co-sited
Image YResolution (Ratio): 72
Interoperability InteroperabilityIndex (ASCII): R98
Interoperability InteroperabilityVersion (Undefined): [48, 49, 48, 48]
Thumbnail Compression (Short): JPEG (old-style)
Thumbnail DateTime (ASCII): 2000:09:30 10:59:45
Thumbnail JPEGInterchangeFormat (Long): 797
Thumbnail JPEGInterchangeFormatLength (Long): 2959
Thumbnail Make (ASCII): SONY
Thumbnail Model (ASCII): CYBERSHOT
Thumbnail Orientation (Short): Horizontal (normal)
Thumbnail ResolutionUnit (Short): Pixels/Inch
Thumbnail XResolution (Ratio): 72
Thumbnail YResolution (Ratio): 72
Opening: exif-samples-master/jpg/exif-org/sony-d700.jpg
EXIF ApertureValue (Ratio): 5/2
EXIF ColorSpace (Short): sRGB
EXIF ComponentsConfiguration (Undefined): YCbCr
EXIF CompressedBitsPerPixel (Ratio): 6
EXIF DateTimeDigitized (ASCII): 1998:12:01 14:22:36
EXIF DateTimeOriginal (ASCII): 1998:12:01 14:22:36
EXIF ExifImageLength (Long): 1024
EXIF ExifImageWidth (Long): 1344
EXIF ExifVersion (Undefined): 0200
EXIF ExposureBiasValue (Signed Ratio): 0
EXIF ExposureProgram (Short): Aperture Priority
EXIF Flash (Short): Flash did not fire
EXIF FlashPixVersion (Undefined): 0100
EXIF ISOSpeedRatings (Short): 200
EXIF MeteringMode (Short): CenterWeightedAverage
EXIF ShutterSpeedValue (Signed Ratio): 5
Image DateTime (ASCII): 1998:12:01 14:22:36
Image ExifOffset (Long): 206
Image ImageDescription (ASCII):
Image Make (ASCII): SONY
Image Model (ASCII): DSC-D700
Image Orientation (Short): Horizontal (normal)
Image ResolutionUnit (Short): Pixels/Inch
Image XResolution (Ratio): 72
Image YCbCrPositioning (Short): Centered
Image YResolution (Ratio): 72
Thumbnail BitsPerSample (Short): [8, 8, 8]
Thumbnail Compression (Short): Uncompressed
Thumbnail ImageLength (Long): 60
Thumbnail ImageWidth (Long): 80
Thumbnail PhotometricInterpretation (Short): 2
Thumbnail ResolutionUnit (Short): Pixels/Inch
Thumbnail RowsPerStrip (Long): 60
Thumbnail SamplesPerPixel (Short): 3
Thumbnail StripByteCounts (Long): 14400