Mercurial > geeqie
annotate src/exif-common.c @ 1245:13d4501bfa7a
compilation fixes for older exiv2
author | nadvornik |
---|---|
date | Wed, 21 Jan 2009 18:16:26 +0000 |
parents | ebfd305d902e |
children | 8b89e3ff286b |
rev | line source |
---|---|
182 | 1 /* |
541 | 2 * Geeqie |
3 * (C) 2006 John Ellis | |
475 | 4 * Copyright (C) 2008 The Geeqie Team |
182 | 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> | |
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 | 31 #include <glib.h> |
32 | |
33 #include "intl.h" | |
34 | |
281 | 35 #include "main.h" |
182 | 36 #include "exif.h" |
37 | |
586 | 38 #include "filedata.h" |
39 #include "filefilter.h" | |
844 | 40 #include "filecache.h" |
182 | 41 #include "format_raw.h" |
42 #include "ui_fileops.h" | |
1224 | 43 #include "cache.h" |
182 | 44 |
45 | |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
46 static gdouble exif_rational_to_double(ExifRational *r, gint sign) |
182 | 47 { |
48 if (!r || r->den == 0.0) return 0.0; | |
49 | |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
50 if (sign) return (gdouble)((gint)r->num) / (gdouble)((gint)r->den); |
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
51 return (gdouble)r->num / r->den; |
182 | 52 } |
53 | |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
54 static gdouble exif_get_rational_as_double(ExifData *exif, const gchar *key) |
182 | 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 | |
222
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
212
diff
changeset
|
71 static gchar *remove_common_prefix(gchar *s, gchar *t) |
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 gint i; |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
212
diff
changeset
|
74 |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
212
diff
changeset
|
75 if (!s || !t) return t; |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
212
diff
changeset
|
76 |
297
76cdc3f1fe34
Fix broken remove_common_prefix(), fCamera didn't display model as it should.
zas_
parents:
281
diff
changeset
|
77 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
|
78 ; |
442 | 79 if (!i) |
222
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
212
diff
changeset
|
80 return t; |
300 | 81 if (s[i-1] == ' ' || !s[i]) |
222
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
212
diff
changeset
|
82 { |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
212
diff
changeset
|
83 while (t[i] == ' ') |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
212
diff
changeset
|
84 i++; |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
212
diff
changeset
|
85 return t + i; |
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 return s; |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
212
diff
changeset
|
88 } |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
212
diff
changeset
|
89 |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
90 static gdouble get_crop_factor(ExifData *exif) |
222
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
212
diff
changeset
|
91 { |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
92 gdouble res_unit_tbl[] = {0.0, 25.4, 25.4, 10.0, 1.0, 0.001 }; |
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
93 gdouble xres = exif_get_rational_as_double(exif, "Exif.Photo.FocalPlaneXResolution"); |
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
94 gdouble yres = exif_get_rational_as_double(exif, "Exif.Photo.FocalPlaneYResolution"); |
922 | 95 gint res_unit; |
96 gint w, h; | |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
97 gdouble xsize, ysize, size, ratio; |
442 | 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; | |
222
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
212
diff
changeset
|
103 |
442 | 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 | |
222
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
212
diff
changeset
|
120 } |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
212
diff
changeset
|
121 |
519 | 122 static gint 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 | |
922 | 129 if (strcmp(str + str_len - suffix_len, suffix) != 0) return FALSE; |
519 | 130 str[str_len - suffix_len] = '\0'; |
131 | |
132 return TRUE; | |
133 } | |
182 | 134 |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
135 static gchar *exif_build_formatted_Camera(ExifData *exif) |
546
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
136 { |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
137 gchar *text; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
138 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
|
139 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
|
140 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
|
141 gchar *model2; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
142 gchar *software2; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
143 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
144 if (make) |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
145 { |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
146 g_strstrip(make); |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
147 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
148 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
|
149 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
|
150 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
|
151 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
152 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
153 if (model) |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
154 g_strstrip(model); |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
155 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
156 if (software) |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
157 { |
985
8cef771ff0fb
Minor optimization: no need to copy the whole remaining of the string, just copy next char.
zas_
parents:
922
diff
changeset
|
158 gint i, j; |
546
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
159 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
160 g_strstrip(software); |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
161 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
162 /* remove superfluous spaces (pentax K100D) */ |
985
8cef771ff0fb
Minor optimization: no need to copy the whole remaining of the string, just copy next char.
zas_
parents:
922
diff
changeset
|
163 for (i = 0, j = 0; software[i]; i++, j++) |
8cef771ff0fb
Minor optimization: no need to copy the whole remaining of the string, just copy next char.
zas_
parents:
922
diff
changeset
|
164 { |
546
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
165 if (software[i] == ' ' && software[i + 1] == ' ') |
985
8cef771ff0fb
Minor optimization: no need to copy the whole remaining of the string, just copy next char.
zas_
parents:
922
diff
changeset
|
166 i++; |
8cef771ff0fb
Minor optimization: no need to copy the whole remaining of the string, just copy next char.
zas_
parents:
922
diff
changeset
|
167 if (i != j) software[j] = software[i]; |
8cef771ff0fb
Minor optimization: no need to copy the whole remaining of the string, just copy next char.
zas_
parents:
922
diff
changeset
|
168 } |
8cef771ff0fb
Minor optimization: no need to copy the whole remaining of the string, just copy next char.
zas_
parents:
922
diff
changeset
|
169 software[j] = '\0'; |
546
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 |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
187 static gchar *exif_build_formatted_DateTime(ExifData *exif) |
546
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 |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
208 static gchar *exif_build_formatted_ShutterSpeed(ExifData *exif) |
546
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 { |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
215 gdouble n = (gdouble)r->den / (gdouble)r->num; |
546
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 { |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
222 gdouble n = pow(2.0, exif_rational_to_double(r, TRUE)); |
546
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) */ |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
225 if (n > 1.0 && (gint)n - ((gint)(n/10))*10 == 1) n--; |
546
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 |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
233 static gchar *exif_build_formatted_Aperture(ExifData *exif) |
546
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
234 { |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
235 gdouble n; |
546
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 |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
244 static gchar *exif_build_formatted_ExposureBias(ExifData *exif) |
546
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; |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
248 gdouble n; |
546
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 |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
257 static gchar *exif_build_formatted_FocalLength(ExifData *exif) |
546
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
258 { |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
259 gdouble n; |
546
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 |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
266 static gchar *exif_build_formatted_FocalLength35mmFilm(ExifData *exif) |
546
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; |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
269 gdouble f, c; |
546
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"); |
922 | 277 if (f == 0.0) return NULL; |
546
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
278 |
922 | 279 c = get_crop_factor(exif); |
280 if (c == 0.0) return NULL; | |
546
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
281 |
922 | 282 return g_strdup_printf("%.0f mm", f * c); |
546
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 |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
285 static gchar *exif_build_formatted_ISOSpeedRating(ExifData *exif) |
546
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 gchar *text; |
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 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
|
290 /* kodak may set this instead */ |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
291 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
|
292 return text; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
293 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
294 |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
295 static gchar *exif_build_formatted_SubjectDistance(ExifData *exif) |
546
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 ExifRational *r; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
298 gint sign; |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
299 gdouble n; |
546
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
300 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
301 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
|
302 if (!r) return NULL; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
303 |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
304 if ((glong)r->num == (glong)0xffffffff) return g_strdup(_("infinity")); |
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
305 if ((glong)r->num == 0) return g_strdup(_("unknown")); |
546
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
306 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
307 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
|
308 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
|
309 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
|
310 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
311 |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
312 static gchar *exif_build_formatted_Flash(ExifData *exif) |
546
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 /* grr, flash is a bitmask... */ |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
315 GString *string; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
316 gchar *text; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
317 gint n; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
318 gint v; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
319 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
320 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
|
321 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
322 /* 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
|
323 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
|
324 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
325 /* must be Exif 2.2 */ |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
326 string = g_string_new(""); |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
327 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
328 /* flash fired (bit 0) */ |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
329 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
|
330 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
331 /* flash mode (bits 3, 4) */ |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
332 v = (n >> 3) & 0x03; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
333 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
|
334 switch (v) |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
335 { |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
336 case 1: |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
337 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
|
338 break; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
339 case 2: |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
340 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
|
341 break; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
342 case 3: |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
343 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
|
344 break; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
345 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
346 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
347 /* return light (bits 1, 2) */ |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
348 v = (n >> 1) & 0x03; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
349 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
|
350 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
|
351 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
352 /* 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
|
353 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
354 /* red-eye (bit 6) */ |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
355 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
|
356 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
357 text = string->str; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
358 g_string_free(string, FALSE); |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
359 return text; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
360 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
361 |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
362 static gchar *exif_build_formatted_Resolution(ExifData *exif) |
546
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 ExifRational *rx, *ry; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
365 gchar *units; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
366 gchar *text; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
367 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
368 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
|
369 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
|
370 if (!rx || !ry) return NULL; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
371 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
372 units = exif_get_data_as_text(exif, "Exif.Image.ResolutionUnit"); |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
373 text = g_strdup_printf("%0.f x %0.f (%s/%s)", rx->den ? (gdouble)rx->num / rx->den : 1.0, |
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
374 ry->den ? (gdouble)ry->num / ry->den : 1.0, |
546
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
375 _("dot"), (units) ? units : _("unknown")); |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
376 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
377 g_free(units); |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
378 return text; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
379 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
380 |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
381 static gchar *exif_build_formatted_ColorProfile(ExifData *exif) |
546
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 const gchar *name = ""; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
384 const gchar *source = ""; |
922 | 385 guchar *profile_data; |
546
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
386 guint profile_len; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
387 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
388 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
|
389 if (!profile_data) |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
390 { |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
391 gint cs; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
392 gchar *interop_index; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
393 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
394 /* 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
|
395 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
|
396 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
|
397 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
398 if (cs == 1) |
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 name = _("sRGB"); |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
401 source = "ColorSpace"; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
402 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
403 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
|
404 { |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
405 name = _("AdobeRGB"); |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
406 source = (cs == 2) ? "ColorSpace" : "Iop"; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
407 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
408 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
409 g_free(interop_index); |
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 else |
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 source = _("embedded"); |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
414 #ifdef HAVE_LCMS |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
415 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
416 { |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
417 cmsHPROFILE profile; |
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 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
|
420 if (profile) |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
421 { |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
422 name = cmsTakeProductName(profile); |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
423 cmsCloseProfile(profile); |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
424 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
425 g_free(profile_data); |
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 #endif |
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 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
|
430 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
|
431 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
432 |
1052 | 433 static gchar *exif_build_formatted_GPSPosition(ExifData *exif) |
434 { | |
435 GString *string; | |
436 gchar *text, *ref; | |
437 ExifRational *value; | |
438 ExifItem *item; | |
439 guint i; | |
440 gdouble p, p3; | |
441 gulong p1, p2; | |
442 | |
443 string = g_string_new(""); | |
444 | |
445 item = exif_get_item(exif, "Exif.GPSInfo.GPSLatitude"); | |
446 ref = exif_get_data_as_text(exif, "Exif.GPSInfo.GPSLatitudeRef"); | |
447 if (item && ref) | |
448 { | |
449 p = 0; | |
450 for (i = 0; i < exif_item_get_elements(item); i++) | |
451 { | |
452 value = exif_item_get_rational(item, NULL, i); | |
453 if (value && value->num && value->den) | |
454 p += (gdouble)value->num / (gdouble)value->den / pow(60.0, (gdouble)i); | |
455 } | |
456 p1 = (gint)p; | |
457 p2 = (gint)((p - p1)*60); | |
458 p3 = ((p - p1)*60 - p2)*60; | |
459 | |
1164 | 460 g_string_append_printf(string, "%0lu° %0lu' %0.2f\" %.1s", p1, p2, p3, ref); |
1052 | 461 } // if (item && ref) |
462 | |
463 item = exif_get_item(exif, "Exif.GPSInfo.GPSLongitude"); | |
464 ref = exif_get_data_as_text(exif, "Exif.GPSInfo.GPSLongitudeRef"); | |
465 if (item && ref) | |
466 { | |
467 p = 0; | |
468 for (i = 0; i < exif_item_get_elements(item); i++) | |
469 { | |
470 value = exif_item_get_rational(item, NULL, i); | |
471 if (value && value->num && value->den) | |
472 p += (gdouble)value->num / (gdouble)value->den / pow(60.0, (gdouble)i); | |
473 } | |
474 p1 = (gint)p; | |
475 p2 = (gint)((p - p1)*60); | |
476 p3 = ((p - p1)*60 - p2)*60; | |
477 | |
1164 | 478 g_string_append_printf(string, ", %0lu° %0lu' %0.2f\" %.1s", p1, p2, p3, ref); |
1052 | 479 } // if (item && ref) |
480 | |
481 text = string->str; | |
482 g_string_free(string, FALSE); | |
483 | |
484 return text; | |
485 } // static gchar *exif_build_forma... | |
486 | |
487 static gchar *exif_build_formatted_GPSAltitude(ExifData *exif) | |
488 { | |
489 ExifRational *r; | |
490 ExifItem *item; | |
491 gdouble alt; | |
492 gint ref; | |
493 | |
494 item = exif_get_item(exif, "Exif.GPSInfo.GPSAltitudeRef"); | |
495 r = exif_get_rational(exif, "Exif.GPSInfo.GPSAltitude", NULL); | |
496 | |
497 if (!r || !item) return NULL; | |
498 | |
499 alt = exif_rational_to_double(r, 0); | |
500 exif_item_get_integer(item, &ref); | |
501 | |
502 return g_strdup_printf("%0.f m %s", alt, (ref==0)?_("Above Sea Level"):_("Below Sea Level")); | |
503 } | |
504 | |
548
7ada6e5d4de8
Add a pointer to the build function in the formatted exif tags struct
zas_
parents:
547
diff
changeset
|
505 |
7ada6e5d4de8
Add a pointer to the build function in the formatted exif tags struct
zas_
parents:
547
diff
changeset
|
506 /* List of custom formatted pseudo-exif tags */ |
1189 | 507 #define EXIF_FORMATTED_TAG(name, label) { EXIF_FORMATTED()#name, label, exif_build_formatted##_##name } |
548
7ada6e5d4de8
Add a pointer to the build function in the formatted exif tags struct
zas_
parents:
547
diff
changeset
|
508 |
7ada6e5d4de8
Add a pointer to the build function in the formatted exif tags struct
zas_
parents:
547
diff
changeset
|
509 ExifFormattedText ExifFormattedList[] = { |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
510 EXIF_FORMATTED_TAG(Camera, N_("Camera")), |
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
511 EXIF_FORMATTED_TAG(DateTime, N_("Date")), |
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
512 EXIF_FORMATTED_TAG(ShutterSpeed, N_("Shutter speed")), |
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
513 EXIF_FORMATTED_TAG(Aperture, N_("Aperture")), |
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
514 EXIF_FORMATTED_TAG(ExposureBias, N_("Exposure bias")), |
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
515 EXIF_FORMATTED_TAG(ISOSpeedRating, N_("ISO sensitivity")), |
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
516 EXIF_FORMATTED_TAG(FocalLength, N_("Focal length")), |
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
517 EXIF_FORMATTED_TAG(FocalLength35mmFilm, N_("Focal length 35mm")), |
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
518 EXIF_FORMATTED_TAG(SubjectDistance, N_("Subject distance")), |
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
519 EXIF_FORMATTED_TAG(Flash, N_("Flash")), |
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
520 EXIF_FORMATTED_TAG(Resolution, N_("Resolution")), |
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
521 EXIF_FORMATTED_TAG(ColorProfile, N_("Color profile")), |
1052 | 522 EXIF_FORMATTED_TAG(GPSPosition, N_("GPS position")), |
523 EXIF_FORMATTED_TAG(GPSAltitude, N_("GPS altitude")), | |
548
7ada6e5d4de8
Add a pointer to the build function in the formatted exif tags struct
zas_
parents:
547
diff
changeset
|
524 { NULL, NULL, NULL } |
7ada6e5d4de8
Add a pointer to the build function in the formatted exif tags struct
zas_
parents:
547
diff
changeset
|
525 }; |
7ada6e5d4de8
Add a pointer to the build function in the formatted exif tags struct
zas_
parents:
547
diff
changeset
|
526 |
182 | 527 gchar *exif_get_formatted_by_key(ExifData *exif, const gchar *key, gint *key_valid) |
528 { | |
1189 | 529 if (strncmp(key, EXIF_FORMATTED(), EXIF_FORMATTED_LEN) == 0) |
182 | 530 { |
548
7ada6e5d4de8
Add a pointer to the build function in the formatted exif tags struct
zas_
parents:
547
diff
changeset
|
531 gint i; |
442 | 532 |
548
7ada6e5d4de8
Add a pointer to the build function in the formatted exif tags struct
zas_
parents:
547
diff
changeset
|
533 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
|
534 |
1189 | 535 key += EXIF_FORMATTED_LEN; |
548
7ada6e5d4de8
Add a pointer to the build function in the formatted exif tags struct
zas_
parents:
547
diff
changeset
|
536 for (i = 0; ExifFormattedList[i].key; i++) |
1189 | 537 if (strcmp(key, ExifFormattedList[i].key + EXIF_FORMATTED_LEN) == 0) |
548
7ada6e5d4de8
Add a pointer to the build function in the formatted exif tags struct
zas_
parents:
547
diff
changeset
|
538 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
|
539 } |
182 | 540 |
541 if (key_valid) *key_valid = FALSE; | |
542 return NULL; | |
543 } | |
544 | |
1053
77ca9a5d42be
fixed charset of exiv2 strings in non-utf8 locales
nadvornik
parents:
1052
diff
changeset
|
545 gchar *exif_get_description_by_key(const gchar *key) |
182 | 546 { |
547 if (!key) return NULL; | |
548 | |
1189 | 549 if (strncmp(key, EXIF_FORMATTED(), EXIF_FORMATTED_LEN) == 0) |
568
04d4bdf5a2d8
exif_get_description_by_key(): check for "formatted." prefix, and optimize.
zas_
parents:
567
diff
changeset
|
550 { |
922 | 551 gint i; |
552 | |
1189 | 553 key += EXIF_FORMATTED_LEN; |
568
04d4bdf5a2d8
exif_get_description_by_key(): check for "formatted." prefix, and optimize.
zas_
parents:
567
diff
changeset
|
554 for (i = 0; ExifFormattedList[i].key; i++) |
1189 | 555 if (strcmp(key, ExifFormattedList[i].key + EXIF_FORMATTED_LEN) == 0) |
1053
77ca9a5d42be
fixed charset of exiv2 strings in non-utf8 locales
nadvornik
parents:
1052
diff
changeset
|
556 return g_strdup(_(ExifFormattedList[i].description)); |
568
04d4bdf5a2d8
exif_get_description_by_key(): check for "formatted." prefix, and optimize.
zas_
parents:
567
diff
changeset
|
557 } |
182 | 558 |
559 return exif_get_tag_description_by_key(key); | |
560 } | |
184 | 561 |
562 gint exif_get_integer(ExifData *exif, const gchar *key, gint *value) | |
563 { | |
564 ExifItem *item; | |
565 | |
566 item = exif_get_item(exif, key); | |
567 return exif_item_get_integer(item, value); | |
568 } | |
569 | |
570 ExifRational *exif_get_rational(ExifData *exif, const gchar *key, gint *sign) | |
571 { | |
572 ExifItem *item; | |
573 | |
574 item = exif_get_item(exif, key); | |
1052 | 575 return exif_item_get_rational(item, sign, 0); |
184 | 576 } |
577 | |
578 gchar *exif_get_data_as_text(ExifData *exif, const gchar *key) | |
579 { | |
580 ExifItem *item; | |
581 gchar *text; | |
582 gint key_valid; | |
583 | |
584 if (!key) return NULL; | |
585 | |
586 text = exif_get_formatted_by_key(exif, key, &key_valid); | |
587 if (key_valid) return text; | |
588 | |
589 item = exif_get_item(exif, key); | |
590 if (item) return exif_item_get_data_as_text(item); | |
591 | |
592 return NULL; | |
593 } | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
184
diff
changeset
|
594 |
844 | 595 |
596 static FileCacheData *exif_cache; | |
597 | |
598 void exif_release_cb(FileData *fd) | |
599 { | |
600 exif_free(fd->exif); | |
601 fd->exif = NULL; | |
602 } | |
603 | |
449 | 604 ExifData *exif_read_fd(FileData *fd) |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
184
diff
changeset
|
605 { |
1224 | 606 gchar *sidecar_path; |
190
c2923efebfdc
whitelist of files that can have an xmp sidecar, sample external command
nadvornik
parents:
188
diff
changeset
|
607 |
204 | 608 if (!fd) return NULL; |
844 | 609 |
610 if (!exif_cache) exif_cache = file_cache_new(exif_release_cb, 4); | |
611 | |
612 if (file_cache_get(exif_cache, fd)) return fd->exif; | |
1224 | 613 |
614 /* CACHE_TYPE_XMP_METADATA file should exist only if the metadata are | |
615 * not writable directly, thus it should contain the most up-to-date version */ | |
616 sidecar_path = cache_find_location(CACHE_TYPE_XMP_METADATA, fd->path); | |
204 | 617 |
1224 | 618 if (!sidecar_path) sidecar_path = file_data_get_sidecar_path(fd, TRUE); |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
184
diff
changeset
|
619 |
1203
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1189
diff
changeset
|
620 fd->exif = exif_read(fd->path, sidecar_path, fd->modified_xmp); |
1224 | 621 |
622 g_free(sidecar_path); | |
844 | 623 return fd->exif; |
449 | 624 } |
625 | |
1203
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1189
diff
changeset
|
626 |
844 | 627 void exif_free_fd(FileData *fd, ExifData *exif) |
628 { | |
629 if (!fd) return; | |
630 g_assert(fd->exif == exif); | |
631 | |
632 file_cache_put(exif_cache, fd, 1); | |
633 } | |
449 | 634 |
635 /* embedded icc in jpeg */ | |
636 | |
637 | |
638 #define JPEG_MARKER 0xFF | |
639 #define JPEG_MARKER_SOI 0xD8 | |
640 #define JPEG_MARKER_EOI 0xD9 | |
641 #define JPEG_MARKER_APP1 0xE1 | |
642 #define JPEG_MARKER_APP2 0xE2 | |
643 | |
644 /* jpeg container format: | |
645 all data markers start with 0XFF | |
646 2 byte long file start and end markers: 0xFFD8(SOI) and 0XFFD9(EOI) | |
647 4 byte long data segment markers in format: 0xFFTTSSSSNNN... | |
648 FF: 1 byte standard marker identifier | |
649 TT: 1 byte data type | |
650 SSSS: 2 bytes in Motorola byte alignment for length of the data. | |
651 This value includes these 2 bytes in the count, making actual | |
652 length of NN... == SSSS - 2. | |
653 NNN.: the data in this segment | |
654 */ | |
655 | |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
656 gint exif_jpeg_segment_find(guchar *data, guint size, |
547 | 657 guchar app_marker, const gchar *magic, guint magic_len, |
658 guint *seg_offset, guint *seg_length) | |
449 | 659 { |
660 guchar marker = 0; | |
661 guint offset = 0; | |
662 guint length = 0; | |
663 | |
664 while (marker != app_marker && | |
665 marker != JPEG_MARKER_EOI) | |
666 { | |
667 offset += length; | |
668 length = 2; | |
669 | |
670 if (offset + 2 >= size || | |
671 data[offset] != JPEG_MARKER) return FALSE; | |
672 | |
673 marker = data[offset + 1]; | |
674 if (marker != JPEG_MARKER_SOI && | |
675 marker != JPEG_MARKER_EOI) | |
676 { | |
677 if (offset + 4 >= size) return FALSE; | |
678 length += ((guint)data[offset + 2] << 8) + data[offset + 3]; | |
679 } | |
680 } | |
681 | |
682 if (marker == app_marker && | |
683 offset + length < size && | |
684 length >= 4 + magic_len && | |
685 memcmp(data + offset + 4, magic, magic_len) == 0) | |
686 { | |
687 *seg_offset = offset + 4; | |
688 *seg_length = length - 4; | |
689 return TRUE; | |
690 } | |
691 | |
692 return FALSE; | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
184
diff
changeset
|
693 } |
449 | 694 |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
695 gint exif_jpeg_parse_color(ExifData *exif, guchar *data, guint size) |
449 | 696 { |
697 guint seg_offset = 0; | |
698 guint seg_length = 0; | |
699 guint chunk_offset[255]; | |
700 guint chunk_length[255]; | |
701 guint chunk_count = 0; | |
702 | |
703 /* For jpeg/jfif, ICC color profile data can be in more than one segment. | |
704 the data is in APP2 data segments that start with "ICC_PROFILE\x00\xNN\xTT" | |
705 NN = segment number for data | |
706 TT = total number of ICC segments (TT in each ICC segment should match) | |
707 */ | |
708 | |
709 while (exif_jpeg_segment_find(data + seg_offset + seg_length, | |
710 size - seg_offset - seg_length, | |
711 JPEG_MARKER_APP2, | |
712 "ICC_PROFILE\x00", 12, | |
713 &seg_offset, &seg_length)) | |
714 { | |
715 guchar chunk_num; | |
716 guchar chunk_tot; | |
717 | |
718 if (seg_length < 14) return FALSE; | |
719 | |
720 chunk_num = data[seg_offset + 12]; | |
721 chunk_tot = data[seg_offset + 13]; | |
722 | |
723 if (chunk_num == 0 || chunk_tot == 0) return FALSE; | |
724 | |
725 if (chunk_count == 0) | |
726 { | |
727 guint i; | |
728 | |
729 chunk_count = (guint)chunk_tot; | |
730 for (i = 0; i < chunk_count; i++) chunk_offset[i] = 0; | |
731 for (i = 0; i < chunk_count; i++) chunk_length[i] = 0; | |
732 } | |
733 | |
734 if (chunk_tot != chunk_count || | |
735 chunk_num > chunk_count) return FALSE; | |
736 | |
737 chunk_num--; | |
738 chunk_offset[chunk_num] = seg_offset + 14; | |
739 chunk_length[chunk_num] = seg_length - 14; | |
740 } | |
741 | |
742 if (chunk_count > 0) | |
743 { | |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
744 guchar *cp_data; |
449 | 745 guint cp_length = 0; |
746 guint i; | |
747 | |
748 for (i = 0; i < chunk_count; i++) cp_length += chunk_length[i]; | |
749 cp_data = g_malloc(cp_length); | |
750 | |
751 for (i = 0; i < chunk_count; i++) | |
752 { | |
753 if (chunk_offset[i] == 0) | |
754 { | |
755 /* error, we never saw this chunk */ | |
756 g_free(cp_data); | |
757 return FALSE; | |
758 } | |
759 memcpy(cp_data, data + chunk_offset[i], chunk_length[i]); | |
760 } | |
506
fc9c8a3e1a8b
Handle the newline in DEBUG_N() macro instead of adding one
zas_
parents:
495
diff
changeset
|
761 DEBUG_1("Found embedded icc profile in jpeg"); |
449 | 762 exif_add_jpeg_color_profile(exif, cp_data, cp_length); |
763 | |
764 return TRUE; | |
765 } | |
766 | |
767 return FALSE; | |
768 } | |
1055
1646720364cf
Adding a vim modeline to all files - patch by Klaus Ethgen
nadvornik
parents:
1053
diff
changeset
|
769 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ |