annotate src/exif-common.c @ 548:7ada6e5d4de8

Add a pointer to the build function in the formatted exif tags struct and use a loop in exif_get_formatted_by_key().
author zas_
date Fri, 02 May 2008 22:28:39 +0000
parents 95e0449d8f29
children 4230e67bdfb1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
182
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
1 /*
541
116346636d42 Replace GQView by Geeqie.
zas_
parents: 519
diff changeset
2 * Geeqie
116346636d42 Replace GQView by Geeqie.
zas_
parents: 519
diff changeset
3 * (C) 2006 John Ellis
475
48c8e49b571c updated copyright in source files
nadvornik
parents: 449
diff changeset
4 * Copyright (C) 2008 The Geeqie Team
182
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
5 *
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
6 */
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
7
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
8 #ifdef HAVE_CONFIG_H
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
9 # include "config.h"
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
10 #endif
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
11
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
12 #include <stdio.h>
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
13 #include <string.h>
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
14 #include <fcntl.h>
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
15 #include <unistd.h>
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
16 #include <sys/types.h>
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
17 #include <sys/stat.h>
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
18 #include <sys/mman.h>
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
19 #include <math.h>
438
eff049b3d308 added fColorProfile pseudo-tag with detailed information
nadvornik
parents: 300
diff changeset
20
eff049b3d308 added fColorProfile pseudo-tag with detailed information
nadvornik
parents: 300
diff changeset
21 #ifdef HAVE_LCMS
eff049b3d308 added fColorProfile pseudo-tag with detailed information
nadvornik
parents: 300
diff changeset
22 /*** color support enabled ***/
eff049b3d308 added fColorProfile pseudo-tag with detailed information
nadvornik
parents: 300
diff changeset
23
eff049b3d308 added fColorProfile pseudo-tag with detailed information
nadvornik
parents: 300
diff changeset
24 #ifdef HAVE_LCMS_LCMS_H
eff049b3d308 added fColorProfile pseudo-tag with detailed information
nadvornik
parents: 300
diff changeset
25 #include <lcms/lcms.h>
eff049b3d308 added fColorProfile pseudo-tag with detailed information
nadvornik
parents: 300
diff changeset
26 #else
eff049b3d308 added fColorProfile pseudo-tag with detailed information
nadvornik
parents: 300
diff changeset
27 #include <lcms.h>
eff049b3d308 added fColorProfile pseudo-tag with detailed information
nadvornik
parents: 300
diff changeset
28 #endif
eff049b3d308 added fColorProfile pseudo-tag with detailed information
nadvornik
parents: 300
diff changeset
29 #endif
eff049b3d308 added fColorProfile pseudo-tag with detailed information
nadvornik
parents: 300
diff changeset
30
182
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
31 #include <glib.h>
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
32
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
33 #include "intl.h"
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
34
281
9995c5fb202a gqview.h -> main.h
zas_
parents: 239
diff changeset
35 #include "main.h"
182
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
36 #include "exif.h"
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
37
507
135570a8bd96 Move debug macros from main.h to new debug.h.
zas_
parents: 506
diff changeset
38 #include "debug.h"
239
cccba3e30a44 Remove two unused variables declarations, and add a missing #include.
zas_
parents: 222
diff changeset
39 #include "filelist.h"
182
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
40 #include "format_raw.h"
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
41 #include "ui_fileops.h"
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
42
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
43
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
44 double exif_rational_to_double(ExifRational *r, gint sign)
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
45 {
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
46 if (!r || r->den == 0.0) return 0.0;
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
47
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
48 if (sign) return (double)((int)r->num) / (double)((int)r->den);
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
49 return (double)r->num / r->den;
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
50 }
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
51
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
52 double exif_get_rational_as_double(ExifData *exif, const gchar *key)
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
53 {
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
54 ExifRational *r;
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
55 gint sign;
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
56
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
57 r = exif_get_rational(exif, key, &sign);
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
58 return exif_rational_to_double(r, sign);
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
59 }
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
60
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
61 static GString *append_comma_text(GString *string, const gchar *text)
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
62 {
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
63 string = g_string_append(string, ", ");
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
64 string = g_string_append(string, text);
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
65
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
66 return string;
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
67 }
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
68
222
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 212
diff changeset
69 static gchar *remove_common_prefix(gchar *s, gchar *t)
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 212
diff changeset
70 {
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 212
diff changeset
71 gint i;
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 212
diff changeset
72
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 212
diff changeset
73 if (!s || !t) return t;
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 212
diff changeset
74
297
76cdc3f1fe34 Fix broken remove_common_prefix(), fCamera didn't display model as it should.
zas_
parents: 281
diff changeset
75 for (i = 0; s[i] && t[i] && s[i] == t[i]; i++)
222
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 212
diff changeset
76 ;
442
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 438
diff changeset
77 if (!i)
222
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 212
diff changeset
78 return t;
300
bda275cf9821 Fix fCamera even more.
zas_
parents: 297
diff changeset
79 if (s[i-1] == ' ' || !s[i])
222
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 212
diff changeset
80 {
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 212
diff changeset
81 while (t[i] == ' ')
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 212
diff changeset
82 i++;
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 212
diff changeset
83 return t + i;
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 212
diff changeset
84 }
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 212
diff changeset
85 return s;
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 212
diff changeset
86 }
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 212
diff changeset
87
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 212
diff changeset
88 static double get_crop_factor(ExifData *exif)
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 212
diff changeset
89 {
442
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 438
diff changeset
90 double res_unit_tbl[] = {0.0, 25.4, 25.4, 10.0, 1.0, 0.001 };
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 438
diff changeset
91
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 438
diff changeset
92 double xres = exif_get_rational_as_double(exif, "Exif.Photo.FocalPlaneXResolution");
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 438
diff changeset
93 double yres = exif_get_rational_as_double(exif, "Exif.Photo.FocalPlaneYResolution");
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 438
diff changeset
94 int res_unit;
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 438
diff changeset
95 int w, h;
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 438
diff changeset
96 double xsize, ysize, size, ratio;
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 438
diff changeset
97
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 438
diff changeset
98 if (xres == 0.0 || yres == 0.0) return 0.0;
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 438
diff changeset
99
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 438
diff changeset
100 if (!exif_get_integer(exif, "Exif.Photo.FocalPlaneResolutionUnit", &res_unit)) return 0.0;
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 438
diff changeset
101 if (res_unit < 1 || res_unit > 5) return 0.0;
222
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 212
diff changeset
102
442
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 438
diff changeset
103 if (!exif_get_integer(exif, "Exif.Photo.PixelXDimension", &w)) return 0.0;
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 438
diff changeset
104 if (!exif_get_integer(exif, "Exif.Photo.PixelYDimension", &h)) return 0.0;
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 438
diff changeset
105
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 438
diff changeset
106 xsize = w * res_unit_tbl[res_unit] / xres;
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 438
diff changeset
107 ysize = h * res_unit_tbl[res_unit] / yres;
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 438
diff changeset
108
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 438
diff changeset
109 ratio = xsize / ysize;
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 438
diff changeset
110
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 438
diff changeset
111 if (ratio < 0.5 || ratio > 2.0) return 0.0; /* reasonable ratio */
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 438
diff changeset
112
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 438
diff changeset
113 size = sqrt(xsize * xsize + ysize * ysize);
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 438
diff changeset
114
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 438
diff changeset
115 if (size < 1.0 || size > 100.0) return 0.0; /* reasonable sensor size in mm */
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 438
diff changeset
116
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 438
diff changeset
117 return sqrt(36*36+24*24) / size;
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 438
diff changeset
118
222
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 212
diff changeset
119 }
77f1bcc6c161 various exif improvements based on patch by Uwe Ohse
nadvornik
parents: 212
diff changeset
120
519
a1267c00e058 Cleanup exif_get_formatted_by_key().
zas_
parents: 516
diff changeset
121 static gint remove_suffix(gchar *str, const gchar *suffix, gint suffix_len)
a1267c00e058 Cleanup exif_get_formatted_by_key().
zas_
parents: 516
diff changeset
122 {
a1267c00e058 Cleanup exif_get_formatted_by_key().
zas_
parents: 516
diff changeset
123 gint str_len = strlen(str);
a1267c00e058 Cleanup exif_get_formatted_by_key().
zas_
parents: 516
diff changeset
124
a1267c00e058 Cleanup exif_get_formatted_by_key().
zas_
parents: 516
diff changeset
125 if (suffix_len < 0) suffix_len = strlen(suffix);
a1267c00e058 Cleanup exif_get_formatted_by_key().
zas_
parents: 516
diff changeset
126 if (str_len < suffix_len) return FALSE;
a1267c00e058 Cleanup exif_get_formatted_by_key().
zas_
parents: 516
diff changeset
127
a1267c00e058 Cleanup exif_get_formatted_by_key().
zas_
parents: 516
diff changeset
128 if (strcmp(str + str_len - suffix_len, suffix) != 0) return FALSE;
a1267c00e058 Cleanup exif_get_formatted_by_key().
zas_
parents: 516
diff changeset
129 str[str_len - suffix_len] = '\0';
a1267c00e058 Cleanup exif_get_formatted_by_key().
zas_
parents: 516
diff changeset
130
a1267c00e058 Cleanup exif_get_formatted_by_key().
zas_
parents: 516
diff changeset
131 return TRUE;
a1267c00e058 Cleanup exif_get_formatted_by_key().
zas_
parents: 516
diff changeset
132 }
182
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
133
546
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
134 static gchar *exif_build_fCamera(ExifData *exif)
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
135 {
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
136 gchar *text;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
137 gchar *make = exif_get_data_as_text(exif, "Exif.Image.Make");
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
138 gchar *model = exif_get_data_as_text(exif, "Exif.Image.Model");
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
139 gchar *software = exif_get_data_as_text(exif, "Exif.Image.Software");
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
140 gchar *model2;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
141 gchar *software2;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
142
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
143 if (make)
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
144 {
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
145 g_strstrip(make);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
146
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
147 if (remove_suffix(make, " CORPORATION", 12)) { /* Nikon */ }
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
148 else if (remove_suffix(make, " Corporation", 12)) { /* Pentax */ }
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
149 else if (remove_suffix(make, " OPTICAL CO.,LTD", 16)) { /* OLYMPUS */ };
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
150 }
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
151
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
152 if (model)
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
153 g_strstrip(model);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
154
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
155 if (software)
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
156 {
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
157 gint i;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
158
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
159 g_strstrip(software);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
160
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
161 /* remove superfluous spaces (pentax K100D) */
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
162 for (i = 0; software[i]; i++)
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
163 if (software[i] == ' ' && software[i + 1] == ' ')
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
164 {
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
165 gint j;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
166
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
167 for (j = 1; software[i + j] == ' '; j++);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
168 memmove(software + i + 1, software + i + j, strlen(software + i + j) + 1);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
169 }
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
170 }
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
171
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
172 model2 = remove_common_prefix(make, model);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
173 software2 = remove_common_prefix(model2, software);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
174
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
175 text = g_strdup_printf("%s%s%s%s%s%s", (make) ? make : "", (make && model2) ? " " : "",
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
176 (model2) ? model2 : "",
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
177 (software2 && (make || model2)) ? " (" : "",
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
178 (software2) ? software2 : "",
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
179 (software2 && (make || model2)) ? ")" : "");
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
180
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
181 g_free(make);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
182 g_free(model);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
183 g_free(software);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
184 return text;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
185 }
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
186
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
187 static gchar *exif_build_fDateTime(ExifData *exif)
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
188 {
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
189 gchar *text = exif_get_data_as_text(exif, "Exif.Photo.DateTimeOriginal");
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
190 gchar *subsec = NULL;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
191
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
192 if (text) subsec = exif_get_data_as_text(exif, "Exif.Photo.SubSecTimeOriginal");
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
193 if (!text)
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
194 {
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
195 text = exif_get_data_as_text(exif, "Exif.Image.DateTime");
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
196 if (text) subsec = exif_get_data_as_text(exif, "Exif.Photo.SubSecTime");
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
197 }
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
198 if (subsec)
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
199 {
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
200 gchar *tmp = text;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
201 text = g_strconcat(tmp, ".", subsec, NULL);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
202 g_free(tmp);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
203 g_free(subsec);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
204 }
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
205 return text;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
206 }
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
207
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
208 static gchar *exif_build_fShutterSpeed(ExifData *exif)
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
209 {
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
210 ExifRational *r;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
211
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
212 r = exif_get_rational(exif, "Exif.Photo.ExposureTime", NULL);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
213 if (r && r->num && r->den)
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
214 {
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
215 double n = (double)r->den / (double)r->num;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
216 return g_strdup_printf("%s%.0fs", n > 1.0 ? "1/" : "",
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
217 n > 1.0 ? n : 1.0 / n);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
218 }
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
219 r = exif_get_rational(exif, "Exif.Photo.ShutterSpeedValue", NULL);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
220 if (r && r->num && r->den)
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
221 {
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
222 double n = pow(2.0, exif_rational_to_double(r, TRUE));
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
223
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
224 /* Correct exposure time to avoid values like 1/91s (seen on Minolta DImage 7) */
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
225 if (n > 1.0 && (int)n - ((int)(n/10))*10 == 1) n--;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
226
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
227 return g_strdup_printf("%s%.0fs", n > 1.0 ? "1/" : "",
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
228 n > 1.0 ? floor(n) : 1.0 / n);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
229 }
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
230 return NULL;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
231 }
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
232
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
233 static gchar *exif_build_fAperture(ExifData *exif)
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
234 {
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
235 double n;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
236
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
237 n = exif_get_rational_as_double(exif, "Exif.Photo.FNumber");
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
238 if (n == 0.0) n = exif_get_rational_as_double(exif, "Exif.Photo.ApertureValue");
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
239 if (n == 0.0) return NULL;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
240
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
241 return g_strdup_printf("f/%.1f", n);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
242 }
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
243
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
244 static gchar *exif_build_fExposureBias(ExifData *exif)
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
245 {
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
246 ExifRational *r;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
247 gint sign;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
248 double n;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
249
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
250 r = exif_get_rational(exif, "Exif.Photo.ExposureBiasValue", &sign);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
251 if (!r) return NULL;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
252
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
253 n = exif_rational_to_double(r, sign);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
254 return g_strdup_printf("%+.1f", n);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
255 }
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
256
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
257 static gchar *exif_build_fFocalLength(ExifData *exif)
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
258 {
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
259 double n;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
260
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
261 n = exif_get_rational_as_double(exif, "Exif.Photo.FocalLength");
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
262 if (n == 0.0) return NULL;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
263 return g_strdup_printf("%.0f mm", n);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
264 }
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
265
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
266 static gchar *exif_build_fFocalLength35mmFilm(ExifData *exif)
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
267 {
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
268 gint n;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
269 double f, c;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
270
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
271 if (exif_get_integer(exif, "Exif.Photo.FocalLengthIn35mmFilm", &n) && n != 0)
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
272 {
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
273 return g_strdup_printf("%d mm", n);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
274 }
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
275
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
276 f = exif_get_rational_as_double(exif, "Exif.Photo.FocalLength");
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
277 c = get_crop_factor(exif);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
278
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
279 if (f != 0.0 && c != 0.0)
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
280 {
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
281 return g_strdup_printf("%.0f mm", f * c);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
282 }
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
283
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
284 return NULL;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
285 }
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
286
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
287 static gchar *exif_build_fISOSpeedRating(ExifData *exif)
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
288 {
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
289 gchar *text;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
290
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
291 text = exif_get_data_as_text(exif, "Exif.Photo.ISOSpeedRatings");
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
292 /* kodak may set this instead */
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
293 if (!text) text = exif_get_data_as_text(exif, "Exif.Photo.ExposureIndex");
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
294 return text;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
295 }
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
296
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
297 static gchar *exif_build_fSubjectDistance(ExifData *exif)
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
298 {
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
299 ExifRational *r;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
300 gint sign;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
301 double n;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
302
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
303 r = exif_get_rational(exif, "Exif.Photo.SubjectDistance", &sign);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
304 if (!r) return NULL;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
305
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
306 if ((long)r->num == 0xffffffff) return g_strdup(_("infinity"));
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
307 if ((long)r->num == 0) return g_strdup(_("unknown"));
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
308
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
309 n = exif_rational_to_double(r, sign);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
310 if (n == 0.0) return _("unknown");
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
311 return g_strdup_printf("%.3f m", n);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
312 }
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
313
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
314 static gchar *exif_build_fFlash(ExifData *exif)
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
315 {
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
316 /* grr, flash is a bitmask... */
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
317 GString *string;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
318 gchar *text;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
319 gint n;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
320 gint v;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
321
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
322 if (!exif_get_integer(exif, "Exif.Photo.Flash", &n)) return NULL;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
323
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
324 /* Exif 2.1 only defines first 3 bits */
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
325 if (n <= 0x07) return exif_get_data_as_text(exif, "Exif.Photo.Flash");
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
326
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
327 /* must be Exif 2.2 */
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
328 string = g_string_new("");
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
329
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
330 /* flash fired (bit 0) */
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
331 string = g_string_append(string, (n & 0x01) ? _("yes") : _("no"));
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
332
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
333 /* flash mode (bits 3, 4) */
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
334 v = (n >> 3) & 0x03;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
335 if (v) string = append_comma_text(string, _("mode:"));
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
336 switch (v)
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
337 {
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
338 case 1:
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
339 string = g_string_append(string, _("on"));
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
340 break;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
341 case 2:
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
342 string = g_string_append(string, _("off"));
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
343 break;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
344 case 3:
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
345 string = g_string_append(string, _("auto"));
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
346 break;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
347 }
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
348
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
349 /* return light (bits 1, 2) */
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
350 v = (n >> 1) & 0x03;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
351 if (v == 2) string = append_comma_text(string, _("not detected by strobe"));
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
352 if (v == 3) string = append_comma_text(string, _("detected by strobe"));
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
353
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
354 /* we ignore flash function (bit 5) */
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
355
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
356 /* red-eye (bit 6) */
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
357 if ((n >> 5) & 0x01) string = append_comma_text(string, _("red-eye reduction"));
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
358
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
359 text = string->str;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
360 g_string_free(string, FALSE);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
361 return text;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
362 }
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
363
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
364 static gchar *exif_build_fResolution(ExifData *exif)
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
365 {
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
366 ExifRational *rx, *ry;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
367 gchar *units;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
368 gchar *text;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
369
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
370 rx = exif_get_rational(exif, "Exif.Image.XResolution", NULL);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
371 ry = exif_get_rational(exif, "Exif.Image.YResolution", NULL);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
372 if (!rx || !ry) return NULL;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
373
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
374 units = exif_get_data_as_text(exif, "Exif.Image.ResolutionUnit");
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
375 text = g_strdup_printf("%0.f x %0.f (%s/%s)", rx->den ? (double)rx->num / rx->den : 1.0,
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
376 ry->den ? (double)ry->num / ry->den : 1.0,
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
377 _("dot"), (units) ? units : _("unknown"));
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
378
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
379 g_free(units);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
380 return text;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
381 }
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
382
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
383 static gchar *exif_build_fColorProfile(ExifData *exif)
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
384 {
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
385 const gchar *name = "";
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
386 const gchar *source = "";
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
387 unsigned char *profile_data;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
388 guint profile_len;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
389
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
390 profile_data = exif_get_color_profile(exif, &profile_len);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
391 if (!profile_data)
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
392 {
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
393 gint cs;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
394 gchar *interop_index;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
395
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
396 /* ColorSpace == 1 specifies sRGB per EXIF 2.2 */
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
397 if (!exif_get_integer(exif, "Exif.Photo.ColorSpace", &cs)) cs = 0;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
398 interop_index = exif_get_data_as_text(exif, "Exif.Iop.InteroperabilityIndex");
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
399
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
400 if (cs == 1)
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
401 {
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
402 name = _("sRGB");
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
403 source = "ColorSpace";
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
404 }
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
405 else if (cs == 2 || (interop_index && !strcmp(interop_index, "R03")))
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
406 {
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
407 name = _("AdobeRGB");
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
408 source = (cs == 2) ? "ColorSpace" : "Iop";
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
409 }
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
410
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
411 g_free(interop_index);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
412 }
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
413 else
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
414 {
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
415 source = _("embedded");
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
416 #ifdef HAVE_LCMS
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
417
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
418 {
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
419 cmsHPROFILE profile;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
420
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
421 profile = cmsOpenProfileFromMem(profile_data, profile_len);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
422 if (profile)
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
423 {
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
424 name = cmsTakeProductName(profile);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
425 cmsCloseProfile(profile);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
426 }
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
427 g_free(profile_data);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
428 }
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
429 #endif
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
430 }
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
431 if (name[0] == 0 && source[0] == 0) return NULL;
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
432 return g_strdup_printf("%s (%s)", name, source);
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
433 }
f852eb277913 Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents: 542
diff changeset
434
548
7ada6e5d4de8 Add a pointer to the build function in the formatted exif tags struct
zas_
parents: 547
diff changeset
435
7ada6e5d4de8 Add a pointer to the build function in the formatted exif tags struct
zas_
parents: 547
diff changeset
436 /* List of custom formatted pseudo-exif tags */
7ada6e5d4de8 Add a pointer to the build function in the formatted exif tags struct
zas_
parents: 547
diff changeset
437 #define EXIF_FORMATTED_TAG(name, label) { #name, label, exif_build##_##name }
7ada6e5d4de8 Add a pointer to the build function in the formatted exif tags struct
zas_
parents: 547
diff changeset
438
7ada6e5d4de8 Add a pointer to the build function in the formatted exif tags struct
zas_
parents: 547
diff changeset
439 ExifFormattedText ExifFormattedList[] = {
7ada6e5d4de8 Add a pointer to the build function in the formatted exif tags struct
zas_
parents: 547
diff changeset
440 EXIF_FORMATTED_TAG(fCamera, N_("Camera")),
7ada6e5d4de8 Add a pointer to the build function in the formatted exif tags struct
zas_
parents: 547
diff changeset
441 EXIF_FORMATTED_TAG(fDateTime, N_("Date")),
7ada6e5d4de8 Add a pointer to the build function in the formatted exif tags struct
zas_
parents: 547
diff changeset
442 EXIF_FORMATTED_TAG(fShutterSpeed, N_("Shutter speed")),
7ada6e5d4de8 Add a pointer to the build function in the formatted exif tags struct
zas_
parents: 547
diff changeset
443 EXIF_FORMATTED_TAG(fAperture, N_("Aperture")),
7ada6e5d4de8 Add a pointer to the build function in the formatted exif tags struct
zas_
parents: 547
diff changeset
444 EXIF_FORMATTED_TAG(fExposureBias, N_("Exposure bias")),
7ada6e5d4de8 Add a pointer to the build function in the formatted exif tags struct
zas_
parents: 547
diff changeset
445 EXIF_FORMATTED_TAG(fISOSpeedRating, N_("ISO sensitivity")),
7ada6e5d4de8 Add a pointer to the build function in the formatted exif tags struct
zas_
parents: 547
diff changeset
446 EXIF_FORMATTED_TAG(fFocalLength, N_("Focal length")),
7ada6e5d4de8 Add a pointer to the build function in the formatted exif tags struct
zas_
parents: 547
diff changeset
447 EXIF_FORMATTED_TAG(fFocalLength35mmFilm,N_("Focal length 35mm")),
7ada6e5d4de8 Add a pointer to the build function in the formatted exif tags struct
zas_
parents: 547
diff changeset
448 EXIF_FORMATTED_TAG(fSubjectDistance, N_("Subject distance")),
7ada6e5d4de8 Add a pointer to the build function in the formatted exif tags struct
zas_
parents: 547
diff changeset
449 EXIF_FORMATTED_TAG(fFlash, N_("Flash")),
7ada6e5d4de8 Add a pointer to the build function in the formatted exif tags struct
zas_
parents: 547
diff changeset
450 EXIF_FORMATTED_TAG(fResolution, N_("Resolution")),
7ada6e5d4de8 Add a pointer to the build function in the formatted exif tags struct
zas_
parents: 547
diff changeset
451 EXIF_FORMATTED_TAG(fColorProfile, N_("Color profile")),
7ada6e5d4de8 Add a pointer to the build function in the formatted exif tags struct
zas_
parents: 547
diff changeset
452 { NULL, NULL, NULL }
7ada6e5d4de8 Add a pointer to the build function in the formatted exif tags struct
zas_
parents: 547
diff changeset
453 };
7ada6e5d4de8 Add a pointer to the build function in the formatted exif tags struct
zas_
parents: 547
diff changeset
454
182
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
455 gchar *exif_get_formatted_by_key(ExifData *exif, const gchar *key, gint *key_valid)
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
456 {
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
457 /* must begin with f, else not formatted */
548
7ada6e5d4de8 Add a pointer to the build function in the formatted exif tags struct
zas_
parents: 547
diff changeset
458 if (key[0] == 'f')
182
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
459 {
548
7ada6e5d4de8 Add a pointer to the build function in the formatted exif tags struct
zas_
parents: 547
diff changeset
460 gint i;
442
4b2d7f9af171 Big whitespaces cleanup:
zas_
parents: 438
diff changeset
461
548
7ada6e5d4de8 Add a pointer to the build function in the formatted exif tags struct
zas_
parents: 547
diff changeset
462 if (key_valid) *key_valid = TRUE;
7ada6e5d4de8 Add a pointer to the build function in the formatted exif tags struct
zas_
parents: 547
diff changeset
463
7ada6e5d4de8 Add a pointer to the build function in the formatted exif tags struct
zas_
parents: 547
diff changeset
464 for (i = 0; ExifFormattedList[i].key; i++)
7ada6e5d4de8 Add a pointer to the build function in the formatted exif tags struct
zas_
parents: 547
diff changeset
465 if (strcmp(key, ExifFormattedList[i].key) == 0)
7ada6e5d4de8 Add a pointer to the build function in the formatted exif tags struct
zas_
parents: 547
diff changeset
466 return ExifFormattedList[i].build_func(exif);
7ada6e5d4de8 Add a pointer to the build function in the formatted exif tags struct
zas_
parents: 547
diff changeset
467 }
182
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
468
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
469 if (key_valid) *key_valid = FALSE;
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
470 return NULL;
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
471 }
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
472
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
473 const gchar *exif_get_description_by_key(const gchar *key)
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
474 {
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
475 gint i;
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
476
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
477 if (!key) return NULL;
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
478
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
479 i = 0;
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
480 while (ExifFormattedList[i].key != NULL)
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
481 {
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
482 if (strcmp(key, ExifFormattedList[i].key) == 0) return _(ExifFormattedList[i].description);
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
483 i++;
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
484 }
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
485
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
486 return exif_get_tag_description_by_key(key);
8a417f10ba09 more exiv2 fixes
nadvornik
parents:
diff changeset
487 }
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 182
diff changeset
488
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 182
diff changeset
489 gint exif_get_integer(ExifData *exif, const gchar *key, gint *value)
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 182
diff changeset
490 {
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 182
diff changeset
491 ExifItem *item;
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 182
diff changeset
492
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 182
diff changeset
493 item = exif_get_item(exif, key);
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 182
diff changeset
494 return exif_item_get_integer(item, value);
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 182
diff changeset
495 }
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 182
diff changeset
496
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 182
diff changeset
497 ExifRational *exif_get_rational(ExifData *exif, const gchar *key, gint *sign)
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 182
diff changeset
498 {
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 182
diff changeset
499 ExifItem *item;
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 182
diff changeset
500
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 182
diff changeset
501 item = exif_get_item(exif, key);
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 182
diff changeset
502 return exif_item_get_rational(item, sign);
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 182
diff changeset
503 }
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 182
diff changeset
504
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 182
diff changeset
505 gchar *exif_get_data_as_text(ExifData *exif, const gchar *key)
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 182
diff changeset
506 {
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 182
diff changeset
507 ExifItem *item;
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 182
diff changeset
508 gchar *text;
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 182
diff changeset
509 gint key_valid;
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 182
diff changeset
510
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 182
diff changeset
511 if (!key) return NULL;
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 182
diff changeset
512
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 182
diff changeset
513 text = exif_get_formatted_by_key(exif, key, &key_valid);
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 182
diff changeset
514 if (key_valid) return text;
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 182
diff changeset
515
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 182
diff changeset
516 item = exif_get_item(exif, key);
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 182
diff changeset
517 if (item) return exif_item_get_data_as_text(item);
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 182
diff changeset
518
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 182
diff changeset
519 return NULL;
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 182
diff changeset
520 }
188
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 184
diff changeset
521
449
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
522 ExifData *exif_read_fd(FileData *fd)
188
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 184
diff changeset
523 {
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 184
diff changeset
524 gchar *sidecar_path = NULL;
190
c2923efebfdc whitelist of files that can have an xmp sidecar, sample external command
nadvornik
parents: 188
diff changeset
525
204
d662d680250d improved xmp vs. legacy metadata handling
nadvornik
parents: 190
diff changeset
526 if (!fd) return NULL;
d662d680250d improved xmp vs. legacy metadata handling
nadvornik
parents: 190
diff changeset
527
212
c7021159079d differentiate among normal image, raw image and metadata
nadvornik
parents: 204
diff changeset
528 if (filter_file_class(fd->extension, FORMAT_CLASS_RAWIMAGE))
188
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 184
diff changeset
529 {
542
bdd86d86c8d3 Move variable declaration and affectation near where it is used.
zas_
parents: 541
diff changeset
530 GList *work;
bdd86d86c8d3 Move variable declaration and affectation near where it is used.
zas_
parents: 541
diff changeset
531
bdd86d86c8d3 Move variable declaration and affectation near where it is used.
zas_
parents: 541
diff changeset
532 work = fd->parent ? fd->parent->sidecar_files : fd->sidecar_files;
516
b7e99bfeadc9 Convert the minority of while() to while ().
zas_
parents: 507
diff changeset
533 while (work)
188
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 184
diff changeset
534 {
190
c2923efebfdc whitelist of files that can have an xmp sidecar, sample external command
nadvornik
parents: 188
diff changeset
535 FileData *sfd = work->data;
c2923efebfdc whitelist of files that can have an xmp sidecar, sample external command
nadvornik
parents: 188
diff changeset
536 work = work->next;
c2923efebfdc whitelist of files that can have an xmp sidecar, sample external command
nadvornik
parents: 188
diff changeset
537 if (strcasecmp(sfd->extension, ".xmp") == 0)
c2923efebfdc whitelist of files that can have an xmp sidecar, sample external command
nadvornik
parents: 188
diff changeset
538 {
c2923efebfdc whitelist of files that can have an xmp sidecar, sample external command
nadvornik
parents: 188
diff changeset
539 sidecar_path = sfd->path;
c2923efebfdc whitelist of files that can have an xmp sidecar, sample external command
nadvornik
parents: 188
diff changeset
540 break;
c2923efebfdc whitelist of files that can have an xmp sidecar, sample external command
nadvornik
parents: 188
diff changeset
541 }
188
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 184
diff changeset
542 }
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 184
diff changeset
543 }
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 184
diff changeset
544
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 184
diff changeset
545
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 184
diff changeset
546 // FIXME: some caching would be nice
449
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
547 return exif_read(fd->path, sidecar_path);
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
548 }
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
549
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
550
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
551
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
552 /* embedded icc in jpeg */
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
553
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
554
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
555 #define JPEG_MARKER 0xFF
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
556 #define JPEG_MARKER_SOI 0xD8
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
557 #define JPEG_MARKER_EOI 0xD9
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
558 #define JPEG_MARKER_APP1 0xE1
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
559 #define JPEG_MARKER_APP2 0xE2
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
560
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
561 /* jpeg container format:
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
562 all data markers start with 0XFF
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
563 2 byte long file start and end markers: 0xFFD8(SOI) and 0XFFD9(EOI)
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
564 4 byte long data segment markers in format: 0xFFTTSSSSNNN...
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
565 FF: 1 byte standard marker identifier
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
566 TT: 1 byte data type
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
567 SSSS: 2 bytes in Motorola byte alignment for length of the data.
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
568 This value includes these 2 bytes in the count, making actual
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
569 length of NN... == SSSS - 2.
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
570 NNN.: the data in this segment
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
571 */
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
572
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
573 gint exif_jpeg_segment_find(unsigned char *data, guint size,
547
95e0449d8f29 Indentation fix.
zas_
parents: 546
diff changeset
574 guchar app_marker, const gchar *magic, guint magic_len,
95e0449d8f29 Indentation fix.
zas_
parents: 546
diff changeset
575 guint *seg_offset, guint *seg_length)
449
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
576 {
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
577 guchar marker = 0;
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
578 guint offset = 0;
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
579 guint length = 0;
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
580
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
581 while (marker != app_marker &&
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
582 marker != JPEG_MARKER_EOI)
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
583 {
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
584 offset += length;
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
585 length = 2;
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
586
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
587 if (offset + 2 >= size ||
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
588 data[offset] != JPEG_MARKER) return FALSE;
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
589
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
590 marker = data[offset + 1];
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
591 if (marker != JPEG_MARKER_SOI &&
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
592 marker != JPEG_MARKER_EOI)
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
593 {
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
594 if (offset + 4 >= size) return FALSE;
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
595 length += ((guint)data[offset + 2] << 8) + data[offset + 3];
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
596 }
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
597 }
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
598
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
599 if (marker == app_marker &&
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
600 offset + length < size &&
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
601 length >= 4 + magic_len &&
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
602 memcmp(data + offset + 4, magic, magic_len) == 0)
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
603 {
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
604 *seg_offset = offset + 4;
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
605 *seg_length = length - 4;
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
606 return TRUE;
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
607 }
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
608
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
609 return FALSE;
188
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 184
diff changeset
610 }
449
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
611
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
612 gint exif_jpeg_parse_color(ExifData *exif, unsigned char *data, guint size)
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
613 {
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
614 guint seg_offset = 0;
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
615 guint seg_length = 0;
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
616 guint chunk_offset[255];
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
617 guint chunk_length[255];
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
618 guint chunk_count = 0;
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
619
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
620 /* For jpeg/jfif, ICC color profile data can be in more than one segment.
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
621 the data is in APP2 data segments that start with "ICC_PROFILE\x00\xNN\xTT"
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
622 NN = segment number for data
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
623 TT = total number of ICC segments (TT in each ICC segment should match)
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
624 */
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
625
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
626 while (exif_jpeg_segment_find(data + seg_offset + seg_length,
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
627 size - seg_offset - seg_length,
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
628 JPEG_MARKER_APP2,
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
629 "ICC_PROFILE\x00", 12,
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
630 &seg_offset, &seg_length))
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
631 {
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
632 guchar chunk_num;
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
633 guchar chunk_tot;
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
634
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
635 if (seg_length < 14) return FALSE;
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
636
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
637 chunk_num = data[seg_offset + 12];
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
638 chunk_tot = data[seg_offset + 13];
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
639
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
640 if (chunk_num == 0 || chunk_tot == 0) return FALSE;
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
641
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
642 if (chunk_count == 0)
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
643 {
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
644 guint i;
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
645
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
646 chunk_count = (guint)chunk_tot;
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
647 for (i = 0; i < chunk_count; i++) chunk_offset[i] = 0;
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
648 for (i = 0; i < chunk_count; i++) chunk_length[i] = 0;
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
649 }
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
650
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
651 if (chunk_tot != chunk_count ||
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
652 chunk_num > chunk_count) return FALSE;
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
653
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
654 chunk_num--;
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
655 chunk_offset[chunk_num] = seg_offset + 14;
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
656 chunk_length[chunk_num] = seg_length - 14;
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
657 }
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
658
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
659 if (chunk_count > 0)
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
660 {
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
661 unsigned char *cp_data;
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
662 guint cp_length = 0;
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
663 guint i;
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
664
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
665 for (i = 0; i < chunk_count; i++) cp_length += chunk_length[i];
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
666 cp_data = g_malloc(cp_length);
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
667
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
668 for (i = 0; i < chunk_count; i++)
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
669 {
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
670 if (chunk_offset[i] == 0)
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
671 {
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
672 /* error, we never saw this chunk */
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
673 g_free(cp_data);
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
674 return FALSE;
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
675 }
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
676 memcpy(cp_data, data + chunk_offset[i], chunk_length[i]);
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
677 }
506
fc9c8a3e1a8b Handle the newline in DEBUG_N() macro instead of adding one
zas_
parents: 495
diff changeset
678 DEBUG_1("Found embedded icc profile in jpeg");
449
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
679 exif_add_jpeg_color_profile(exif, cp_data, cp_length);
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
680
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
681 return TRUE;
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
682 }
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
683
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
684 return FALSE;
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 442
diff changeset
685 }