about summary refs log tree commit diff
path: root/converter/other/exif.c
blob: 1bfe4b2b980c0066a0a974b35e7a9e954aa35224 (plain) (blame)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
/*--------------------------------------------------------------------------
  This file contains subroutines for use by Jpegtopnm to handle the
  EXIF header.

  The code is adapted from the program Jhead by Matthaias Wandel
  December 1999 - August 2000, and contributed to the public domain.
  Bryan Henderson adapted it to Netpbm in September 2001.  Bryan
  added more of Wandel's code, from Jhead 1.9 dated December 2002 in
  January 2003.

  An EXIF header is a JFIF APP1 marker.  It is generated by some
  digital cameras and contains information about the circumstances of
  the creation of the image (camera settings, etc.).

  The EXIF header uses the TIFF format, only it contains only tag
  values and no actual image.

  Note that the image format called EXIF is simply JFIF with an EXIF
  header, i.e. a subformat of JFIF.

  See the EXIF specs at http://exif.org (2001.09.01).

--------------------------------------------------------------------------*/
#include "pm_config.h"
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <string.h>
#include <time.h>
#include <errno.h>
#include <limits.h>
#include <ctype.h>

#if MSVCRT
    #include <sys/utime.h>
#else
    #include <utime.h>
    #include <sys/types.h>
    #include <unistd.h>
    #include <errno.h>
#endif

#include "pm_c_util.h"
#include "pm.h"
#include "nstring.h"

#include "exif.h"

static const unsigned char * DirWithThumbnailPtrs;
static double FocalplaneXRes;
bool HaveXRes;
static double FocalplaneUnits;
static int ExifImageWidth;

typedef struct {
    unsigned short Tag;
    const char * Desc;
} TagTable;



/* Describes format descriptor */
static int const bytesPerFormat[] = {0,1,1,2,4,8,1,1,2,4,8,4,8};
#define NUM_FORMATS 12

#define FMT_BYTE       1 
#define FMT_STRING     2
#define FMT_USHORT     3
#define FMT_ULONG      4
#define FMT_URATIONAL  5
#define FMT_SBYTE      6
#define FMT_UNDEFINED  7
#define FMT_SSHORT     8
#define FMT_SLONG      9
#define FMT_SRATIONAL 10
#define FMT_SINGLE    11
#define FMT_DOUBLE    12

/* Describes tag values */

#define TAG_EXIF_OFFSET       0x8769
#define TAG_INTEROP_OFFSET    0xa005

#define TAG_MAKE              0x010F
#define TAG_MODEL             0x0110

#define TAG_ORIENTATION       0x0112

#define TAG_XRESOLUTION       0x011A
#define TAG_YRESOLUTION       0x011B

#define TAG_EXPOSURETIME      0x829A
#define TAG_FNUMBER           0x829D

#define TAG_SHUTTERSPEED      0x9201
#define TAG_APERTURE          0x9202
#define TAG_MAXAPERTURE       0x9205
#define TAG_FOCALLENGTH       0x920A

#define TAG_DATETIME_ORIGINAL 0x9003
#define TAG_USERCOMMENT       0x9286

#define TAG_SUBJECT_DISTANCE  0x9206
#define TAG_FLASH             0x9209

#define TAG_FOCALPLANEXRES    0xa20E
#define TAG_FOCALPLANEUNITS   0xa210
#define TAG_EXIF_IMAGEWIDTH   0xA002
#define TAG_EXIF_IMAGELENGTH  0xA003

/* the following is added 05-jan-2001 vcs */
#define TAG_EXPOSURE_BIAS     0x9204
#define TAG_WHITEBALANCE      0x9208
#define TAG_METERING_MODE     0x9207
#define TAG_EXPOSURE_PROGRAM  0x8822
#define TAG_ISO_EQUIVALENT    0x8827
#define TAG_COMPRESSION_LEVEL 0x9102

#define TAG_THUMBNAIL_OFFSET  0x0201
#define TAG_THUMBNAIL_LENGTH  0x0202

static TagTable const tagTable[] = {
  {   0x100,   "ImageWidth"},
  {   0x101,   "ImageLength"},
  {   0x102,   "BitsPerSample"},
  {   0x103,   "Compression"},
  {   0x106,   "PhotometricInterpretation"},
  {   0x10A,   "FillOrder"},
  {   0x10D,   "DocumentName"},
  {   0x10E,   "ImageDescription"},
  {   0x10F,   "Make"},
  {   0x110,   "Model"},
  {   0x111,   "StripOffsets"},
  {   0x112,   "Orientation"},
  {   0x115,   "SamplesPerPixel"},
  {   0x116,   "RowsPerStrip"},
  {   0x117,   "StripByteCounts"},
  {   0x11A,   "XResolution"},
  {   0x11B,   "YResolution"},
  {   0x11C,   "PlanarConfiguration"},
  {   0x128,   "ResolutionUnit"},
  {   0x12D,   "TransferFunction"},
  {   0x131,   "Software"},
  {   0x132,   "DateTime"},
  {   0x13B,   "Artist"},
  {   0x13E,   "WhitePoint"},
  {   0x13F,   "PrimaryChromaticities"},
  {   0x156,   "TransferRange"},
  {   0x200,   "JPEGProc"},
  {   0x201,   "ThumbnailOffset"},
  {   0x202,   "ThumbnailLength"},
  {   0x211,   "YCbCrCoefficients"},
  {   0x212,   "YCbCrSubSampling"},
  {   0x213,   "YCbCrPositioning"},
  {   0x214,   "ReferenceBlackWhite"},
  {   0x828D,  "CFARepeatPatternDim"},
  {   0x828E,  "CFAPattern"},
  {   0x828F,  "BatteryLevel"},
  {   0x8298,  "Copyright"},
  {   0x829A,  "ExposureTime"},
  {   0x829D,  "FNumber"},
  {   0x83BB,  "IPTC/NAA"},
  {   0x8769,  "ExifOffset"},
  {   0x8773,  "InterColorProfile"},
  {   0x8822,  "ExposureProgram"},
  {   0x8824,  "SpectralSensitivity"},
  {   0x8825,  "GPSInfo"},
  {   0x8827,  "ISOSpeedRatings"},
  {   0x8828,  "OECF"},
  {   0x9000,  "ExifVersion"},
  {   0x9003,  "DateTimeOriginal"},
  {   0x9004,  "DateTimeDigitized"},
  {   0x9101,  "ComponentsConfiguration"},
  {   0x9102,  "CompressedBitsPerPixel"},
  {   0x9201,  "ShutterSpeedValue"},
  {   0x9202,  "ApertureValue"},
  {   0x9203,  "BrightnessValue"},
  {   0x9204,  "ExposureBiasValue"},
  {   0x9205,  "MaxApertureValue"},
  {   0x9206,  "SubjectDistance"},
  {   0x9207,  "MeteringMode"},
  {   0x9208,  "LightSource"},
  {   0x9209,  "Flash"},
  {   0x920A,  "FocalLength"},
  {   0x927C,  "MakerNote"},
  {   0x9286,  "UserComment"},
  {   0x9290,  "SubSecTime"},
  {   0x9291,  "SubSecTimeOriginal"},
  {   0x9292,  "SubSecTimeDigitized"},
  {   0xA000,  "FlashPixVersion"},
  {   0xA001,  "ColorSpace"},
  {   0xA002,  "ExifImageWidth"},
  {   0xA003,  "ExifImageLength"},
  {   0xA005,  "InteroperabilityOffset"},
  {   0xA20B,  "FlashEnergy"},                 /* 0x920B in TIFF/EP */
  {   0xA20C,  "SpatialFrequencyResponse"},  /* 0x920C    -  - */
  {   0xA20E,  "FocalPlaneXResolution"},     /* 0x920E    -  - */
  {   0xA20F,  "FocalPlaneYResolution"},      /* 0x920F    -  - */
  {   0xA210,  "FocalPlaneResolutionUnit"},  /* 0x9210    -  - */
  {   0xA214,  "SubjectLocation"},             /* 0x9214    -  - */
  {   0xA215,  "ExposureIndex"},            /* 0x9215    -  - */
  {   0xA217,  "SensingMethod"},            /* 0x9217    -  - */
  {   0xA300,  "FileSource"},
  {   0xA301,  "SceneType"},
  {      0, NULL}
} ;



typedef enum { NORMAL, MOTOROLA } ByteOrder;



static uint16_t
get16u(const void * const data,
       ByteOrder    const byteOrder) {
/*--------------------------------------------------------------------------
   Convert a 16 bit unsigned value from file's native byte order
--------------------------------------------------------------------------*/
    if (byteOrder == MOTOROLA){
        return (((const unsigned char *)data)[0] << 8) | 
            ((const unsigned char *)data)[1];
    }else{
        return (((const unsigned char *)data)[1] << 8) | 
            ((const unsigned char *)data)[0];
    }
}



static int32_t
get32s(const void * const data,
       ByteOrder    const byteOrder) {
/*--------------------------------------------------------------------------
   Convert a 32 bit signed value from file's native byte order
--------------------------------------------------------------------------*/
    if (byteOrder == MOTOROLA){
        return  
            (((const char *)data)[0] << 24) |
            (((const unsigned char *)data)[1] << 16) |
            (((const unsigned char *)data)[2] << 8 ) | 
            (((const unsigned char *)data)[3] << 0 );
    } else {
        return  
            (((const char *)data)[3] << 24) |
            (((const unsigned char *)data)[2] << 16) |
            (((const unsigned char *)data)[1] << 8 ) | 
            (((const unsigned char *)data)[0] << 0 );
    }
}



static uint32_t
get32u(const void * const data,
       ByteOrder    const byteOrder) {
/*--------------------------------------------------------------------------
   Convert a 32 bit unsigned value from file's native byte order
--------------------------------------------------------------------------*/
    return (uint32_t)get32s(data, byteOrder) & 0xffffffff;
}



static void
printFormatNumber(FILE *       const fileP, 
                  const void * const ValuePtr, 
                  int          const Format,
                  int          const ByteCount,
                  ByteOrder    const byteOrder) {
/*--------------------------------------------------------------------------
   Display a number as one of its many formats
--------------------------------------------------------------------------*/
    switch(Format){
    case FMT_SBYTE:
    case FMT_BYTE:
        fprintf(fileP, "%02x\n", *(unsigned char *)ValuePtr);
        break;
    case FMT_USHORT:
        fprintf(fileP, "%d\n",get16u(ValuePtr, byteOrder));
        break;
    case FMT_ULONG:     
    case FMT_SLONG:
        fprintf(fileP, "%d\n",get32s(ValuePtr, byteOrder));
        break;
    case FMT_SSHORT:    
        fprintf(fileP, "%hd\n",(signed short)get16u(ValuePtr, byteOrder));
        break;
    case FMT_URATIONAL:
    case FMT_SRATIONAL: 
        fprintf(fileP, "%d/%d\n",get32s(ValuePtr, byteOrder),
                get32s(4+(char *)ValuePtr, byteOrder));
        break;
    case FMT_SINGLE:    
        fprintf(fileP, "%f\n",(double)*(float *)ValuePtr);
        break;
    case FMT_DOUBLE:
        fprintf(fileP, "%f\n",*(double *)ValuePtr);
        break;
    default: 
        fprintf(fileP, "Unknown format %d:", Format);
        {
            unsigned int a;
            for (a = 0; a < ByteCount && a < 16; ++a)
                printf("%02x", ((unsigned char *)ValuePtr)[a]);
        }
        fprintf(fileP, "\n");
    }
}



static double
convertAnyFormat(const void * const ValuePtr,
                 int          const Format,
                 ByteOrder    const byteOrder) {
/*--------------------------------------------------------------------------
   Evaluate number, be it int, rational, or float from directory.
--------------------------------------------------------------------------*/
    double Value;
    Value = 0;

    switch(Format){
    case FMT_SBYTE:
        Value = *(signed char *)ValuePtr;
        break;
    case FMT_BYTE:
        Value = *(unsigned char *)ValuePtr;
        break;
    case FMT_USHORT:
        Value = get16u(ValuePtr, byteOrder);
        break;
    case FMT_ULONG:
        Value = get32u(ValuePtr, byteOrder);
        break;
    case FMT_URATIONAL:
    case FMT_SRATIONAL: {
        int num, den;
        num = get32s(ValuePtr, byteOrder);
        den = get32s(4+(char *)ValuePtr, byteOrder);
        Value = den == 0 ? 0 : (double)(num/den);
    } break;
    case FMT_SSHORT:
        Value = (signed short)get16u(ValuePtr, byteOrder);
        break;
    case FMT_SLONG:
        Value = get32s(ValuePtr, byteOrder);
        break;

    /* Not sure if this is correct (never seen float used in Exif format) */
    case FMT_SINGLE:
        Value = (double)*(float *)ValuePtr;
        break;
    case FMT_DOUBLE:
        Value = *(double *)ValuePtr;
        break;
    }
    return Value;
}



static void
traceTag(int                   const tag,
         int                   const format,
         const unsigned char * const valuePtr,
         unsigned int          const byteCount,
         ByteOrder             const byteOrder) {
             
    /* Show tag name */
    unsigned int a;
    bool found;
    for (a = 0, found = false; !found; ++a){
        if (tagTable[a].Tag == 0){
            fprintf(stderr, "  Unknown Tag %04x Value = ", tag);
            found = true;
        }
        if (tagTable[a].Tag == tag){
            fprintf(stderr, "    %s = ",tagTable[a].Desc);
            found = true;
        }
    }

    /* Show tag value. */
    switch(format){

    case FMT_UNDEFINED:
        /* Undefined is typically an ascii string. */

    case FMT_STRING: {
        /* String arrays printed without function call
           (different from int arrays)
        */
        bool noPrint;
        printf("\"");
        for (a = 0, noPrint = false; a < byteCount; ++a){
            if (ISPRINT((valuePtr)[a])){
                fprintf(stderr, "%c", valuePtr[a]);
                noPrint = false;
            } else {
                /* Avoiding indicating too many unprintable characters of
                   proprietary bits of binary information this program may not
                   know how to parse.
                */
                if (!noPrint){
                    fprintf(stderr, "?");
                    noPrint = true;
                }
            }
        }
        fprintf(stderr, "\"\n");
    } break;

    default:
        /* Handle arrays of numbers later (will there ever be?)*/
        printFormatNumber(stderr, valuePtr, format, byteCount, byteOrder);
    }
}



/* Forward declaration for recursion */

static void 
processExifDir(const unsigned char *  const ExifData, 
               unsigned int           const ExifLength,
               unsigned int           const DirOffset,
               exif_ImageInfo *       const imageInfoP, 
               ByteOrder              const byteOrder,
               bool                   const wantTagTrace,
               const unsigned char ** const LastExifRefdP);


static void
processDirEntry(const unsigned char *  const dirEntry,
                const unsigned char *  const exifData,
                unsigned int           const exifLength,
                ByteOrder              const byteOrder,
                bool                   const wantTagTrace,
                exif_ImageInfo *       const imageInfoP, 
                unsigned int *         const thumbnailOffsetP,
                unsigned int *         const thumbnailSizeP,
                bool *                 const haveThumbnailP,
                const unsigned char ** const lastExifRefdP) {

    int const tag        = get16u(&dirEntry[0], byteOrder);
    int const format     = get16u(&dirEntry[2], byteOrder);
    int const components = get32u(&dirEntry[4], byteOrder);

    const unsigned char * valuePtr;
        /* This actually can point to a variety of things; it must be cast to
           other types when used.  But we use it as a byte-by-byte cursor, so
           we declare it as a pointer to a generic byte here.
        */
    unsigned int byteCount;

    if ((format-1) >= NUM_FORMATS) {
        /* (-1) catches illegal zero case as unsigned underflows
           to positive large.  
        */
        pm_message("Illegal number format %d for tag %04x", format, tag);
        return;
    }
        
    byteCount = components * bytesPerFormat[format];

    if (byteCount > 4){
        unsigned const offsetVal = get32u(&dirEntry[8], byteOrder);
        /* If its bigger than 4 bytes, the dir entry contains an offset.*/
        if (offsetVal + byteCount > exifLength){
            /* Bogus pointer offset and / or bytecount value */
            pm_message("Illegal pointer offset value in EXIF "
                       "for tag %04x.  "
                       "Offset %d bytes %d ExifLen %d\n",
                       tag, offsetVal, byteCount, exifLength);
            return;
        }
        valuePtr = &exifData[offsetVal];
    } else {
        /* 4 bytes or less and value is in the dir entry itself */
        valuePtr = &dirEntry[8];
    }

    if (*lastExifRefdP < valuePtr + byteCount){
        /* Keep track of last byte in the exif header that was actually
           referenced.  That way, we know where the discardable thumbnail data
           begins.
        */
        *lastExifRefdP = valuePtr + byteCount;
    }

    if (wantTagTrace)
        traceTag(tag, format, valuePtr, byteCount, byteOrder);

    *haveThumbnailP = (tag == TAG_THUMBNAIL_OFFSET);

    /* Extract useful components of tag */
    switch (tag){

    case TAG_MAKE:
        STRSCPY(imageInfoP->CameraMake, (const char*)valuePtr);
        break;

    case TAG_MODEL:
        STRSCPY(imageInfoP->CameraModel, (const char*)valuePtr);
        break;

    case TAG_XRESOLUTION:
        imageInfoP->XResolution = 
            convertAnyFormat(valuePtr, format, byteOrder);
        break;

    case TAG_YRESOLUTION:
        imageInfoP->YResolution = 
            convertAnyFormat(valuePtr, format, byteOrder);
        break;

    case TAG_DATETIME_ORIGINAL:
        STRSCPY(imageInfoP->DateTime, (const char*)valuePtr);
        imageInfoP->DatePointer = (const char*)valuePtr;
        break;

    case TAG_USERCOMMENT: {
        /* Olympus has this padded with trailing spaces.  We stop the copy
           where those start.
        */
        const char * const value = (const char *)valuePtr;

        unsigned int cursor;
        unsigned int outCursor;
        unsigned int end;

        for (end = byteCount; end > 0 && value[end] == ' '; --end);

        /* Skip "ASCII" if it is there */
        if (end >= 5 && MEMEQ(value, "ASCII", 5))
            cursor = 5;
        else
            cursor = 0;

        /* Skip consecutive blanks and NULs */

        for (;
             cursor < byteCount && 
                 (value[cursor] == '\0' || value[cursor] == ' ');
             ++cursor);

        /* Copy the rest as the comment */

        for (outCursor = 0;
             cursor < end && outCursor < MAX_COMMENT-1;
             ++cursor)
            imageInfoP->Comments[outCursor++] = value[cursor];

        imageInfoP->Comments[outCursor++] = '\0';
    } break;

    case TAG_FNUMBER:
        /* Simplest way of expressing aperture, so I trust it the most.
           (overwrite previously computd value if there is one)
        */
        imageInfoP->ApertureFNumber = 
            (float)convertAnyFormat(valuePtr, format, byteOrder);
        break;

    case TAG_APERTURE:
    case TAG_MAXAPERTURE:
        /* More relevant info always comes earlier, so only use this field if
           we don't have appropriate aperture information yet.
        */
        if (imageInfoP->ApertureFNumber == 0){
            imageInfoP->ApertureFNumber = (float)
                exp(convertAnyFormat(valuePtr, format, byteOrder)
                    * log(2) * 0.5);
        }
        break;

    case TAG_FOCALLENGTH:
        /* Nice digital cameras actually save the focal length
           as a function of how farthey are zoomed in. 
        */

        imageInfoP->FocalLength = 
            (float)convertAnyFormat(valuePtr, format, byteOrder);
        break;

    case TAG_SUBJECT_DISTANCE:
        /* Inidcates the distacne the autofocus camera is focused to.
           Tends to be less accurate as distance increases.
        */
        imageInfoP->Distance = 
            (float)convertAnyFormat(valuePtr, format, byteOrder);
        break;

    case TAG_EXPOSURETIME:
        /* Simplest way of expressing exposure time, so I
           trust it most.  (overwrite previously computd value
           if there is one) 
        */
        imageInfoP->ExposureTime = 
            (float)convertAnyFormat(valuePtr, format, byteOrder);
        break;

    case TAG_SHUTTERSPEED:
        /* More complicated way of expressing exposure time,
           so only use this value if we don't already have it
           from somewhere else.  
        */
        if (imageInfoP->ExposureTime == 0){
            imageInfoP->ExposureTime = (float)
                (1/exp(convertAnyFormat(valuePtr, format, byteOrder)
                       * log(2)));
        }
        break;

    case TAG_FLASH:
        if ((int)convertAnyFormat(valuePtr, format, byteOrder) & 0x7){
            imageInfoP->FlashUsed = TRUE;
        }else{
            imageInfoP->FlashUsed = FALSE;
        }
        break;

    case TAG_ORIENTATION:
        imageInfoP->Orientation = 
            (int)convertAnyFormat(valuePtr, format, byteOrder);
        if (imageInfoP->Orientation < 1 || 
            imageInfoP->Orientation > 8){
            pm_message("Undefined rotation value %d",
                       imageInfoP->Orientation);
            imageInfoP->Orientation = 0;
        }
        break;

    case TAG_EXIF_IMAGELENGTH:
    case TAG_EXIF_IMAGEWIDTH:
        /* Use largest of height and width to deal with images
           that have been rotated to portrait format.  
        */
        ExifImageWidth =
            MIN(ExifImageWidth,
                (int)convertAnyFormat(valuePtr, format, byteOrder));
        break;

    case TAG_FOCALPLANEXRES:
        HaveXRes = TRUE;
        FocalplaneXRes = convertAnyFormat(valuePtr, format, byteOrder);
        break;

    case TAG_FOCALPLANEUNITS:
        switch((int)convertAnyFormat(valuePtr, format, byteOrder)){
        case 1: FocalplaneUnits = 25.4; break; /* 1 inch */
        case 2: 
            /* According to the information I was using, 2
               means meters.  But looking at the Cannon
               powershot's files, inches is the only
               sensible value.  
            */
            FocalplaneUnits = 25.4;
            break;

        case 3: FocalplaneUnits = 10;   break;  /* 1 centimeter*/
        case 4: FocalplaneUnits = 1;    break;  /* 1 millimeter*/
        case 5: FocalplaneUnits = .001; break;  /* 1 micrometer*/
        }
        break;

        /* Remaining cases contributed by: Volker C. Schoech
           (schoech@gmx.de)
        */

    case TAG_EXPOSURE_BIAS:
        imageInfoP->ExposureBias = 
            (float) convertAnyFormat(valuePtr, format, byteOrder);
        break;

    case TAG_WHITEBALANCE:
        imageInfoP->Whitebalance = 
            (int)convertAnyFormat(valuePtr, format, byteOrder);
        break;

    case TAG_METERING_MODE:
        imageInfoP->MeteringMode = 
            (int)convertAnyFormat(valuePtr, format, byteOrder);
        break;

    case TAG_EXPOSURE_PROGRAM:
        imageInfoP->ExposureProgram = 
            (int)convertAnyFormat(valuePtr, format, byteOrder);
        break;

    case TAG_ISO_EQUIVALENT:
        imageInfoP->ISOequivalent = 
            (int)convertAnyFormat(valuePtr, format, byteOrder);
        if ( imageInfoP->ISOequivalent < 50 ) 
            imageInfoP->ISOequivalent *= 200;
        break;

    case TAG_COMPRESSION_LEVEL:
        imageInfoP->CompressionLevel = 
            (int)convertAnyFormat(valuePtr, format, byteOrder);
        break;

    case TAG_THUMBNAIL_OFFSET:
        *thumbnailOffsetP = (unsigned int)
            convertAnyFormat(valuePtr, format, byteOrder);
        break;

    case TAG_THUMBNAIL_LENGTH:
        *thumbnailSizeP = (unsigned int)
            convertAnyFormat(valuePtr, format, byteOrder);
        break;

    case TAG_EXIF_OFFSET:
    case TAG_INTEROP_OFFSET: {
        unsigned int const subdirOffset = get32u(valuePtr, byteOrder);
        if (subdirOffset >= exifLength)
            pm_message("Illegal exif or interop offset "
                       "directory link.  Offset is %u, "
                       "but Exif data is only %u bytes.",
                       subdirOffset, exifLength);
        else
            processExifDir(exifData, exifLength, subdirOffset, 
                           imageInfoP, byteOrder, wantTagTrace,
                           lastExifRefdP);
    } break;
    }
}



static void 
processExifDir(const unsigned char *  const exifData, 
               unsigned int           const exifLength,
               unsigned int           const dirOffset,
               exif_ImageInfo *       const imageInfoP, 
               ByteOrder              const byteOrder,
               bool                   const wantTagTrace,
               const unsigned char ** const lastExifRefdP) {
/*--------------------------------------------------------------------------
   Process one of the nested EXIF directories.
--------------------------------------------------------------------------*/
    const unsigned char * const dirStart = exifData + dirOffset;
    unsigned int const numDirEntries = get16u(&dirStart[0], byteOrder);
    unsigned int de;
    bool haveThumbnail;
    unsigned int thumbnailOffset;
    unsigned int thumbnailSize;

    #define DIR_ENTRY_ADDR(Start, Entry) (Start+2+12*(Entry))

    {
        const unsigned char * const dirEnd =
            DIR_ENTRY_ADDR(dirStart, numDirEntries);
        if (dirEnd + 4 > (exifData + exifLength)){
            if (dirEnd + 2 == exifData + exifLength || 
                dirEnd == exifData + exifLength){
                /* Version 1.3 of jhead would truncate a bit too much.
                   This also caught later on as well.
                */
            }else{
                /* Note: Files that had thumbnails trimmed with jhead
                   1.3 or earlier might trigger this.
                */
                pm_message("Illegal directory entry size");
                return;
            }
        }
        *lastExifRefdP = MAX(*lastExifRefdP, dirEnd);
    }

    if (wantTagTrace)
        pm_message("Directory with %d entries", numDirEntries);

    haveThumbnail   = false;  /* initial value */
    thumbnailOffset = 0;      /* initial value */
    thumbnailSize   = 0;      /* initial value */

    for (de = 0; de < numDirEntries; ++de)
        processDirEntry(DIR_ENTRY_ADDR(dirStart, de), exifData, exifLength,
                        byteOrder, wantTagTrace, imageInfoP,
                        &thumbnailOffset, &thumbnailSize, &haveThumbnail,
                        lastExifRefdP);

    if (haveThumbnail)
        DirWithThumbnailPtrs = dirStart;

    {
        /* In addition to linking to subdirectories via exif tags,
           there's also a potential link to another directory at the end
           of each directory.  This has got to be the result of a
           committee!  
        */
        if (DIR_ENTRY_ADDR(dirStart, numDirEntries) + 4 <= 
            exifData + exifLength){
            unsigned int const subdirOffset =
                get32u(dirStart + 2 + 12*numDirEntries, byteOrder);
            if (subdirOffset){
                const unsigned char * const subdirStart =
                    exifData + subdirOffset;
                if (subdirStart > exifData + exifLength){
                    if (subdirStart < exifData + exifLength + 20){
                        /* Jhead 1.3 or earlier would crop the whole directory!
                           As Jhead produces this form of format incorrectness,
                           I'll just let it pass silently.
                        */
                        if (wantTagTrace) 
                            printf("Thumbnail removed with "
                                   "Jhead 1.3 or earlier\n");
                    }else{
                        pm_message("Illegal subdirectory link");
                    }
                }else{
                    if (subdirOffset <= exifLength)
                        processExifDir(exifData, exifLength, subdirOffset,
                                       imageInfoP, byteOrder, wantTagTrace,
                                       lastExifRefdP);
                }
            }
        }else{
            /* The exif header ends before the last next directory pointer. */
        }
    }

    if (thumbnailSize && thumbnailOffset){
        if (thumbnailSize + thumbnailOffset <= exifLength){
            /* The thumbnail pointer appears to be valid.  Store it. */
            imageInfoP->ThumbnailPointer = exifData + thumbnailOffset;
            imageInfoP->ThumbnailSize = thumbnailSize;

            if (wantTagTrace){
                fprintf(stderr, "Thumbnail size: %u bytes\n", thumbnailSize);
            }
        }
    }
}



void 
exif_parse(const unsigned char * const exifData,
           unsigned int          const length,
           exif_ImageInfo *      const imageInfoP, 
           bool                  const wantTagTrace,
           const char **         const errorP) {
/*--------------------------------------------------------------------------
  Interpret an EXIF APP1 marker

  'exifData' is the actual Exif data; it does not include the
  "Exif" identifier and length field that often prefix Exif data.

  'length' is the length of the Exif section.
--------------------------------------------------------------------------*/
    ByteOrder byteOrder;
    int FirstOffset;
    const unsigned char * lastExifRefd;

    *errorP = NULL;  /* initial assumption */

    if (wantTagTrace)
        fprintf(stderr, "Exif header %d bytes long\n",length);

    if (MEMEQ(exifData + 0, "II" , 2)) {
        if (wantTagTrace) 
            fprintf(stderr, "Exif header in Intel order\n");
        byteOrder = NORMAL;
    } else {
        if (MEMEQ(exifData + 0, "MM", 2)) {
            if (wantTagTrace) 
                fprintf(stderr, "Exif header in Motorola order\n");
            byteOrder = MOTOROLA;
        } else {
            pm_asprintf(errorP, "Invalid alignment marker in Exif "
                        "data.  First two bytes are '%c%c' (0x%02x%02x) "
                        "instead of 'II' or 'MM'.", 
                        exifData[0], exifData[1], exifData[0], exifData[1]);
        }
    }
    if (!*errorP) {
        unsigned short const start = get16u(exifData + 2, byteOrder);
        /* Check the next value for correctness. */
        if (start != 0x002a){
            pm_asprintf(errorP, "Invalid Exif header start.  "
                        "two bytes after the alignment marker "
                        "should be 0x002a, but is 0x%04x",
                        start);
        }
    }
    if (!*errorP) {
        FirstOffset = get32u(exifData + 4, byteOrder);
        if (FirstOffset < 8 || FirstOffset > 16){
            /* I used to ensure this was set to 8 (website I used
               indicated its 8) but PENTAX Optio 230 has it set
               differently, and uses it as offset. (Sept 11 2002)
                */
            pm_message("Suspicious offset of first IFD value in Exif header");
        }
        
        imageInfoP->Comments[0] = '\0';  /* Initial value - null string */
        
        HaveXRes = FALSE;  /* Initial assumption */
        FocalplaneUnits = 0;
        ExifImageWidth = 0;
        
        lastExifRefd = exifData;
        DirWithThumbnailPtrs = NULL;
        
        processExifDir(exifData, length, FirstOffset, 
                       imageInfoP, byteOrder, wantTagTrace, &lastExifRefd);
        
        /* Compute the CCD width, in millimeters. */
        if (HaveXRes){
            imageInfoP->HaveCCDWidth = 1;
            imageInfoP->CCDWidth = 
                    (float)(ExifImageWidth * FocalplaneUnits / FocalplaneXRes);
        } else
            imageInfoP->HaveCCDWidth = 0;
            
        if (wantTagTrace){
            fprintf(stderr, 
                    "Non-settings part of Exif header: %lu bytes\n",
                    (unsigned long)(exifData + length - lastExifRefd));
        }
    }
}



void 
exif_showImageInfo(const exif_ImageInfo * const imageInfoP,
                   FILE *                 const fileP) {
/*--------------------------------------------------------------------------
   Show the collected image info, displaying camera F-stop and shutter
   speed in a consistent and legible fashion.
--------------------------------------------------------------------------*/
    if (imageInfoP->CameraMake[0]) {
        fprintf(fileP, "Camera make  : %s\n", imageInfoP->CameraMake);
        fprintf(fileP, "Camera model : %s\n", imageInfoP->CameraModel);
    }
    if (imageInfoP->DateTime[0])
        fprintf(fileP, "Date/Time    : %s\n", imageInfoP->DateTime);

    fprintf(fileP, "Resolution   : %f x %f\n",
            imageInfoP->XResolution, imageInfoP->YResolution);

    if (imageInfoP->Orientation > 1) {

        /* Only print orientation if one was supplied, and if its not
           1 (normal orientation)

           1 - The 0th row is at the visual top of the image
               and the 0th column is the visual left-hand side.
           2 - The 0th row is at the visual top of the image
               and the 0th column is the visual right-hand side.
           3 - The 0th row is at the visual bottom of the image
               and the 0th column is the visual right-hand side.
           4 - The 0th row is at the visual bottom of the image
               and the 0th column is the visual left-hand side.
           5 - The 0th row is the visual left-hand side of of the image
               and the 0th column is the visual top.
           6 - The 0th row is the visual right-hand side of of the image
               and the 0th column is the visual top.
           7 - The 0th row is the visual right-hand side of of the image
               and the 0th column is the visual bottom.
           8 - The 0th row is the visual left-hand side of of the image
               and the 0th column is the visual bottom.

           Note: The descriptions here are the same as the name of the
           command line option to pass to jpegtran to right the image
        */
        static const char * OrientTab[9] = {
            "Undefined",
            "Normal",           /* 1 */
            "flip horizontal",  /* left right reversed mirror */
            "rotate 180",       /* 3 */
            "flip vertical",    /* upside down mirror */
            "transpose",    /* Flipped about top-left <--> bottom-right axis.*/
            "rotate 90",        /* rotate 90 cw to right it. */
            "transverse",   /* flipped about top-right <--> bottom-left axis */
            "rotate 270",       /* rotate 270 to right it. */
        };

        fprintf(fileP, "Orientation  : %s\n", 
                OrientTab[imageInfoP->Orientation]);
    }

    if (imageInfoP->IsColor == 0)
        fprintf(fileP, "Color/bw     : Black and white\n");

    if (imageInfoP->FlashUsed >= 0)
        fprintf(fileP, "Flash used   : %s\n",
                imageInfoP->FlashUsed ? "Yes" :"No");

    if (imageInfoP->FocalLength) {
        fprintf(fileP, "Focal length : %4.1fmm",
                (double)imageInfoP->FocalLength);
        if (imageInfoP->HaveCCDWidth){
            fprintf(fileP, "  (35mm equivalent: %dmm)",
                    (int)
                    (imageInfoP->FocalLength/imageInfoP->CCDWidth*36 + 0.5));
        }
        fprintf(fileP, "\n");
    }

    if (imageInfoP->HaveCCDWidth)
        fprintf(fileP, "CCD width    : %2.4fmm\n",
                (double)imageInfoP->CCDWidth);

    if (imageInfoP->ExposureTime) {
        if (imageInfoP->ExposureTime < 0.010){
            fprintf(fileP, 
                    "Exposure time: %6.4f s ",
                    (double)imageInfoP->ExposureTime);
        }else{
            fprintf(fileP, 
                    "Exposure time: %5.3f s ",
                    (double)imageInfoP->ExposureTime);
        }
        if (imageInfoP->ExposureTime <= 0.5){
            fprintf(fileP, " (1/%d)",(int)(0.5 + 1/imageInfoP->ExposureTime));
        }
        fprintf(fileP, "\n");
    }
    if (imageInfoP->ApertureFNumber){
        fprintf(fileP, "Aperture     : f/%3.1f\n",
                (double)imageInfoP->ApertureFNumber);
    }
    if (imageInfoP->Distance){
        if (imageInfoP->Distance < 0){
            fprintf(fileP, "Focus dist.  : Infinite\n");
        }else{
            fprintf(fileP, "Focus dist.  :%5.2fm\n",
                    (double)imageInfoP->Distance);
        }
    }

    if (imageInfoP->ISOequivalent){ /* 05-jan-2001 vcs */
        fprintf(fileP, "ISO equiv.   : %2d\n",(int)imageInfoP->ISOequivalent);
    }
    if (imageInfoP->ExposureBias){ /* 05-jan-2001 vcs */
        fprintf(fileP, "Exposure bias:%4.2f\n",
                (double)imageInfoP->ExposureBias);
    }
        
    if (imageInfoP->Whitebalance){ /* 05-jan-2001 vcs */
        switch(imageInfoP->Whitebalance) {
        case 1:
            fprintf(fileP, "Whitebalance : sunny\n");
            break;
        case 2:
            fprintf(fileP, "Whitebalance : fluorescent\n");
            break;
        case 3:
            fprintf(fileP, "Whitebalance : incandescent\n");
            break;
        default:
            fprintf(fileP, "Whitebalance : cloudy\n");
        }
    }
    if (imageInfoP->MeteringMode){ /* 05-jan-2001 vcs */
        switch(imageInfoP->MeteringMode) {
        case 2:
            fprintf(fileP, "Metering Mode: center weight\n");
            break;
        case 3:
            fprintf(fileP, "Metering Mode: spot\n");
            break;
        case 5:
            fprintf(fileP, "Metering Mode: matrix\n");
            break;
        }
    }
    if (imageInfoP->ExposureProgram){ /* 05-jan-2001 vcs */
        switch(imageInfoP->ExposureProgram) {
        case 2:
            fprintf(fileP, "Exposure     : program (auto)\n");
            break;
        case 3:
            fprintf(fileP, "Exposure     : aperture priority (semi-auto)\n");
            break;
        case 4:
            fprintf(fileP, "Exposure     : shutter priority (semi-auto)\n");
            break;
        }
    }
    if (imageInfoP->CompressionLevel){ /* 05-jan-2001 vcs */
        switch(imageInfoP->CompressionLevel) {
        case 1:
            fprintf(fileP, "Jpeg Quality  : basic\n");
            break;
        case 2:
            fprintf(fileP, "Jpeg Quality  : normal\n");
            break;
        case 4:
            fprintf(fileP, "Jpeg Quality  : fine\n");
            break;
       }
    }

    /* Print the comment. Print 'Comment:' for each new line of comment. */
    if (imageInfoP->Comments[0]) {
        unsigned int a;

        fprintf(fileP, "Comment      : ");

        for (a = 0; a < MAX_COMMENT && imageInfoP->Comments[a]; ++a) {
            char const c = imageInfoP->Comments[a];
            if (c == '\n'){
                /* Do not start a new line if the string ends with a cr */
                if (imageInfoP->Comments[a+1] != '\0')
                    fprintf(fileP, "\nComment      : ");
                else
                    fprintf(fileP, "\n");
            } else
                putc(c, fileP);
        }
        fprintf(fileP, "\n");
    }

    fprintf(fileP, "\n");
}