Mercurial > geeqie
annotate src/exif-common.c @ 1056:5a5784eb61df
Fixed degree symbol encoding
author | nadvornik |
---|---|
date | Tue, 07 Oct 2008 18:22:58 +0000 |
parents | 1646720364cf |
children | 3692efcbd325 |
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" | |
43 | |
44 | |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
45 static gdouble exif_rational_to_double(ExifRational *r, gint sign) |
182 | 46 { |
47 if (!r || r->den == 0.0) return 0.0; | |
48 | |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
49 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
|
50 return (gdouble)r->num / r->den; |
182 | 51 } |
52 | |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
53 static gdouble exif_get_rational_as_double(ExifData *exif, const gchar *key) |
182 | 54 { |
55 ExifRational *r; | |
56 gint sign; | |
57 | |
58 r = exif_get_rational(exif, key, &sign); | |
59 return exif_rational_to_double(r, sign); | |
60 } | |
61 | |
62 static GString *append_comma_text(GString *string, const gchar *text) | |
63 { | |
64 string = g_string_append(string, ", "); | |
65 string = g_string_append(string, text); | |
66 | |
67 return string; | |
68 } | |
69 | |
222
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
212
diff
changeset
|
70 static gchar *remove_common_prefix(gchar *s, gchar *t) |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
212
diff
changeset
|
71 { |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
212
diff
changeset
|
72 gint i; |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
212
diff
changeset
|
73 |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
212
diff
changeset
|
74 if (!s || !t) return t; |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
212
diff
changeset
|
75 |
297
76cdc3f1fe34
Fix broken remove_common_prefix(), fCamera didn't display model as it should.
zas_
parents:
281
diff
changeset
|
76 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
|
77 ; |
442 | 78 if (!i) |
222
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
212
diff
changeset
|
79 return t; |
300 | 80 if (s[i-1] == ' ' || !s[i]) |
222
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
212
diff
changeset
|
81 { |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
212
diff
changeset
|
82 while (t[i] == ' ') |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
212
diff
changeset
|
83 i++; |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
212
diff
changeset
|
84 return t + i; |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
212
diff
changeset
|
85 } |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
212
diff
changeset
|
86 return s; |
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 |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
89 static gdouble get_crop_factor(ExifData *exif) |
222
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
212
diff
changeset
|
90 { |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
91 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
|
92 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
|
93 gdouble yres = exif_get_rational_as_double(exif, "Exif.Photo.FocalPlaneYResolution"); |
922 | 94 gint res_unit; |
95 gint w, h; | |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
96 gdouble xsize, ysize, size, ratio; |
442 | 97 |
98 if (xres == 0.0 || yres == 0.0) return 0.0; | |
99 | |
100 if (!exif_get_integer(exif, "Exif.Photo.FocalPlaneResolutionUnit", &res_unit)) return 0.0; | |
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 | 103 if (!exif_get_integer(exif, "Exif.Photo.PixelXDimension", &w)) return 0.0; |
104 if (!exif_get_integer(exif, "Exif.Photo.PixelYDimension", &h)) return 0.0; | |
105 | |
106 xsize = w * res_unit_tbl[res_unit] / xres; | |
107 ysize = h * res_unit_tbl[res_unit] / yres; | |
108 | |
109 ratio = xsize / ysize; | |
110 | |
111 if (ratio < 0.5 || ratio > 2.0) return 0.0; /* reasonable ratio */ | |
112 | |
113 size = sqrt(xsize * xsize + ysize * ysize); | |
114 | |
115 if (size < 1.0 || size > 100.0) return 0.0; /* reasonable sensor size in mm */ | |
116 | |
117 return sqrt(36*36+24*24) / size; | |
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 | 121 static gint remove_suffix(gchar *str, const gchar *suffix, gint suffix_len) |
122 { | |
123 gint str_len = strlen(str); | |
124 | |
125 if (suffix_len < 0) suffix_len = strlen(suffix); | |
126 if (str_len < suffix_len) return FALSE; | |
127 | |
922 | 128 if (strcmp(str + str_len - suffix_len, suffix) != 0) return FALSE; |
519 | 129 str[str_len - suffix_len] = '\0'; |
130 | |
131 return TRUE; | |
132 } | |
182 | 133 |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
134 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
|
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 { |
985
8cef771ff0fb
Minor optimization: no need to copy the whole remaining of the string, just copy next char.
zas_
parents:
922
diff
changeset
|
157 gint i, j; |
546
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) */ |
985
8cef771ff0fb
Minor optimization: no need to copy the whole remaining of the string, just copy next char.
zas_
parents:
922
diff
changeset
|
162 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
|
163 { |
546
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
164 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
|
165 i++; |
8cef771ff0fb
Minor optimization: no need to copy the whole remaining of the string, just copy next char.
zas_
parents:
922
diff
changeset
|
166 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
|
167 } |
8cef771ff0fb
Minor optimization: no need to copy the whole remaining of the string, just copy next char.
zas_
parents:
922
diff
changeset
|
168 software[j] = '\0'; |
546
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 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
|
172 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
|
173 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
174 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
|
175 (model2) ? model2 : "", |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
176 (software2 && (make || model2)) ? " (" : "", |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
177 (software2) ? software2 : "", |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
178 (software2 && (make || model2)) ? ")" : ""); |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
179 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
180 g_free(make); |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
181 g_free(model); |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
182 g_free(software); |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
183 return text; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
184 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
185 |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
186 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
|
187 { |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
188 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
|
189 gchar *subsec = NULL; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
190 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
191 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
|
192 if (!text) |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
193 { |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
194 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
|
195 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
|
196 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
197 if (subsec) |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
198 { |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
199 gchar *tmp = text; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
200 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
|
201 g_free(tmp); |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
202 g_free(subsec); |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
203 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
204 return text; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
205 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
206 |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
207 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
|
208 { |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
209 ExifRational *r; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
210 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
211 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
|
212 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
|
213 { |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
214 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
|
215 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
|
216 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
|
217 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
218 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
|
219 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
|
220 { |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
221 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
|
222 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
223 /* 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
|
224 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
|
225 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
226 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
|
227 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
|
228 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
229 return NULL; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
230 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
231 |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
232 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
|
233 { |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
234 gdouble n; |
546
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
235 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
236 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
|
237 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
|
238 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
|
239 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
240 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
|
241 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
242 |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
243 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
|
244 { |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
245 ExifRational *r; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
246 gint sign; |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
247 gdouble n; |
546
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
248 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
249 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
|
250 if (!r) return NULL; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
251 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
252 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
|
253 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
|
254 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
255 |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
256 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
|
257 { |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
258 gdouble n; |
546
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
259 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
260 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
|
261 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
|
262 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
|
263 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
264 |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
265 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
|
266 { |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
267 gint n; |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
268 gdouble f, c; |
546
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
269 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
270 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
|
271 { |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
272 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
|
273 } |
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 f = exif_get_rational_as_double(exif, "Exif.Photo.FocalLength"); |
922 | 276 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
|
277 |
922 | 278 c = get_crop_factor(exif); |
279 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
|
280 |
922 | 281 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
|
282 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
283 |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
284 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
|
285 { |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
286 gchar *text; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
287 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
288 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
|
289 /* kodak may set this instead */ |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
290 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
|
291 return text; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
292 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
293 |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
294 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
|
295 { |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
296 ExifRational *r; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
297 gint sign; |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
298 gdouble n; |
546
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
299 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
300 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
|
301 if (!r) return NULL; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
302 |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
303 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
|
304 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
|
305 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
306 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
|
307 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
|
308 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
|
309 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
310 |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
311 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
|
312 { |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
313 /* grr, flash is a bitmask... */ |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
314 GString *string; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
315 gchar *text; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
316 gint n; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
317 gint v; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
318 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
319 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
|
320 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
321 /* 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
|
322 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
|
323 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
324 /* must be Exif 2.2 */ |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
325 string = g_string_new(""); |
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 /* flash fired (bit 0) */ |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
328 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
|
329 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
330 /* flash mode (bits 3, 4) */ |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
331 v = (n >> 3) & 0x03; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
332 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
|
333 switch (v) |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
334 { |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
335 case 1: |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
336 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
|
337 break; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
338 case 2: |
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, _("off")); |
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 3: |
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, _("auto")); |
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 } |
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 /* return light (bits 1, 2) */ |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
347 v = (n >> 1) & 0x03; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
348 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
|
349 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
|
350 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
351 /* 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
|
352 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
353 /* red-eye (bit 6) */ |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
354 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
|
355 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
356 text = string->str; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
357 g_string_free(string, FALSE); |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
358 return text; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
359 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
360 |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
361 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
|
362 { |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
363 ExifRational *rx, *ry; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
364 gchar *units; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
365 gchar *text; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
366 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
367 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
|
368 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
|
369 if (!rx || !ry) return NULL; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
370 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
371 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
|
372 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
|
373 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
|
374 _("dot"), (units) ? units : _("unknown")); |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
375 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
376 g_free(units); |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
377 return text; |
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 |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
380 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
|
381 { |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
382 const gchar *name = ""; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
383 const gchar *source = ""; |
922 | 384 guchar *profile_data; |
546
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
385 guint profile_len; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
386 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
387 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
|
388 if (!profile_data) |
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 gint cs; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
391 gchar *interop_index; |
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 /* 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
|
394 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
|
395 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
|
396 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
397 if (cs == 1) |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
398 { |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
399 name = _("sRGB"); |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
400 source = "ColorSpace"; |
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 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
|
403 { |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
404 name = _("AdobeRGB"); |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
405 source = (cs == 2) ? "ColorSpace" : "Iop"; |
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 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
408 g_free(interop_index); |
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 else |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
411 { |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
412 source = _("embedded"); |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
413 #ifdef HAVE_LCMS |
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 { |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
416 cmsHPROFILE profile; |
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 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
|
419 if (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 name = cmsTakeProductName(profile); |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
422 cmsCloseProfile(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 g_free(profile_data); |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
425 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
426 #endif |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
427 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
428 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
|
429 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
|
430 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
431 |
1052 | 432 static gchar *exif_build_formatted_GPSPosition(ExifData *exif) |
433 { | |
434 GString *string; | |
435 gchar *text, *ref; | |
436 ExifRational *value; | |
437 ExifItem *item; | |
438 guint i; | |
439 gdouble p, p3; | |
440 gulong p1, p2; | |
441 | |
442 string = g_string_new(""); | |
443 | |
444 item = exif_get_item(exif, "Exif.GPSInfo.GPSLatitude"); | |
445 ref = exif_get_data_as_text(exif, "Exif.GPSInfo.GPSLatitudeRef"); | |
446 if (item && ref) | |
447 { | |
448 p = 0; | |
449 for (i = 0; i < exif_item_get_elements(item); i++) | |
450 { | |
451 value = exif_item_get_rational(item, NULL, i); | |
452 if (value && value->num && value->den) | |
453 p += (gdouble)value->num / (gdouble)value->den / pow(60.0, (gdouble)i); | |
454 } | |
455 p1 = (gint)p; | |
456 p2 = (gint)((p - p1)*60); | |
457 p3 = ((p - p1)*60 - p2)*60; | |
458 | |
1056 | 459 g_string_append_printf(string, "%0d° %0d' %0.2f\" %.1s", p1, p2, p3, ref); |
1052 | 460 } // if (item && ref) |
461 | |
462 item = exif_get_item(exif, "Exif.GPSInfo.GPSLongitude"); | |
463 ref = exif_get_data_as_text(exif, "Exif.GPSInfo.GPSLongitudeRef"); | |
464 if (item && ref) | |
465 { | |
466 p = 0; | |
467 for (i = 0; i < exif_item_get_elements(item); i++) | |
468 { | |
469 value = exif_item_get_rational(item, NULL, i); | |
470 if (value && value->num && value->den) | |
471 p += (gdouble)value->num / (gdouble)value->den / pow(60.0, (gdouble)i); | |
472 } | |
473 p1 = (gint)p; | |
474 p2 = (gint)((p - p1)*60); | |
475 p3 = ((p - p1)*60 - p2)*60; | |
476 | |
1056 | 477 g_string_append_printf(string, ", %0d° %0d' %0.2f\" %.1s", p1, p2, p3, ref); |
1052 | 478 } // if (item && ref) |
479 | |
480 text = string->str; | |
481 g_string_free(string, FALSE); | |
482 | |
483 return text; | |
484 } // static gchar *exif_build_forma... | |
485 | |
486 static gchar *exif_build_formatted_GPSAltitude(ExifData *exif) | |
487 { | |
488 ExifRational *r; | |
489 ExifItem *item; | |
490 gdouble alt; | |
491 gint ref; | |
492 | |
493 item = exif_get_item(exif, "Exif.GPSInfo.GPSAltitudeRef"); | |
494 r = exif_get_rational(exif, "Exif.GPSInfo.GPSAltitude", NULL); | |
495 | |
496 if (!r || !item) return NULL; | |
497 | |
498 alt = exif_rational_to_double(r, 0); | |
499 exif_item_get_integer(item, &ref); | |
500 | |
501 return g_strdup_printf("%0.f m %s", alt, (ref==0)?_("Above Sea Level"):_("Below Sea Level")); | |
502 } | |
503 | |
548
7ada6e5d4de8
Add a pointer to the build function in the formatted exif tags struct
zas_
parents:
547
diff
changeset
|
504 |
7ada6e5d4de8
Add a pointer to the build function in the formatted exif tags struct
zas_
parents:
547
diff
changeset
|
505 /* List of custom formatted pseudo-exif tags */ |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
506 #define EXIF_FORMATTED_TAG(name, label) { "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
|
507 |
7ada6e5d4de8
Add a pointer to the build function in the formatted exif tags struct
zas_
parents:
547
diff
changeset
|
508 ExifFormattedText ExifFormattedList[] = { |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
509 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
|
510 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
|
511 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
|
512 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
|
513 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
|
514 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
|
515 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
|
516 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
|
517 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
|
518 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
|
519 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
|
520 EXIF_FORMATTED_TAG(ColorProfile, N_("Color profile")), |
1052 | 521 EXIF_FORMATTED_TAG(GPSPosition, N_("GPS position")), |
522 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
|
523 { NULL, NULL, NULL } |
7ada6e5d4de8
Add a pointer to the build function in the formatted exif tags struct
zas_
parents:
547
diff
changeset
|
524 }; |
7ada6e5d4de8
Add a pointer to the build function in the formatted exif tags struct
zas_
parents:
547
diff
changeset
|
525 |
182 | 526 gchar *exif_get_formatted_by_key(ExifData *exif, const gchar *key, gint *key_valid) |
527 { | |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
528 if (strncmp(key, "formatted.", 10) == 0) |
182 | 529 { |
548
7ada6e5d4de8
Add a pointer to the build function in the formatted exif tags struct
zas_
parents:
547
diff
changeset
|
530 gint i; |
442 | 531 |
548
7ada6e5d4de8
Add a pointer to the build function in the formatted exif tags struct
zas_
parents:
547
diff
changeset
|
532 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
|
533 |
922 | 534 key += 10; |
548
7ada6e5d4de8
Add a pointer to the build function in the formatted exif tags struct
zas_
parents:
547
diff
changeset
|
535 for (i = 0; ExifFormattedList[i].key; i++) |
567
2af11dbee6db
exif_get_formatted_by_key(): skip prefix when comparing.
zas_
parents:
566
diff
changeset
|
536 if (strcmp(key, ExifFormattedList[i].key + 10) == 0) |
548
7ada6e5d4de8
Add a pointer to the build function in the formatted exif tags struct
zas_
parents:
547
diff
changeset
|
537 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
|
538 } |
182 | 539 |
540 if (key_valid) *key_valid = FALSE; | |
541 return NULL; | |
542 } | |
543 | |
1053
77ca9a5d42be
fixed charset of exiv2 strings in non-utf8 locales
nadvornik
parents:
1052
diff
changeset
|
544 gchar *exif_get_description_by_key(const gchar *key) |
182 | 545 { |
546 if (!key) return NULL; | |
547 | |
568
04d4bdf5a2d8
exif_get_description_by_key(): check for "formatted." prefix, and optimize.
zas_
parents:
567
diff
changeset
|
548 if (strncmp(key, "formatted.", 10) == 0) |
04d4bdf5a2d8
exif_get_description_by_key(): check for "formatted." prefix, and optimize.
zas_
parents:
567
diff
changeset
|
549 { |
922 | 550 gint i; |
551 | |
552 key += 10; | |
568
04d4bdf5a2d8
exif_get_description_by_key(): check for "formatted." prefix, and optimize.
zas_
parents:
567
diff
changeset
|
553 for (i = 0; ExifFormattedList[i].key; i++) |
04d4bdf5a2d8
exif_get_description_by_key(): check for "formatted." prefix, and optimize.
zas_
parents:
567
diff
changeset
|
554 if (strcmp(key, ExifFormattedList[i].key + 10) == 0) |
1053
77ca9a5d42be
fixed charset of exiv2 strings in non-utf8 locales
nadvornik
parents:
1052
diff
changeset
|
555 return g_strdup(_(ExifFormattedList[i].description)); |
568
04d4bdf5a2d8
exif_get_description_by_key(): check for "formatted." prefix, and optimize.
zas_
parents:
567
diff
changeset
|
556 } |
182 | 557 |
558 return exif_get_tag_description_by_key(key); | |
559 } | |
184 | 560 |
561 gint exif_get_integer(ExifData *exif, const gchar *key, gint *value) | |
562 { | |
563 ExifItem *item; | |
564 | |
565 item = exif_get_item(exif, key); | |
566 return exif_item_get_integer(item, value); | |
567 } | |
568 | |
569 ExifRational *exif_get_rational(ExifData *exif, const gchar *key, gint *sign) | |
570 { | |
571 ExifItem *item; | |
572 | |
573 item = exif_get_item(exif, key); | |
1052 | 574 return exif_item_get_rational(item, sign, 0); |
184 | 575 } |
576 | |
577 gchar *exif_get_data_as_text(ExifData *exif, const gchar *key) | |
578 { | |
579 ExifItem *item; | |
580 gchar *text; | |
581 gint key_valid; | |
582 | |
583 if (!key) return NULL; | |
584 | |
585 text = exif_get_formatted_by_key(exif, key, &key_valid); | |
586 if (key_valid) return text; | |
587 | |
588 item = exif_get_item(exif, key); | |
589 if (item) return exif_item_get_data_as_text(item); | |
590 | |
591 return NULL; | |
592 } | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
184
diff
changeset
|
593 |
844 | 594 |
595 static FileCacheData *exif_cache; | |
596 | |
597 void exif_release_cb(FileData *fd) | |
598 { | |
599 exif_free(fd->exif); | |
600 fd->exif = NULL; | |
601 } | |
602 | |
449 | 603 ExifData *exif_read_fd(FileData *fd) |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
184
diff
changeset
|
604 { |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
184
diff
changeset
|
605 gchar *sidecar_path = NULL; |
190
c2923efebfdc
whitelist of files that can have an xmp sidecar, sample external command
nadvornik
parents:
188
diff
changeset
|
606 |
204 | 607 if (!fd) return NULL; |
844 | 608 |
609 if (!exif_cache) exif_cache = file_cache_new(exif_release_cb, 4); | |
610 | |
611 if (file_cache_get(exif_cache, fd)) return fd->exif; | |
204 | 612 |
212
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
204
diff
changeset
|
613 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
|
614 { |
542
bdd86d86c8d3
Move variable declaration and affectation near where it is used.
zas_
parents:
541
diff
changeset
|
615 GList *work; |
bdd86d86c8d3
Move variable declaration and affectation near where it is used.
zas_
parents:
541
diff
changeset
|
616 |
bdd86d86c8d3
Move variable declaration and affectation near where it is used.
zas_
parents:
541
diff
changeset
|
617 work = fd->parent ? fd->parent->sidecar_files : fd->sidecar_files; |
516 | 618 while (work) |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
184
diff
changeset
|
619 { |
190
c2923efebfdc
whitelist of files that can have an xmp sidecar, sample external command
nadvornik
parents:
188
diff
changeset
|
620 FileData *sfd = work->data; |
c2923efebfdc
whitelist of files that can have an xmp sidecar, sample external command
nadvornik
parents:
188
diff
changeset
|
621 work = work->next; |
c2923efebfdc
whitelist of files that can have an xmp sidecar, sample external command
nadvornik
parents:
188
diff
changeset
|
622 if (strcasecmp(sfd->extension, ".xmp") == 0) |
c2923efebfdc
whitelist of files that can have an xmp sidecar, sample external command
nadvornik
parents:
188
diff
changeset
|
623 { |
c2923efebfdc
whitelist of files that can have an xmp sidecar, sample external command
nadvornik
parents:
188
diff
changeset
|
624 sidecar_path = sfd->path; |
c2923efebfdc
whitelist of files that can have an xmp sidecar, sample external command
nadvornik
parents:
188
diff
changeset
|
625 break; |
c2923efebfdc
whitelist of files that can have an xmp sidecar, sample external command
nadvornik
parents:
188
diff
changeset
|
626 } |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
184
diff
changeset
|
627 } |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
184
diff
changeset
|
628 } |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
184
diff
changeset
|
629 |
844 | 630 fd->exif = exif_read(fd->path, sidecar_path); |
631 return fd->exif; | |
449 | 632 } |
633 | |
844 | 634 void exif_free_fd(FileData *fd, ExifData *exif) |
635 { | |
636 if (!fd) return; | |
637 g_assert(fd->exif == exif); | |
638 | |
639 file_cache_put(exif_cache, fd, 1); | |
640 } | |
449 | 641 |
642 /* embedded icc in jpeg */ | |
643 | |
644 | |
645 #define JPEG_MARKER 0xFF | |
646 #define JPEG_MARKER_SOI 0xD8 | |
647 #define JPEG_MARKER_EOI 0xD9 | |
648 #define JPEG_MARKER_APP1 0xE1 | |
649 #define JPEG_MARKER_APP2 0xE2 | |
650 | |
651 /* jpeg container format: | |
652 all data markers start with 0XFF | |
653 2 byte long file start and end markers: 0xFFD8(SOI) and 0XFFD9(EOI) | |
654 4 byte long data segment markers in format: 0xFFTTSSSSNNN... | |
655 FF: 1 byte standard marker identifier | |
656 TT: 1 byte data type | |
657 SSSS: 2 bytes in Motorola byte alignment for length of the data. | |
658 This value includes these 2 bytes in the count, making actual | |
659 length of NN... == SSSS - 2. | |
660 NNN.: the data in this segment | |
661 */ | |
662 | |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
663 gint exif_jpeg_segment_find(guchar *data, guint size, |
547 | 664 guchar app_marker, const gchar *magic, guint magic_len, |
665 guint *seg_offset, guint *seg_length) | |
449 | 666 { |
667 guchar marker = 0; | |
668 guint offset = 0; | |
669 guint length = 0; | |
670 | |
671 while (marker != app_marker && | |
672 marker != JPEG_MARKER_EOI) | |
673 { | |
674 offset += length; | |
675 length = 2; | |
676 | |
677 if (offset + 2 >= size || | |
678 data[offset] != JPEG_MARKER) return FALSE; | |
679 | |
680 marker = data[offset + 1]; | |
681 if (marker != JPEG_MARKER_SOI && | |
682 marker != JPEG_MARKER_EOI) | |
683 { | |
684 if (offset + 4 >= size) return FALSE; | |
685 length += ((guint)data[offset + 2] << 8) + data[offset + 3]; | |
686 } | |
687 } | |
688 | |
689 if (marker == app_marker && | |
690 offset + length < size && | |
691 length >= 4 + magic_len && | |
692 memcmp(data + offset + 4, magic, magic_len) == 0) | |
693 { | |
694 *seg_offset = offset + 4; | |
695 *seg_length = length - 4; | |
696 return TRUE; | |
697 } | |
698 | |
699 return FALSE; | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
184
diff
changeset
|
700 } |
449 | 701 |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
702 gint exif_jpeg_parse_color(ExifData *exif, guchar *data, guint size) |
449 | 703 { |
704 guint seg_offset = 0; | |
705 guint seg_length = 0; | |
706 guint chunk_offset[255]; | |
707 guint chunk_length[255]; | |
708 guint chunk_count = 0; | |
709 | |
710 /* For jpeg/jfif, ICC color profile data can be in more than one segment. | |
711 the data is in APP2 data segments that start with "ICC_PROFILE\x00\xNN\xTT" | |
712 NN = segment number for data | |
713 TT = total number of ICC segments (TT in each ICC segment should match) | |
714 */ | |
715 | |
716 while (exif_jpeg_segment_find(data + seg_offset + seg_length, | |
717 size - seg_offset - seg_length, | |
718 JPEG_MARKER_APP2, | |
719 "ICC_PROFILE\x00", 12, | |
720 &seg_offset, &seg_length)) | |
721 { | |
722 guchar chunk_num; | |
723 guchar chunk_tot; | |
724 | |
725 if (seg_length < 14) return FALSE; | |
726 | |
727 chunk_num = data[seg_offset + 12]; | |
728 chunk_tot = data[seg_offset + 13]; | |
729 | |
730 if (chunk_num == 0 || chunk_tot == 0) return FALSE; | |
731 | |
732 if (chunk_count == 0) | |
733 { | |
734 guint i; | |
735 | |
736 chunk_count = (guint)chunk_tot; | |
737 for (i = 0; i < chunk_count; i++) chunk_offset[i] = 0; | |
738 for (i = 0; i < chunk_count; i++) chunk_length[i] = 0; | |
739 } | |
740 | |
741 if (chunk_tot != chunk_count || | |
742 chunk_num > chunk_count) return FALSE; | |
743 | |
744 chunk_num--; | |
745 chunk_offset[chunk_num] = seg_offset + 14; | |
746 chunk_length[chunk_num] = seg_length - 14; | |
747 } | |
748 | |
749 if (chunk_count > 0) | |
750 { | |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
751 guchar *cp_data; |
449 | 752 guint cp_length = 0; |
753 guint i; | |
754 | |
755 for (i = 0; i < chunk_count; i++) cp_length += chunk_length[i]; | |
756 cp_data = g_malloc(cp_length); | |
757 | |
758 for (i = 0; i < chunk_count; i++) | |
759 { | |
760 if (chunk_offset[i] == 0) | |
761 { | |
762 /* error, we never saw this chunk */ | |
763 g_free(cp_data); | |
764 return FALSE; | |
765 } | |
766 memcpy(cp_data, data + chunk_offset[i], chunk_length[i]); | |
767 } | |
506
fc9c8a3e1a8b
Handle the newline in DEBUG_N() macro instead of adding one
zas_
parents:
495
diff
changeset
|
768 DEBUG_1("Found embedded icc profile in jpeg"); |
449 | 769 exif_add_jpeg_color_profile(exif, cp_data, cp_length); |
770 | |
771 return TRUE; | |
772 } | |
773 | |
774 return FALSE; | |
775 } | |
1055
1646720364cf
Adding a vim modeline to all files - patch by Klaus Ethgen
nadvornik
parents:
1053
diff
changeset
|
776 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ |