Mercurial > geeqie
annotate src/exif-common.c @ 1654:b874e5697fbf
always check for deleted sidecar files
author | nadvornik |
---|---|
date | Sat, 20 Jun 2009 08:51:07 +0000 |
parents | 7cb24fdf07c0 |
children | 59c72fd324ce |
rev | line source |
---|---|
182 | 1 /* |
541 | 2 * Geeqie |
3 * (C) 2006 John Ellis | |
1284 | 4 * Copyright (C) 2008 - 2009 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 |
1422 | 122 static gboolean remove_suffix(gchar *str, const gchar *suffix, gint suffix_len) |
519 | 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 |
1422 | 192 if (text) |
193 { | |
194 subsec = exif_get_data_as_text(exif, "Exif.Photo.SubSecTimeOriginal"); | |
195 } | |
196 else | |
546
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 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
|
199 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
|
200 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
201 if (subsec) |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
202 { |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
203 gchar *tmp = text; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
204 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
|
205 g_free(tmp); |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
206 g_free(subsec); |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
207 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
208 return text; |
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 |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
211 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
|
212 { |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
213 ExifRational *r; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
214 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
215 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
|
216 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
|
217 { |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
218 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
|
219 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
|
220 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
|
221 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
222 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
|
223 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
|
224 { |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
225 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
|
226 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
227 /* 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
|
228 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
|
229 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
230 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
|
231 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
|
232 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
233 return NULL; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
234 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
235 |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
236 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
|
237 { |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
238 gdouble n; |
546
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 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
|
241 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
|
242 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
|
243 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
244 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
|
245 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
246 |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
247 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
|
248 { |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
249 ExifRational *r; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
250 gint sign; |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
251 gdouble n; |
546
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 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
|
254 if (!r) return NULL; |
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 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
|
257 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
|
258 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
259 |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
260 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
|
261 { |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
262 gdouble n; |
546
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 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
|
265 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
|
266 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
|
267 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
268 |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
269 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
|
270 { |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
271 gint n; |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
272 gdouble f, c; |
546
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 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
|
275 { |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
276 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
|
277 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
278 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
279 f = exif_get_rational_as_double(exif, "Exif.Photo.FocalLength"); |
922 | 280 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
|
281 |
922 | 282 c = get_crop_factor(exif); |
283 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
|
284 |
922 | 285 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
|
286 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
287 |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
288 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
|
289 { |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
290 gchar *text; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
291 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
292 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
|
293 /* kodak may set this instead */ |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
294 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
|
295 return text; |
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 |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
298 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
|
299 { |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
300 ExifRational *r; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
301 gint sign; |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
302 gdouble n; |
546
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
303 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
304 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
|
305 if (!r) return NULL; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
306 |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
307 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
|
308 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
|
309 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
310 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
|
311 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
|
312 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
|
313 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
314 |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
315 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
|
316 { |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
317 /* grr, flash is a bitmask... */ |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
318 GString *string; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
319 gchar *text; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
320 gint n; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
321 gint v; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
322 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
323 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
|
324 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
325 /* 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
|
326 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
|
327 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
328 /* must be Exif 2.2 */ |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
329 string = g_string_new(""); |
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 fired (bit 0) */ |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
332 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
|
333 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
334 /* flash mode (bits 3, 4) */ |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
335 v = (n >> 3) & 0x03; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
336 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
|
337 switch (v) |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
338 { |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
339 case 1: |
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, _("on")); |
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 2: |
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, _("off")); |
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 case 3: |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
346 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
|
347 break; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
348 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
349 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
350 /* return light (bits 1, 2) */ |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
351 v = (n >> 1) & 0x03; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
352 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
|
353 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
|
354 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
355 /* 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
|
356 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
357 /* red-eye (bit 6) */ |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
358 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
|
359 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
360 text = string->str; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
361 g_string_free(string, FALSE); |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
362 return text; |
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 |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
365 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
|
366 { |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
367 ExifRational *rx, *ry; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
368 gchar *units; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
369 gchar *text; |
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 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
|
372 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
|
373 if (!rx || !ry) return NULL; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
374 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
375 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
|
376 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
|
377 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
|
378 _("dot"), (units) ? units : _("unknown")); |
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 g_free(units); |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
381 return text; |
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 |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
384 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
|
385 { |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
386 const gchar *name = ""; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
387 const gchar *source = ""; |
922 | 388 guchar *profile_data; |
546
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
389 guint profile_len; |
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 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
|
392 if (!profile_data) |
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 gint cs; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
395 gchar *interop_index; |
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 /* 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
|
398 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
|
399 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
|
400 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
401 if (cs == 1) |
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 name = _("sRGB"); |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
404 source = "ColorSpace"; |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
405 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
406 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
|
407 { |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
408 name = _("AdobeRGB"); |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
409 source = (cs == 2) ? "ColorSpace" : "Iop"; |
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 |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
412 g_free(interop_index); |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
413 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
414 else |
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 source = _("embedded"); |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
417 #ifdef HAVE_LCMS |
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 { |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
420 cmsHPROFILE 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 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
|
423 if (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 name = cmsTakeProductName(profile); |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
426 cmsCloseProfile(profile); |
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 g_free(profile_data); |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
429 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
430 #endif |
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 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
|
433 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
|
434 } |
f852eb277913
Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f".
zas_
parents:
542
diff
changeset
|
435 |
1052 | 436 static gchar *exif_build_formatted_GPSPosition(ExifData *exif) |
437 { | |
438 GString *string; | |
439 gchar *text, *ref; | |
440 ExifRational *value; | |
441 ExifItem *item; | |
442 guint i; | |
443 gdouble p, p3; | |
444 gulong p1, p2; | |
445 | |
446 string = g_string_new(""); | |
447 | |
448 item = exif_get_item(exif, "Exif.GPSInfo.GPSLatitude"); | |
449 ref = exif_get_data_as_text(exif, "Exif.GPSInfo.GPSLatitudeRef"); | |
450 if (item && ref) | |
451 { | |
452 p = 0; | |
453 for (i = 0; i < exif_item_get_elements(item); i++) | |
454 { | |
455 value = exif_item_get_rational(item, NULL, i); | |
456 if (value && value->num && value->den) | |
457 p += (gdouble)value->num / (gdouble)value->den / pow(60.0, (gdouble)i); | |
458 } | |
459 p1 = (gint)p; | |
460 p2 = (gint)((p - p1)*60); | |
461 p3 = ((p - p1)*60 - p2)*60; | |
462 | |
1164 | 463 g_string_append_printf(string, "%0lu° %0lu' %0.2f\" %.1s", p1, p2, p3, ref); |
1052 | 464 } // if (item && ref) |
465 | |
466 item = exif_get_item(exif, "Exif.GPSInfo.GPSLongitude"); | |
467 ref = exif_get_data_as_text(exif, "Exif.GPSInfo.GPSLongitudeRef"); | |
468 if (item && ref) | |
469 { | |
470 p = 0; | |
471 for (i = 0; i < exif_item_get_elements(item); i++) | |
472 { | |
473 value = exif_item_get_rational(item, NULL, i); | |
474 if (value && value->num && value->den) | |
475 p += (gdouble)value->num / (gdouble)value->den / pow(60.0, (gdouble)i); | |
476 } | |
477 p1 = (gint)p; | |
478 p2 = (gint)((p - p1)*60); | |
479 p3 = ((p - p1)*60 - p2)*60; | |
480 | |
1164 | 481 g_string_append_printf(string, ", %0lu° %0lu' %0.2f\" %.1s", p1, p2, p3, ref); |
1052 | 482 } // if (item && ref) |
483 | |
484 text = string->str; | |
485 g_string_free(string, FALSE); | |
486 | |
487 return text; | |
488 } // static gchar *exif_build_forma... | |
489 | |
490 static gchar *exif_build_formatted_GPSAltitude(ExifData *exif) | |
491 { | |
492 ExifRational *r; | |
493 ExifItem *item; | |
494 gdouble alt; | |
495 gint ref; | |
496 | |
497 item = exif_get_item(exif, "Exif.GPSInfo.GPSAltitudeRef"); | |
498 r = exif_get_rational(exif, "Exif.GPSInfo.GPSAltitude", NULL); | |
499 | |
500 if (!r || !item) return NULL; | |
501 | |
502 alt = exif_rational_to_double(r, 0); | |
503 exif_item_get_integer(item, &ref); | |
504 | |
505 return g_strdup_printf("%0.f m %s", alt, (ref==0)?_("Above Sea Level"):_("Below Sea Level")); | |
506 } | |
507 | |
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 /* List of custom formatted pseudo-exif tags */ |
1189 | 510 #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
|
511 |
7ada6e5d4de8
Add a pointer to the build function in the formatted exif tags struct
zas_
parents:
547
diff
changeset
|
512 ExifFormattedText ExifFormattedList[] = { |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
552
diff
changeset
|
513 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
|
514 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
|
515 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
|
516 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
|
517 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
|
518 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
|
519 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
|
520 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
|
521 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
|
522 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
|
523 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
|
524 EXIF_FORMATTED_TAG(ColorProfile, N_("Color profile")), |
1052 | 525 EXIF_FORMATTED_TAG(GPSPosition, N_("GPS position")), |
526 EXIF_FORMATTED_TAG(GPSAltitude, N_("GPS altitude")), | |
1483
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
527 {"file.size", N_("File size"), NULL}, |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
528 {"file.date", N_("File date"), NULL}, |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
529 {"file.mode", N_("File mode"), NULL}, |
548
7ada6e5d4de8
Add a pointer to the build function in the formatted exif tags struct
zas_
parents:
547
diff
changeset
|
530 { NULL, NULL, NULL } |
7ada6e5d4de8
Add a pointer to the build function in the formatted exif tags struct
zas_
parents:
547
diff
changeset
|
531 }; |
7ada6e5d4de8
Add a pointer to the build function in the formatted exif tags struct
zas_
parents:
547
diff
changeset
|
532 |
1422 | 533 gchar *exif_get_formatted_by_key(ExifData *exif, const gchar *key, gboolean *key_valid) |
182 | 534 { |
1189 | 535 if (strncmp(key, EXIF_FORMATTED(), EXIF_FORMATTED_LEN) == 0) |
182 | 536 { |
548
7ada6e5d4de8
Add a pointer to the build function in the formatted exif tags struct
zas_
parents:
547
diff
changeset
|
537 gint i; |
442 | 538 |
548
7ada6e5d4de8
Add a pointer to the build function in the formatted exif tags struct
zas_
parents:
547
diff
changeset
|
539 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
|
540 |
1189 | 541 key += EXIF_FORMATTED_LEN; |
548
7ada6e5d4de8
Add a pointer to the build function in the formatted exif tags struct
zas_
parents:
547
diff
changeset
|
542 for (i = 0; ExifFormattedList[i].key; i++) |
1483
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
543 if (ExifFormattedList[i].build_func && 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
|
544 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
|
545 } |
182 | 546 |
547 if (key_valid) *key_valid = FALSE; | |
548 return NULL; | |
549 } | |
550 | |
1053
77ca9a5d42be
fixed charset of exiv2 strings in non-utf8 locales
nadvornik
parents:
1052
diff
changeset
|
551 gchar *exif_get_description_by_key(const gchar *key) |
182 | 552 { |
553 if (!key) return NULL; | |
554 | |
1483
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
555 if (strncmp(key, EXIF_FORMATTED(), EXIF_FORMATTED_LEN) == 0 || |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
556 strncmp(key, "file.", 5) == 0) |
568
04d4bdf5a2d8
exif_get_description_by_key(): check for "formatted." prefix, and optimize.
zas_
parents:
567
diff
changeset
|
557 { |
922 | 558 gint i; |
559 | |
568
04d4bdf5a2d8
exif_get_description_by_key(): check for "formatted." prefix, and optimize.
zas_
parents:
567
diff
changeset
|
560 for (i = 0; ExifFormattedList[i].key; i++) |
1483
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
561 if (strcmp(key, ExifFormattedList[i].key) == 0) |
1053
77ca9a5d42be
fixed charset of exiv2 strings in non-utf8 locales
nadvornik
parents:
1052
diff
changeset
|
562 return g_strdup(_(ExifFormattedList[i].description)); |
568
04d4bdf5a2d8
exif_get_description_by_key(): check for "formatted." prefix, and optimize.
zas_
parents:
567
diff
changeset
|
563 } |
182 | 564 |
565 return exif_get_tag_description_by_key(key); | |
566 } | |
184 | 567 |
568 gint exif_get_integer(ExifData *exif, const gchar *key, gint *value) | |
569 { | |
570 ExifItem *item; | |
571 | |
572 item = exif_get_item(exif, key); | |
573 return exif_item_get_integer(item, value); | |
574 } | |
575 | |
576 ExifRational *exif_get_rational(ExifData *exif, const gchar *key, gint *sign) | |
577 { | |
578 ExifItem *item; | |
579 | |
580 item = exif_get_item(exif, key); | |
1052 | 581 return exif_item_get_rational(item, sign, 0); |
184 | 582 } |
583 | |
584 gchar *exif_get_data_as_text(ExifData *exif, const gchar *key) | |
585 { | |
586 ExifItem *item; | |
587 gchar *text; | |
1422 | 588 gboolean key_valid; |
184 | 589 |
590 if (!key) return NULL; | |
591 | |
592 text = exif_get_formatted_by_key(exif, key, &key_valid); | |
593 if (key_valid) return text; | |
594 | |
595 item = exif_get_item(exif, key); | |
596 if (item) return exif_item_get_data_as_text(item); | |
597 | |
598 return NULL; | |
599 } | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
184
diff
changeset
|
600 |
844 | 601 |
602 static FileCacheData *exif_cache; | |
603 | |
604 void exif_release_cb(FileData *fd) | |
605 { | |
606 exif_free(fd->exif); | |
607 fd->exif = NULL; | |
608 } | |
609 | |
449 | 610 ExifData *exif_read_fd(FileData *fd) |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
184
diff
changeset
|
611 { |
1224 | 612 gchar *sidecar_path; |
190
c2923efebfdc
whitelist of files that can have an xmp sidecar, sample external command
nadvornik
parents:
188
diff
changeset
|
613 |
1361 | 614 if (!fd || !is_readable_file(fd->path)) return NULL; |
844 | 615 |
616 if (!exif_cache) exif_cache = file_cache_new(exif_release_cb, 4); | |
617 | |
618 if (file_cache_get(exif_cache, fd)) return fd->exif; | |
1224 | 619 |
620 /* CACHE_TYPE_XMP_METADATA file should exist only if the metadata are | |
621 * not writable directly, thus it should contain the most up-to-date version */ | |
622 sidecar_path = cache_find_location(CACHE_TYPE_XMP_METADATA, fd->path); | |
204 | 623 |
1224 | 624 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
|
625 |
1203
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1189
diff
changeset
|
626 fd->exif = exif_read(fd->path, sidecar_path, fd->modified_xmp); |
1224 | 627 |
628 g_free(sidecar_path); | |
844 | 629 return fd->exif; |
449 | 630 } |
631 | |
1203
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1189
diff
changeset
|
632 |
844 | 633 void exif_free_fd(FileData *fd, ExifData *exif) |
634 { | |
635 if (!fd) return; | |
636 g_assert(fd->exif == exif); | |
637 | |
638 file_cache_put(exif_cache, fd, 1); | |
639 } | |
449 | 640 |
641 /* embedded icc in jpeg */ | |
642 | |
643 | |
644 #define JPEG_MARKER 0xFF | |
645 #define JPEG_MARKER_SOI 0xD8 | |
646 #define JPEG_MARKER_EOI 0xD9 | |
647 #define JPEG_MARKER_APP1 0xE1 | |
648 #define JPEG_MARKER_APP2 0xE2 | |
649 | |
650 /* jpeg container format: | |
651 all data markers start with 0XFF | |
652 2 byte long file start and end markers: 0xFFD8(SOI) and 0XFFD9(EOI) | |
653 4 byte long data segment markers in format: 0xFFTTSSSSNNN... | |
654 FF: 1 byte standard marker identifier | |
655 TT: 1 byte data type | |
656 SSSS: 2 bytes in Motorola byte alignment for length of the data. | |
657 This value includes these 2 bytes in the count, making actual | |
658 length of NN... == SSSS - 2. | |
659 NNN.: the data in this segment | |
660 */ | |
661 | |
1422 | 662 gboolean exif_jpeg_segment_find(guchar *data, guint size, |
547 | 663 guchar app_marker, const gchar *magic, guint magic_len, |
664 guint *seg_offset, guint *seg_length) | |
449 | 665 { |
666 guchar marker = 0; | |
667 guint offset = 0; | |
668 guint length = 0; | |
669 | |
670 while (marker != app_marker && | |
671 marker != JPEG_MARKER_EOI) | |
672 { | |
673 offset += length; | |
674 length = 2; | |
675 | |
676 if (offset + 2 >= size || | |
677 data[offset] != JPEG_MARKER) return FALSE; | |
678 | |
679 marker = data[offset + 1]; | |
680 if (marker != JPEG_MARKER_SOI && | |
681 marker != JPEG_MARKER_EOI) | |
682 { | |
683 if (offset + 4 >= size) return FALSE; | |
684 length += ((guint)data[offset + 2] << 8) + data[offset + 3]; | |
685 } | |
686 } | |
687 | |
688 if (marker == app_marker && | |
689 offset + length < size && | |
690 length >= 4 + magic_len && | |
691 memcmp(data + offset + 4, magic, magic_len) == 0) | |
692 { | |
693 *seg_offset = offset + 4; | |
694 *seg_length = length - 4; | |
695 return TRUE; | |
696 } | |
697 | |
698 return FALSE; | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
184
diff
changeset
|
699 } |
449 | 700 |
1422 | 701 gboolean exif_jpeg_parse_color(ExifData *exif, guchar *data, guint size) |
449 | 702 { |
703 guint seg_offset = 0; | |
704 guint seg_length = 0; | |
705 guint chunk_offset[255]; | |
706 guint chunk_length[255]; | |
707 guint chunk_count = 0; | |
708 | |
709 /* For jpeg/jfif, ICC color profile data can be in more than one segment. | |
710 the data is in APP2 data segments that start with "ICC_PROFILE\x00\xNN\xTT" | |
711 NN = segment number for data | |
712 TT = total number of ICC segments (TT in each ICC segment should match) | |
713 */ | |
714 | |
715 while (exif_jpeg_segment_find(data + seg_offset + seg_length, | |
716 size - seg_offset - seg_length, | |
717 JPEG_MARKER_APP2, | |
718 "ICC_PROFILE\x00", 12, | |
719 &seg_offset, &seg_length)) | |
720 { | |
721 guchar chunk_num; | |
722 guchar chunk_tot; | |
723 | |
724 if (seg_length < 14) return FALSE; | |
725 | |
726 chunk_num = data[seg_offset + 12]; | |
727 chunk_tot = data[seg_offset + 13]; | |
728 | |
729 if (chunk_num == 0 || chunk_tot == 0) return FALSE; | |
730 | |
731 if (chunk_count == 0) | |
732 { | |
733 guint i; | |
734 | |
735 chunk_count = (guint)chunk_tot; | |
736 for (i = 0; i < chunk_count; i++) chunk_offset[i] = 0; | |
737 for (i = 0; i < chunk_count; i++) chunk_length[i] = 0; | |
738 } | |
739 | |
740 if (chunk_tot != chunk_count || | |
741 chunk_num > chunk_count) return FALSE; | |
742 | |
743 chunk_num--; | |
744 chunk_offset[chunk_num] = seg_offset + 14; | |
745 chunk_length[chunk_num] = seg_length - 14; | |
746 } | |
747 | |
748 if (chunk_count > 0) | |
749 { | |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
985
diff
changeset
|
750 guchar *cp_data; |
449 | 751 guint cp_length = 0; |
752 guint i; | |
753 | |
754 for (i = 0; i < chunk_count; i++) cp_length += chunk_length[i]; | |
755 cp_data = g_malloc(cp_length); | |
756 | |
757 for (i = 0; i < chunk_count; i++) | |
758 { | |
759 if (chunk_offset[i] == 0) | |
760 { | |
761 /* error, we never saw this chunk */ | |
762 g_free(cp_data); | |
763 return FALSE; | |
764 } | |
765 memcpy(cp_data, data + chunk_offset[i], chunk_length[i]); | |
766 } | |
506
fc9c8a3e1a8b
Handle the newline in DEBUG_N() macro instead of adding one
zas_
parents:
495
diff
changeset
|
767 DEBUG_1("Found embedded icc profile in jpeg"); |
449 | 768 exif_add_jpeg_color_profile(exif, cp_data, cp_length); |
769 | |
770 return TRUE; | |
771 } | |
772 | |
773 return FALSE; | |
774 } | |
1483
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
775 |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
776 /* |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
777 *------------------------------------------------------------------- |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
778 * file info |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
779 * it is here because it shares tag neming infrastructure with exif |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
780 * we should probably not invest too much effort into this because |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
781 * new exiv2 will support the same functionality |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
782 * http://dev.exiv2.org/issues/show/505 |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
783 *------------------------------------------------------------------- |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
784 */ |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
785 |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
786 static gchar *mode_number(mode_t m) |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
787 { |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
788 gint mb, mu, mg, mo; |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
789 gchar pbuf[12]; |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
790 |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
791 mb = mu = mg = mo = 0; |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
792 |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
793 if (m & S_ISUID) mb |= 4; |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
794 if (m & S_ISGID) mb |= 2; |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
795 if (m & S_ISVTX) mb |= 1; |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
796 |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
797 if (m & S_IRUSR) mu |= 4; |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
798 if (m & S_IWUSR) mu |= 2; |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
799 if (m & S_IXUSR) mu |= 1; |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
800 |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
801 if (m & S_IRGRP) mg |= 4; |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
802 if (m & S_IWGRP) mg |= 2; |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
803 if (m & S_IXGRP) mg |= 1; |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
804 |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
805 if (m & S_IROTH) mo |= 4; |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
806 if (m & S_IWOTH) mo |= 2; |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
807 if (m & S_IXOTH) mo |= 1; |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
808 |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
809 pbuf[0] = (m & S_IRUSR) ? 'r' : '-'; |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
810 pbuf[1] = (m & S_IWUSR) ? 'w' : '-'; |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
811 pbuf[2] = (m & S_IXUSR) ? 'x' : '-'; |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
812 pbuf[3] = (m & S_IRGRP) ? 'r' : '-'; |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
813 pbuf[4] = (m & S_IWGRP) ? 'w' : '-'; |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
814 pbuf[5] = (m & S_IXGRP) ? 'x' : '-'; |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
815 pbuf[6] = (m & S_IROTH) ? 'r' : '-'; |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
816 pbuf[7] = (m & S_IWOTH) ? 'w' : '-'; |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
817 pbuf[8] = (m & S_IXOTH) ? 'x' : '-'; |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
818 pbuf[9] = '\0'; |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
819 |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
820 return g_strdup_printf("%s (%d%d%d%d)", pbuf, mb, mu, mg, mo); |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
821 } |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
822 |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
823 gchar *metadata_file_info(FileData *fd, const gchar *key, MetadataFormat format) |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
824 { |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
825 if (strcmp(key, "file.size") == 0) |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
826 { |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
827 return g_strdup_printf("%ld", (long)fd->size); |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
828 } |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
829 if (strcmp(key, "file.date") == 0) |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
830 { |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
831 return g_strdup(text_from_time(fd->date)); |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
832 } |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
833 if (strcmp(key, "file.mode") == 0) |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
834 { |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
835 return mode_number(fd->mode); |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
836 } |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
837 return g_strdup(""); |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
838 } |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
839 |
7cb24fdf07c0
re-added possibility to display basic file info (size, mode, date)
nadvornik
parents:
1422
diff
changeset
|
840 |
1055
1646720364cf
Adding a vim modeline to all files - patch by Klaus Ethgen
nadvornik
parents:
1053
diff
changeset
|
841 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ |