gint -> gboolean and tidy up.
[geeqie.git] / src / exif-common.c
1 /*
2  * Geeqie
3  * (C) 2006 John Ellis
4  * Copyright (C) 2008 - 2009 The Geeqie Team
5  *
6 */
7
8 #ifdef HAVE_CONFIG_H
9 #  include "config.h"
10 #endif
11
12 #include <stdio.h>
13 #include <string.h>
14 #include <fcntl.h>
15 #include <unistd.h>
16 #include <sys/types.h>
17 #include <sys/stat.h>
18 #include <sys/mman.h>
19 #include <math.h>
20
21 #ifdef HAVE_LCMS
22 /*** color support enabled ***/
23
24 #ifdef HAVE_LCMS_LCMS_H
25   #include <lcms/lcms.h>
26 #else
27   #include <lcms.h>
28 #endif
29 #endif
30
31 #include <glib.h>
32
33 #include "intl.h"
34
35 #include "main.h"
36 #include "exif.h"
37
38 #include "filedata.h"
39 #include "filefilter.h"
40 #include "filecache.h"
41 #include "format_raw.h"
42 #include "ui_fileops.h"
43 #include "cache.h"
44
45
46 static gdouble exif_rational_to_double(ExifRational *r, gint sign)
47 {
48         if (!r || r->den == 0.0) return 0.0;
49
50         if (sign) return (gdouble)((gint)r->num) / (gdouble)((gint)r->den);
51         return (gdouble)r->num / r->den;
52 }
53
54 static gdouble exif_get_rational_as_double(ExifData *exif, const gchar *key)
55 {
56         ExifRational *r;
57         gint sign;
58
59         r = exif_get_rational(exif, key, &sign);
60         return exif_rational_to_double(r, sign);
61 }
62
63 static GString *append_comma_text(GString *string, const gchar *text)
64 {
65         string = g_string_append(string, ", ");
66         string = g_string_append(string, text);
67
68         return string;
69 }
70
71 static gchar *remove_common_prefix(gchar *s, gchar *t)
72 {
73         gint i;
74
75         if (!s || !t) return t;
76
77         for (i = 0; s[i] && t[i] && s[i] == t[i]; i++)
78                 ;
79         if (!i)
80                 return t;
81         if (s[i-1] == ' ' || !s[i])
82                 {
83                 while (t[i] == ' ')
84                         i++;
85                 return t + i;
86                 }
87         return s;
88 }
89
90 static gdouble get_crop_factor(ExifData *exif)
91 {
92         gdouble res_unit_tbl[] = {0.0, 25.4, 25.4, 10.0, 1.0, 0.001 };
93         gdouble xres = exif_get_rational_as_double(exif, "Exif.Photo.FocalPlaneXResolution");
94         gdouble yres = exif_get_rational_as_double(exif, "Exif.Photo.FocalPlaneYResolution");
95         gint res_unit;
96         gint w, h;
97         gdouble xsize, ysize, size, ratio;
98
99         if (xres == 0.0 || yres == 0.0) return 0.0;
100
101         if (!exif_get_integer(exif, "Exif.Photo.FocalPlaneResolutionUnit", &res_unit)) return 0.0;
102         if (res_unit < 1 || res_unit > 5) return 0.0;
103
104         if (!exif_get_integer(exif, "Exif.Photo.PixelXDimension", &w)) return 0.0;
105         if (!exif_get_integer(exif, "Exif.Photo.PixelYDimension", &h)) return 0.0;
106
107         xsize = w * res_unit_tbl[res_unit] / xres;
108         ysize = h * res_unit_tbl[res_unit] / yres;
109
110         ratio = xsize / ysize;
111
112         if (ratio < 0.5 || ratio > 2.0) return 0.0; /* reasonable ratio */
113
114         size = sqrt(xsize * xsize + ysize * ysize);
115
116         if (size < 1.0 || size > 100.0) return 0.0; /* reasonable sensor size in mm */
117
118         return sqrt(36*36+24*24) / size;
119
120 }
121
122 static gboolean remove_suffix(gchar *str, const gchar *suffix, gint suffix_len)
123 {
124         gint str_len = strlen(str);
125         
126         if (suffix_len < 0) suffix_len = strlen(suffix);
127         if (str_len < suffix_len) return FALSE;
128         
129         if (strcmp(str + str_len - suffix_len, suffix) != 0) return FALSE;
130         str[str_len - suffix_len] = '\0';
131         
132         return TRUE;
133 }
134
135 static gchar *exif_build_formatted_Camera(ExifData *exif)
136 {
137         gchar *text;
138         gchar *make = exif_get_data_as_text(exif, "Exif.Image.Make");
139         gchar *model = exif_get_data_as_text(exif, "Exif.Image.Model");
140         gchar *software = exif_get_data_as_text(exif, "Exif.Image.Software");
141         gchar *model2;
142         gchar *software2;
143
144         if (make)
145                 {
146                 g_strstrip(make);
147
148                 if (remove_suffix(make, " CORPORATION", 12)) { /* Nikon */ }
149                 else if (remove_suffix(make, " Corporation", 12)) { /* Pentax */ }
150                 else if (remove_suffix(make, " OPTICAL CO.,LTD", 16)) { /* OLYMPUS */ };
151                 }
152
153         if (model)
154                 g_strstrip(model);
155
156         if (software)
157                 {
158                 gint i, j;
159
160                 g_strstrip(software);
161                 
162                 /* remove superfluous spaces (pentax K100D) */
163                 for (i = 0, j = 0; software[i]; i++, j++)
164                         {
165                         if (software[i] == ' ' && software[i + 1] == ' ')
166                                 i++;
167                         if (i != j) software[j] = software[i];
168                         }
169                 software[j] = '\0';
170                 }
171
172         model2 = remove_common_prefix(make, model);
173         software2 = remove_common_prefix(model2, software);
174
175         text = g_strdup_printf("%s%s%s%s%s%s", (make) ? make : "", (make && model2) ? " " : "",
176                                                (model2) ? model2 : "",
177                                                (software2 && (make || model2)) ? " (" : "",
178                                                (software2) ? software2 : "",
179                                                (software2 && (make || model2)) ? ")" : "");
180
181         g_free(make);
182         g_free(model);
183         g_free(software);
184         return text;
185 }
186
187 static gchar *exif_build_formatted_DateTime(ExifData *exif)
188 {
189         gchar *text = exif_get_data_as_text(exif, "Exif.Photo.DateTimeOriginal");
190         gchar *subsec = NULL;
191
192         if (text)
193                 {
194                 subsec = exif_get_data_as_text(exif, "Exif.Photo.SubSecTimeOriginal");
195                 }
196         else
197                 {
198                 text = exif_get_data_as_text(exif, "Exif.Image.DateTime");
199                 if (text) subsec = exif_get_data_as_text(exif, "Exif.Photo.SubSecTime");
200                 }
201         if (subsec)
202                 {
203                 gchar *tmp = text;
204                 text = g_strconcat(tmp, ".", subsec, NULL);
205                 g_free(tmp);
206                 g_free(subsec);
207                 }
208         return text;
209 }
210
211 static gchar *exif_build_formatted_ShutterSpeed(ExifData *exif)
212 {
213         ExifRational *r;
214
215         r = exif_get_rational(exif, "Exif.Photo.ExposureTime", NULL);
216         if (r && r->num && r->den)
217                 {
218                 gdouble n = (gdouble)r->den / (gdouble)r->num;
219                 return g_strdup_printf("%s%.0fs", n > 1.0 ? "1/" : "",
220                                                   n > 1.0 ? n : 1.0 / n);
221                 }
222         r = exif_get_rational(exif, "Exif.Photo.ShutterSpeedValue", NULL);
223         if (r && r->num  && r->den)
224                 {
225                 gdouble n = pow(2.0, exif_rational_to_double(r, TRUE));
226
227                 /* Correct exposure time to avoid values like 1/91s (seen on Minolta DImage 7) */
228                 if (n > 1.0 && (gint)n - ((gint)(n/10))*10 == 1) n--;
229
230                 return g_strdup_printf("%s%.0fs", n > 1.0 ? "1/" : "",
231                                                   n > 1.0 ? floor(n) : 1.0 / n);
232                 }
233         return NULL;
234 }
235
236 static gchar *exif_build_formatted_Aperture(ExifData *exif)
237 {
238         gdouble n;
239
240         n = exif_get_rational_as_double(exif, "Exif.Photo.FNumber");
241         if (n == 0.0) n = exif_get_rational_as_double(exif, "Exif.Photo.ApertureValue");
242         if (n == 0.0) return NULL;
243
244         return g_strdup_printf("f/%.1f", n);
245 }
246
247 static gchar *exif_build_formatted_ExposureBias(ExifData *exif)
248 {
249         ExifRational *r;
250         gint sign;
251         gdouble n;
252
253         r = exif_get_rational(exif, "Exif.Photo.ExposureBiasValue", &sign);
254         if (!r) return NULL;
255
256         n = exif_rational_to_double(r, sign);
257         return g_strdup_printf("%+.1f", n);
258 }
259
260 static gchar *exif_build_formatted_FocalLength(ExifData *exif)
261 {
262         gdouble n;
263
264         n = exif_get_rational_as_double(exif, "Exif.Photo.FocalLength");
265         if (n == 0.0) return NULL;
266         return g_strdup_printf("%.0f mm", n);
267 }
268
269 static gchar *exif_build_formatted_FocalLength35mmFilm(ExifData *exif)
270 {
271         gint n;
272         gdouble f, c;
273
274         if (exif_get_integer(exif, "Exif.Photo.FocalLengthIn35mmFilm", &n) && n != 0)
275                 {
276                 return g_strdup_printf("%d mm", n);
277                 }
278
279         f = exif_get_rational_as_double(exif, "Exif.Photo.FocalLength");
280         if (f == 0.0) return NULL;
281
282         c = get_crop_factor(exif);
283         if (c == 0.0) return NULL;
284
285         return g_strdup_printf("%.0f mm", f * c);
286 }
287
288 static gchar *exif_build_formatted_ISOSpeedRating(ExifData *exif)
289 {
290         gchar *text;
291
292         text = exif_get_data_as_text(exif, "Exif.Photo.ISOSpeedRatings");
293         /* kodak may set this instead */
294         if (!text) text = exif_get_data_as_text(exif, "Exif.Photo.ExposureIndex");
295         return text;
296 }
297
298 static gchar *exif_build_formatted_SubjectDistance(ExifData *exif)
299 {
300         ExifRational *r;
301         gint sign;
302         gdouble n;
303
304         r = exif_get_rational(exif, "Exif.Photo.SubjectDistance", &sign);
305         if (!r) return NULL;
306
307         if ((glong)r->num == (glong)0xffffffff) return g_strdup(_("infinity"));
308         if ((glong)r->num == 0) return g_strdup(_("unknown"));
309
310         n = exif_rational_to_double(r, sign);
311         if (n == 0.0) return _("unknown");
312         return g_strdup_printf("%.3f m", n);
313 }
314
315 static gchar *exif_build_formatted_Flash(ExifData *exif)
316 {
317         /* grr, flash is a bitmask... */
318         GString *string;
319         gchar *text;
320         gint n;
321         gint v;
322
323         if (!exif_get_integer(exif, "Exif.Photo.Flash", &n)) return NULL;
324
325         /* Exif 2.1 only defines first 3 bits */
326         if (n <= 0x07) return exif_get_data_as_text(exif, "Exif.Photo.Flash");
327
328         /* must be Exif 2.2 */
329         string = g_string_new("");
330
331         /* flash fired (bit 0) */
332         string = g_string_append(string, (n & 0x01) ? _("yes") : _("no"));
333
334         /* flash mode (bits 3, 4) */
335         v = (n >> 3) & 0x03;
336         if (v) string = append_comma_text(string, _("mode:"));
337         switch (v)
338                 {
339                 case 1:
340                         string = g_string_append(string, _("on"));
341                         break;
342                 case 2:
343                         string = g_string_append(string, _("off"));
344                         break;
345                 case 3:
346                         string = g_string_append(string, _("auto"));
347                         break;
348                 }
349
350         /* return light (bits 1, 2) */
351         v = (n >> 1) & 0x03;
352         if (v == 2) string = append_comma_text(string, _("not detected by strobe"));
353         if (v == 3) string = append_comma_text(string, _("detected by strobe"));
354
355         /* we ignore flash function (bit 5) */
356
357         /* red-eye (bit 6) */
358         if ((n >> 5) & 0x01) string = append_comma_text(string, _("red-eye reduction"));
359
360         text = string->str;
361         g_string_free(string, FALSE);
362         return text;
363 }
364
365 static gchar *exif_build_formatted_Resolution(ExifData *exif)
366 {
367         ExifRational *rx, *ry;
368         gchar *units;
369         gchar *text;
370
371         rx = exif_get_rational(exif, "Exif.Image.XResolution", NULL);
372         ry = exif_get_rational(exif, "Exif.Image.YResolution", NULL);
373         if (!rx || !ry) return NULL;
374
375         units = exif_get_data_as_text(exif, "Exif.Image.ResolutionUnit");
376         text = g_strdup_printf("%0.f x %0.f (%s/%s)", rx->den ? (gdouble)rx->num / rx->den : 1.0,
377                                                       ry->den ? (gdouble)ry->num / ry->den : 1.0,
378                                                       _("dot"), (units) ? units : _("unknown"));
379
380         g_free(units);
381         return text;
382 }
383
384 static gchar *exif_build_formatted_ColorProfile(ExifData *exif)
385 {
386         const gchar *name = "";
387         const gchar *source = "";
388         guchar *profile_data;
389         guint profile_len;
390
391         profile_data = exif_get_color_profile(exif, &profile_len);
392         if (!profile_data)
393                 {
394                 gint cs;
395                 gchar *interop_index;
396
397                 /* ColorSpace == 1 specifies sRGB per EXIF 2.2 */
398                 if (!exif_get_integer(exif, "Exif.Photo.ColorSpace", &cs)) cs = 0;
399                 interop_index = exif_get_data_as_text(exif, "Exif.Iop.InteroperabilityIndex");
400
401                 if (cs == 1)
402                         {
403                         name = _("sRGB");
404                         source = "ColorSpace";
405                         }
406                 else if (cs == 2 || (interop_index && !strcmp(interop_index, "R03")))
407                         {
408                         name = _("AdobeRGB");
409                         source = (cs == 2) ? "ColorSpace" : "Iop";
410                         }
411
412                 g_free(interop_index);
413                 }
414         else
415                 {
416                 source = _("embedded");
417 #ifdef HAVE_LCMS
418
419                         {
420                         cmsHPROFILE profile;
421
422                         profile = cmsOpenProfileFromMem(profile_data, profile_len);
423                         if (profile)
424                                 {
425                                 name = cmsTakeProductName(profile);
426                                 cmsCloseProfile(profile);
427                                 }
428                         g_free(profile_data);
429                         }
430 #endif
431                 }
432         if (name[0] == 0 && source[0] == 0) return NULL;
433         return g_strdup_printf("%s (%s)", name, source);
434 }
435
436 static gchar *exif_build_formatted_GPSPosition(ExifData *exif)
437 {
438         GString *string;
439         gchar *text, *ref;
440         ExifRational *value;
441         ExifItem *item;
442         guint i;
443         gdouble p, p3;
444         gulong p1, p2;
445
446         string = g_string_new("");
447
448         item = exif_get_item(exif, "Exif.GPSInfo.GPSLatitude");
449         ref = exif_get_data_as_text(exif, "Exif.GPSInfo.GPSLatitudeRef");
450         if (item && ref)
451                 {
452                 p = 0;
453                 for (i = 0; i < exif_item_get_elements(item); i++)
454                         {
455                         value = exif_item_get_rational(item, NULL, i);
456                         if (value && value->num && value->den)
457                                 p += (gdouble)value->num / (gdouble)value->den / pow(60.0, (gdouble)i);
458                         }
459                 p1 = (gint)p;
460                 p2 = (gint)((p - p1)*60);
461                 p3 = ((p - p1)*60 - p2)*60;
462
463                 g_string_append_printf(string, "%0lu° %0lu' %0.2f\" %.1s", p1, p2, p3, ref);
464                 } // if (item && ref)
465
466         item = exif_get_item(exif, "Exif.GPSInfo.GPSLongitude");
467         ref = exif_get_data_as_text(exif, "Exif.GPSInfo.GPSLongitudeRef");
468         if (item && ref)
469                 {
470                 p = 0;
471                 for (i = 0; i < exif_item_get_elements(item); i++)
472                         {
473                         value = exif_item_get_rational(item, NULL, i);
474                         if (value && value->num && value->den)
475                         p += (gdouble)value->num / (gdouble)value->den / pow(60.0, (gdouble)i);
476                         }
477                 p1 = (gint)p;
478                 p2 = (gint)((p - p1)*60);
479                 p3 = ((p - p1)*60 - p2)*60;
480
481                 g_string_append_printf(string, ", %0lu° %0lu' %0.2f\" %.1s", p1, p2, p3, ref);
482                 } // if (item && ref)
483
484         text = string->str;
485         g_string_free(string, FALSE);
486
487         return text;
488 } // static gchar *exif_build_forma...
489
490 static gchar *exif_build_formatted_GPSAltitude(ExifData *exif)
491 {
492         ExifRational *r;
493         ExifItem *item;
494         gdouble alt;
495         gint ref;
496
497         item = exif_get_item(exif, "Exif.GPSInfo.GPSAltitudeRef");
498         r = exif_get_rational(exif, "Exif.GPSInfo.GPSAltitude", NULL);
499
500         if (!r || !item) return NULL;
501
502         alt = exif_rational_to_double(r, 0);
503         exif_item_get_integer(item, &ref);
504
505         return g_strdup_printf("%0.f m %s", alt, (ref==0)?_("Above Sea Level"):_("Below Sea Level"));
506 }
507
508
509 /* List of custom formatted pseudo-exif tags */
510 #define EXIF_FORMATTED_TAG(name, label) { EXIF_FORMATTED()#name, label, exif_build_formatted##_##name }
511
512 ExifFormattedText ExifFormattedList[] = {
513         EXIF_FORMATTED_TAG(Camera,              N_("Camera")),
514         EXIF_FORMATTED_TAG(DateTime,            N_("Date")),
515         EXIF_FORMATTED_TAG(ShutterSpeed,        N_("Shutter speed")),
516         EXIF_FORMATTED_TAG(Aperture,            N_("Aperture")),
517         EXIF_FORMATTED_TAG(ExposureBias,        N_("Exposure bias")),
518         EXIF_FORMATTED_TAG(ISOSpeedRating,      N_("ISO sensitivity")),
519         EXIF_FORMATTED_TAG(FocalLength,         N_("Focal length")),
520         EXIF_FORMATTED_TAG(FocalLength35mmFilm, N_("Focal length 35mm")),
521         EXIF_FORMATTED_TAG(SubjectDistance,     N_("Subject distance")),
522         EXIF_FORMATTED_TAG(Flash,               N_("Flash")),
523         EXIF_FORMATTED_TAG(Resolution,          N_("Resolution")),
524         EXIF_FORMATTED_TAG(ColorProfile,        N_("Color profile")),
525         EXIF_FORMATTED_TAG(GPSPosition,         N_("GPS position")),
526         EXIF_FORMATTED_TAG(GPSAltitude,         N_("GPS altitude")),
527         { NULL, NULL, NULL }
528 };
529
530 gchar *exif_get_formatted_by_key(ExifData *exif, const gchar *key, gboolean *key_valid)
531 {
532         if (strncmp(key, EXIF_FORMATTED(), EXIF_FORMATTED_LEN) == 0)
533                 {
534                 gint i;
535
536                 if (key_valid) *key_valid = TRUE;
537
538                 key += EXIF_FORMATTED_LEN;
539                 for (i = 0; ExifFormattedList[i].key; i++)
540                         if (strcmp(key, ExifFormattedList[i].key + EXIF_FORMATTED_LEN) == 0)
541                                 return ExifFormattedList[i].build_func(exif);
542                 }
543
544         if (key_valid) *key_valid = FALSE;
545         return NULL;
546 }
547
548 gchar *exif_get_description_by_key(const gchar *key)
549 {
550         if (!key) return NULL;
551
552         if (strncmp(key, EXIF_FORMATTED(), EXIF_FORMATTED_LEN) == 0)
553                 {
554                 gint i;
555
556                 key += EXIF_FORMATTED_LEN;
557                 for (i = 0; ExifFormattedList[i].key; i++)
558                         if (strcmp(key, ExifFormattedList[i].key + EXIF_FORMATTED_LEN) == 0)
559                                 return g_strdup(_(ExifFormattedList[i].description));
560                 }
561
562         return exif_get_tag_description_by_key(key);
563 }
564
565 gint exif_get_integer(ExifData *exif, const gchar *key, gint *value)
566 {
567         ExifItem *item;
568
569         item = exif_get_item(exif, key);
570         return exif_item_get_integer(item, value);
571 }
572
573 ExifRational *exif_get_rational(ExifData *exif, const gchar *key, gint *sign)
574 {
575         ExifItem *item;
576
577         item = exif_get_item(exif, key);
578         return exif_item_get_rational(item, sign, 0);
579 }
580
581 gchar *exif_get_data_as_text(ExifData *exif, const gchar *key)
582 {
583         ExifItem *item;
584         gchar *text;
585         gboolean key_valid;
586
587         if (!key) return NULL;
588
589         text = exif_get_formatted_by_key(exif, key, &key_valid);
590         if (key_valid) return text;
591
592         item = exif_get_item(exif, key);
593         if (item) return exif_item_get_data_as_text(item);
594
595         return NULL;
596 }
597
598
599 static FileCacheData *exif_cache;
600
601 void exif_release_cb(FileData *fd)
602 {
603         exif_free(fd->exif);
604         fd->exif = NULL;
605 }
606
607 ExifData *exif_read_fd(FileData *fd)
608 {
609         gchar *sidecar_path;
610
611         if (!fd || !is_readable_file(fd->path)) return NULL;
612         
613         if (!exif_cache) exif_cache = file_cache_new(exif_release_cb, 4);
614         
615         if (file_cache_get(exif_cache, fd)) return fd->exif;
616         
617         /* CACHE_TYPE_XMP_METADATA file should exist only if the metadata are
618          * not writable directly, thus it should contain the most up-to-date version */
619         sidecar_path = cache_find_location(CACHE_TYPE_XMP_METADATA, fd->path);
620
621         if (!sidecar_path) sidecar_path = file_data_get_sidecar_path(fd, TRUE);
622
623         fd->exif = exif_read(fd->path, sidecar_path, fd->modified_xmp);
624
625         g_free(sidecar_path);
626         return fd->exif;
627 }
628
629
630 void exif_free_fd(FileData *fd, ExifData *exif)
631 {
632         if (!fd) return;
633         g_assert(fd->exif == exif);
634         
635         file_cache_put(exif_cache, fd, 1);
636 }
637
638 /* embedded icc in jpeg */
639
640
641 #define JPEG_MARKER             0xFF
642 #define JPEG_MARKER_SOI         0xD8
643 #define JPEG_MARKER_EOI         0xD9
644 #define JPEG_MARKER_APP1        0xE1
645 #define JPEG_MARKER_APP2        0xE2
646
647 /* jpeg container format:
648      all data markers start with 0XFF
649      2 byte long file start and end markers: 0xFFD8(SOI) and 0XFFD9(EOI)
650      4 byte long data segment markers in format: 0xFFTTSSSSNNN...
651        FF:   1 byte standard marker identifier
652        TT:   1 byte data type
653        SSSS: 2 bytes in Motorola byte alignment for length of the data.
654              This value includes these 2 bytes in the count, making actual
655              length of NN... == SSSS - 2.
656        NNN.: the data in this segment
657  */
658
659 gboolean exif_jpeg_segment_find(guchar *data, guint size,
660                             guchar app_marker, const gchar *magic, guint magic_len,
661                             guint *seg_offset, guint *seg_length)
662 {
663         guchar marker = 0;
664         guint offset = 0;
665         guint length = 0;
666
667         while (marker != app_marker &&
668                marker != JPEG_MARKER_EOI)
669                 {
670                 offset += length;
671                 length = 2;
672
673                 if (offset + 2 >= size ||
674                     data[offset] != JPEG_MARKER) return FALSE;
675
676                 marker = data[offset + 1];
677                 if (marker != JPEG_MARKER_SOI &&
678                     marker != JPEG_MARKER_EOI)
679                         {
680                         if (offset + 4 >= size) return FALSE;
681                         length += ((guint)data[offset + 2] << 8) + data[offset + 3];
682                         }
683                 }
684
685         if (marker == app_marker &&
686             offset + length < size &&
687             length >= 4 + magic_len &&
688             memcmp(data + offset + 4, magic, magic_len) == 0)
689                 {
690                 *seg_offset = offset + 4;
691                 *seg_length = length - 4;
692                 return TRUE;
693                 }
694
695         return FALSE;
696 }
697
698 gboolean exif_jpeg_parse_color(ExifData *exif, guchar *data, guint size)
699 {
700         guint seg_offset = 0;
701         guint seg_length = 0;
702         guint chunk_offset[255];
703         guint chunk_length[255];
704         guint chunk_count = 0;
705
706         /* For jpeg/jfif, ICC color profile data can be in more than one segment.
707            the data is in APP2 data segments that start with "ICC_PROFILE\x00\xNN\xTT"
708            NN = segment number for data
709            TT = total number of ICC segments (TT in each ICC segment should match)
710          */
711
712         while (exif_jpeg_segment_find(data + seg_offset + seg_length,
713                                       size - seg_offset - seg_length,
714                                       JPEG_MARKER_APP2,
715                                       "ICC_PROFILE\x00", 12,
716                                       &seg_offset, &seg_length))
717                 {
718                 guchar chunk_num;
719                 guchar chunk_tot;
720
721                 if (seg_length < 14) return FALSE;
722
723                 chunk_num = data[seg_offset + 12];
724                 chunk_tot = data[seg_offset + 13];
725
726                 if (chunk_num == 0 || chunk_tot == 0) return FALSE;
727
728                 if (chunk_count == 0)
729                         {
730                         guint i;
731
732                         chunk_count = (guint)chunk_tot;
733                         for (i = 0; i < chunk_count; i++) chunk_offset[i] = 0;
734                         for (i = 0; i < chunk_count; i++) chunk_length[i] = 0;
735                         }
736
737                 if (chunk_tot != chunk_count ||
738                     chunk_num > chunk_count) return FALSE;
739
740                 chunk_num--;
741                 chunk_offset[chunk_num] = seg_offset + 14;
742                 chunk_length[chunk_num] = seg_length - 14;
743                 }
744
745         if (chunk_count > 0)
746                 {
747                 guchar *cp_data;
748                 guint cp_length = 0;
749                 guint i;
750
751                 for (i = 0; i < chunk_count; i++) cp_length += chunk_length[i];
752                 cp_data = g_malloc(cp_length);
753
754                 for (i = 0; i < chunk_count; i++)
755                         {
756                         if (chunk_offset[i] == 0)
757                                 {
758                                 /* error, we never saw this chunk */
759                                 g_free(cp_data);
760                                 return FALSE;
761                                 }
762                         memcpy(cp_data, data + chunk_offset[i], chunk_length[i]);
763                         }
764                 DEBUG_1("Found embedded icc profile in jpeg");
765                 exif_add_jpeg_color_profile(exif, cp_data, cp_length);
766
767                 return TRUE;
768                 }
769
770         return FALSE;
771 }
772 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */