Tue Nov 7 15:35:59 2006 John Ellis <johne@verizon.net>
[geeqie.git] / src / format_fuji.c
1 /*
2  *  GQView
3  *  (C) 2005 John Ellis
4  *
5  *  Authors:
6  *    Original version 2005 Lars Ellenberg, base on dcraw by David coffin.
7  *
8  * This software is released under the GNU General Public License (GNU GPL).
9  * Please read the included file COPYING for more information.
10  * This software comes with no warranty of any kind, use at your own risk!
11  */
12
13 #ifdef HAVE_CONFIG_H
14 #  include "config.h"
15 #endif
16
17
18 #include <stdio.h>
19 #include <string.h>
20 #include <unistd.h>
21
22 #include <glib.h>
23
24 #include "intl.h"
25
26 #include "format_fuji.h"
27 #include "format_raw.h"
28
29 #include "exif.h"
30
31
32 /*
33  *-----------------------------------------------------------------------------
34  * Raw (RAF) embedded jpeg extraction for Fujifilm
35  *-----------------------------------------------------------------------------
36  */
37
38
39 gint format_fuji_raw(unsigned char *data, const guint len,
40                      guint *image_offset, guint *exif_offset)
41 {
42         guint io;
43         guint eo;
44
45         if (len < 128 ||
46             memcmp(data, "FUJIFILM", 8) != 0)
47                 {
48                 return FALSE;
49                 }
50
51         /* offset to jpeg is embedded at bytes 84-87 */
52         io = GUINT32_FROM_BE(*(guint32*)(data + 84));
53         if (io + 4 > len) return FALSE;
54
55         /* verify jpeg marker */
56         if (memcmp(data + io, "\xff\xd8\xff\xe1", 4) != 0)
57                 {
58                 return FALSE;
59                 }
60
61         /* Exif is stored in the jpeg, so use the same offset */
62         eo=io;
63
64         if (image_offset) *image_offset = io;
65         if (exif_offset) *exif_offset = eo;
66
67         return TRUE;
68 }
69
70
71 /*
72  *-----------------------------------------------------------------------------
73  * EXIF Makernote for Fujifilm
74  *-----------------------------------------------------------------------------
75  */
76
77 static ExifTextList FujiTagSharpness[] = {
78         { 1,    "soft" },
79         { 2,    "soft" },
80         { 3,    "normal" },
81         { 4,    "hard" },
82         { 5,    "hard" },
83         EXIF_TEXT_LIST_END
84 };
85
86 static ExifTextList FujiTagWhiteBalance[]= {
87         { 0,    "auto" },
88         { 256,  "daylight" },
89         { 512,  "cloudy" },
90         { 768,  "daylight color-fluorescence" },
91         { 769,  "daywhite color-fluorescence" },
92         { 770,  "white-fluorescence" },
93         { 1024, "incandescent" },
94         { 3840, "custom" },
95         EXIF_TEXT_LIST_END
96 };
97
98 static ExifTextList FujiTagColorTone[]= {
99         { 0,    "normal" },
100         { 256,  "high" },
101         { 512,  "low" },
102         EXIF_TEXT_LIST_END
103 };
104
105 static ExifTextList FujiTagFlashMode[]= {
106         { 0,    "auto" },
107         { 1,    "on" },
108         { 2,    "off" },
109         { 3,    "red-eye reduction" },
110         EXIF_TEXT_LIST_END
111 };
112
113 static ExifTextList FujiTagOffOn[]= {
114         { 0,    "off" },
115         { 1,    "on" },
116         EXIF_TEXT_LIST_END
117 };
118
119 static ExifTextList FujiTagFocusMode[]= {
120         { 0,    "auto" },
121         { 1,    "manual" },
122         EXIF_TEXT_LIST_END
123 };
124
125 static ExifTextList FujiTagPictureMode[]= {
126         { 0,    "auto" },
127         { 1,    "portrait" },
128         { 2,    "landscape" },
129         { 4,    "sports" },
130         { 5,    "night" },
131         { 6,    "program AE" },
132         { 256,  "aperture priority AE" },
133         { 512,  "shutter priority AE" },
134         { 768,  "manual" },
135         EXIF_TEXT_LIST_END
136 };
137
138 static ExifTextList FujiTagNoYes[]= {
139         { 0,    "no" },
140         { 1,    "yes" },
141         EXIF_TEXT_LIST_END
142 };
143
144 #if 0
145 static ExifTextList FujiTag[]= {
146         { ,     "" },
147         { ,     "" },
148         EXIF_TEXT_LIST_END
149 };
150 #endif
151
152
153 static ExifMarker FujiExifMarkersList[] = {
154 { 0x1000,       EXIF_FORMAT_STRING, 8,          "Fuji.Quality",         "Quality",      NULL },
155 { 0x1001,       EXIF_FORMAT_SHORT_UNSIGNED, 1,  "Fuji.Sharpness",       "Sharpness",    FujiTagSharpness },
156 { 0x1002,       EXIF_FORMAT_SHORT_UNSIGNED, 1,  "Fuji.WhiteBalance",    "White balance",FujiTagWhiteBalance },
157 { 0x1003,       EXIF_FORMAT_SHORT_UNSIGNED, 1,  "Fuji.Color",           "Color",        FujiTagColorTone },
158 { 0x1004,       EXIF_FORMAT_SHORT_UNSIGNED, 1,  "Fuji.Tone",            "Tone",         FujiTagColorTone },
159 { 0x1010,       EXIF_FORMAT_SHORT_UNSIGNED, 1,  "Fuji.FlashMode",       "Flash mode",   FujiTagFlashMode },
160 { 0x1011,       EXIF_FORMAT_RATIONAL, 1,        "Fuji.FlashStrength",   "Flash strength", NULL },
161 { 0x1020,       EXIF_FORMAT_SHORT_UNSIGNED, 1,  "Fuji.Macro",           "Macro",        FujiTagOffOn },
162 { 0x1021,       EXIF_FORMAT_SHORT_UNSIGNED, 1,  "Fuji.FocusMode",       "Focus mode",   FujiTagFocusMode },
163 { 0x1030,       EXIF_FORMAT_SHORT_UNSIGNED, 1,  "Fuji.SlowSync",        "Slow synchro", FujiTagOffOn },
164 { 0x1031,       EXIF_FORMAT_SHORT_UNSIGNED, 1,  "Fuji.PictureMode",     "Picture mode", FujiTagPictureMode },
165 { 0x1100,       EXIF_FORMAT_SHORT_UNSIGNED, 1,  "Fuji.ContTake/Bracket",
166                                                         "Continuous / Auto bracket",    FujiTagOffOn },
167 { 0x1300,       EXIF_FORMAT_SHORT_UNSIGNED, 1,  "Fuji.BlurWarning",     "Blue warning", FujiTagNoYes },
168 { 0x1301,       EXIF_FORMAT_SHORT_UNSIGNED, 1,  "Fuji.FocusWarning",    "Focus warning",FujiTagNoYes },
169 { 0x1302,       EXIF_FORMAT_SHORT_UNSIGNED, 1,  "Fuji.AEWarning",       "AE warning",   FujiTagNoYes },
170 EXIF_MARKER_LIST_END
171 };
172
173
174
175 gint format_fuji_makernote(ExifData *exif, unsigned char *tiff, guint offset,
176                            guint size, ExifByteOrder bo)
177 {
178         unsigned char *data;
179         guint ifdstart;
180
181         if (offset + 8 + 4 >= size) return FALSE;
182
183         data = tiff + offset;
184
185         /* Fuji tag format starts with "FUJIFILM",
186          * followed by 4 bytes indicating offset to IFD directory using Fuji tags,
187          * byte order is always little endian (II).
188          */
189         if (memcmp(data, "FUJIFILM", 8) != 0) return FALSE;
190
191         ifdstart = exif_byte_get_int32(data + 8, EXIF_BYTE_ORDER_INTEL);
192         if (offset + ifdstart >= size) return FALSE;
193
194         if (exif_parse_IFD_table(exif, tiff + offset, ifdstart, size - offset,
195                                  EXIF_BYTE_ORDER_INTEL, 0, FujiExifMarkersList) != 0)
196                 {
197                 return FALSE;
198                 }
199
200         return TRUE;
201 }
202