Mercurial > geeqie.yaz
annotate src/exiv2.cc @ 1203:43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
metadata immediately before writting is now possible
modified metadata are stored in fd->modified_xmp
author | nadvornik |
---|---|
date | Mon, 15 Dec 2008 22:47:31 +0000 |
parents | 4fe35e07308d |
children | 4742b47b75d1 |
rev | line source |
---|---|
475 | 1 /* |
2 * Geeqie | |
3 * Copyright (C) 2008 The Geeqie Team | |
4 * | |
5 * Author: Vladimir Nadvornik | |
6 * | |
7 * This software is released under the GNU General Public License (GNU GPL). | |
8 * Please read the included file COPYING for more information. | |
9 * This software comes with no warranty of any kind, use at your own risk! | |
10 */ | |
178 | 11 |
686 | 12 #include "config.h" |
178 | 13 |
14 #ifdef HAVE_EXIV2 | |
15 | |
16 #include <exiv2/image.hpp> | |
17 #include <exiv2/exif.hpp> | |
18 #include <iostream> | |
19 | |
200 | 20 // EXIV2_TEST_VERSION is defined in Exiv2 0.15 and newer. |
21 #ifndef EXIV2_TEST_VERSION | |
22 # define EXIV2_TEST_VERSION(major,minor,patch) \ | |
23 ( EXIV2_VERSION >= EXIV2_MAKE_VERSION(major,minor,patch) ) | |
24 #endif | |
25 | |
26 | |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
27 #include <sys/types.h> |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
28 #include <sys/stat.h> |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
29 #include <unistd.h> |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
30 #include <fcntl.h> |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
31 #include <sys/mman.h> |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
32 |
1008 | 33 #if !EXIV2_TEST_VERSION(0,17,90) |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
34 #include <exiv2/tiffparser.hpp> |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
35 #include <exiv2/tiffcomposite.hpp> |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
36 #include <exiv2/tiffvisitor.hpp> |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
37 #include <exiv2/tiffimage.hpp> |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
38 #include <exiv2/cr2image.hpp> |
191 | 39 #include <exiv2/crwimage.hpp> |
200 | 40 #if EXIV2_TEST_VERSION(0,16,0) |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
41 #include <exiv2/orfimage.hpp> |
200 | 42 #endif |
43 #if EXIV2_TEST_VERSION(0,13,0) | |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
44 #include <exiv2/rafimage.hpp> |
200 | 45 #endif |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
46 #include <exiv2/futils.hpp> |
1008 | 47 #else |
48 #include <exiv2/preview.hpp> | |
49 #endif | |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
50 |
1070 | 51 #if EXIV2_TEST_VERSION(0,17,0) |
52 #include <exiv2/convert.hpp> | |
1071 | 53 #include <exiv2/xmpsidecar.hpp> |
1070 | 54 #endif |
55 | |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
56 |
178 | 57 extern "C" { |
995 | 58 #include <glib.h> |
507 | 59 |
281 | 60 #include "main.h" |
178 | 61 #include "exif.h" |
507 | 62 |
586 | 63 #include "filefilter.h" |
496
a1f13fab6686
fixed a bug in opening files with non-utf8 locales in exiv2.cc
nadvornik
parents:
495
diff
changeset
|
64 #include "ui_fileops.h" |
184 | 65 } |
178 | 66 |
67 struct _ExifData | |
68 { | |
185 | 69 Exiv2::ExifData::const_iterator exifIter; /* for exif_get_next_item */ |
70 Exiv2::IptcData::const_iterator iptcIter; /* for exif_get_next_item */ | |
200 | 71 #if EXIV2_TEST_VERSION(0,16,0) |
185 | 72 Exiv2::XmpData::const_iterator xmpIter; /* for exif_get_next_item */ |
200 | 73 #endif |
184 | 74 |
1069 | 75 virtual ~_ExifData() |
76 { | |
77 } | |
78 | |
79 virtual void writeMetadata() | |
184 | 80 { |
1069 | 81 g_critical("Unsupported method of writing metadata"); |
82 } | |
83 | |
84 virtual ExifData *original() | |
85 { | |
86 return NULL; | |
87 } | |
88 | |
89 virtual Exiv2::Image *image() = 0; | |
90 | |
91 virtual Exiv2::ExifData &exifData() = 0; | |
92 | |
93 virtual Exiv2::IptcData &iptcData() = 0; | |
200 | 94 |
95 #if EXIV2_TEST_VERSION(0,16,0) | |
1069 | 96 virtual Exiv2::XmpData &xmpData() = 0; |
97 #endif | |
98 | |
99 virtual void add_jpeg_color_profile(unsigned char *cp_data, guint cp_length) = 0; | |
100 | |
101 virtual guchar *get_jpeg_color_profile(guint *data_len) = 0; | |
102 }; | |
103 | |
104 // This allows read-only access to the original metadata | |
105 struct _ExifDataOriginal : public _ExifData | |
106 { | |
107 protected: | |
108 Exiv2::Image::AutoPtr image_; | |
109 | |
110 /* the icc profile in jpeg is not technically exif - store it here */ | |
111 unsigned char *cp_data_; | |
112 guint cp_length_; | |
113 | |
114 public: | |
1071 | 115 _ExifDataOriginal(Exiv2::Image::AutoPtr image) |
116 { | |
117 cp_data_ = NULL; | |
118 cp_length_ = 0; | |
119 image_ = image; | |
120 } | |
1069 | 121 |
122 _ExifDataOriginal(gchar *path) | |
123 { | |
124 cp_data_ = NULL; | |
125 cp_length_ = 0; | |
126 gchar *pathl = path_from_utf8(path); | |
127 image_ = Exiv2::ImageFactory::open(pathl); | |
128 g_free(pathl); | |
129 // g_assert (image.get() != 0); | |
130 image_->readMetadata(); | |
131 | |
132 #if EXIV2_TEST_VERSION(0,16,0) | |
133 if (image_->mimeType() == "application/rdf+xml") | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
134 { |
1069 | 135 //Exiv2 sidecar converts xmp to exif and iptc, we don't want it. |
136 image_->clearExifData(); | |
137 image_->clearIptcData(); | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
138 } |
1069 | 139 #endif |
449 | 140 |
452
0a69a779395a
fixed color profile code for older versions of exiv2
nadvornik
parents:
449
diff
changeset
|
141 #if EXIV2_TEST_VERSION(0,14,0) |
1069 | 142 if (image_->mimeType() == "image/jpeg") |
449 | 143 { |
144 /* try to get jpeg color profile */ | |
1069 | 145 Exiv2::BasicIo &io = image_->io(); |
449 | 146 gint open = io.isopen(); |
147 if (!open) io.open(); | |
1196 | 148 if (io.isopen()) |
149 { | |
150 unsigned char *mapped = (unsigned char*)io.mmap(); | |
151 if (mapped) exif_jpeg_parse_color(this, mapped, io.size()); | |
152 io.munmap(); | |
153 } | |
449 | 154 if (!open) io.close(); |
155 } | |
995 | 156 #endif |
184 | 157 } |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
158 |
1069 | 159 virtual ~_ExifDataOriginal() |
449 | 160 { |
1069 | 161 if (cp_data_) g_free(cp_data_); |
449 | 162 } |
163 | |
1069 | 164 virtual Exiv2::Image *image() |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
165 { |
1069 | 166 return image_.get(); |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
167 } |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
168 |
1069 | 169 virtual Exiv2::ExifData &exifData () |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
170 { |
1069 | 171 return image_->exifData(); |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
172 } |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
173 |
1069 | 174 virtual Exiv2::IptcData &iptcData () |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
175 { |
1069 | 176 return image_->iptcData(); |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
177 } |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
178 |
200 | 179 #if EXIV2_TEST_VERSION(0,16,0) |
1069 | 180 virtual Exiv2::XmpData &xmpData () |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
181 { |
1069 | 182 return image_->xmpData(); |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
183 } |
200 | 184 #endif |
184 | 185 |
1069 | 186 virtual void add_jpeg_color_profile(unsigned char *cp_data, guint cp_length) |
187 { | |
188 if (cp_data_) g_free(cp_data_); | |
189 cp_data_ = cp_data; | |
190 cp_length_ = cp_length; | |
191 } | |
192 | |
193 virtual guchar *get_jpeg_color_profile(guint *data_len) | |
194 { | |
195 if (cp_data_) | |
196 { | |
197 if (data_len) *data_len = cp_length_; | |
198 return (unsigned char *) g_memdup(cp_data_, cp_length_); | |
199 } | |
200 return NULL; | |
201 } | |
178 | 202 }; |
203 | |
1203
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
204 extern "C" { |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
205 static void _ExifDataProcessed_update_xmp(gpointer key, gpointer value, gpointer data); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
206 } |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
207 |
1069 | 208 // This allows read-write access to the metadata |
209 struct _ExifDataProcessed : public _ExifData | |
210 { | |
211 protected: | |
212 _ExifDataOriginal *imageData_; | |
213 _ExifDataOriginal *sidecarData_; | |
214 | |
215 Exiv2::ExifData exifData_; | |
216 Exiv2::IptcData iptcData_; | |
217 #if EXIV2_TEST_VERSION(0,16,0) | |
218 Exiv2::XmpData xmpData_; | |
219 #endif | |
220 | |
221 public: | |
1203
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
222 _ExifDataProcessed(gchar *path, gchar *sidecar_path, GHashTable *modified_xmp) |
1069 | 223 { |
224 imageData_ = new _ExifDataOriginal(path); | |
225 sidecarData_ = NULL; | |
226 #if EXIV2_TEST_VERSION(0,16,0) | |
227 xmpData_ = imageData_->xmpData(); | |
228 DEBUG_2("xmp count %li", xmpData_.count()); | |
229 if (sidecar_path && xmpData_.empty()) | |
230 { | |
231 sidecarData_ = new _ExifDataOriginal(sidecar_path); | |
232 xmpData_ = sidecarData_->xmpData(); | |
233 } | |
234 #endif | |
235 exifData_ = imageData_->exifData(); | |
236 iptcData_ = imageData_->iptcData(); | |
1070 | 237 #if EXIV2_TEST_VERSION(0,17,0) |
238 syncExifWithXmp(exifData_, xmpData_); | |
239 #endif | |
1203
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
240 if (modified_xmp) |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
241 { |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
242 g_hash_table_foreach(modified_xmp, _ExifDataProcessed_update_xmp, this); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
243 } |
1069 | 244 } |
245 | |
246 virtual ~_ExifDataProcessed() | |
247 { | |
248 if (imageData_) delete imageData_; | |
249 if (sidecarData_) delete sidecarData_; | |
250 } | |
251 | |
252 virtual ExifData *original() | |
253 { | |
254 return imageData_; | |
255 } | |
256 | |
257 virtual void writeMetadata() | |
258 { | |
1070 | 259 #if EXIV2_TEST_VERSION(0,17,0) |
260 syncExifWithXmp(exifData_, xmpData_); | |
261 copyXmpToIptc(xmpData_, iptcData_); //FIXME it should be configurable | |
262 #endif | |
1069 | 263 if (sidecarData_) |
264 { | |
265 sidecarData_->image()->setXmpData(xmpData_); | |
266 //Exiv2 sidecar converts xmp to exif and iptc, we don't want it. | |
267 sidecarData_->image()->clearExifData(); | |
268 sidecarData_->image()->clearIptcData(); | |
269 sidecarData_->image()->writeMetadata(); | |
270 } | |
271 else | |
272 { | |
1071 | 273 try { |
274 imageData_->image()->setExifData(exifData_); | |
275 imageData_->image()->setIptcData(iptcData_); | |
276 imageData_->image()->setXmpData(xmpData_); | |
277 imageData_->image()->writeMetadata(); | |
278 } | |
279 catch (Exiv2::AnyError& e) | |
280 { | |
281 // can't write into the image, create sidecar | |
282 #if EXIV2_TEST_VERSION(0,17,0) | |
283 gchar *base = remove_extension_from_path(imageData_->image()->io().path().c_str()); | |
284 gchar *pathl = g_strconcat(base, ".xmp", NULL); | |
285 | |
286 Exiv2::Image::AutoPtr sidecar = Exiv2::ImageFactory::create(Exiv2::ImageType::xmp, pathl); | |
287 | |
288 g_free(base); | |
289 g_free(pathl); | |
290 | |
291 sidecarData_ = new _ExifDataOriginal(sidecar); | |
292 sidecarData_->image()->setXmpData(xmpData_); | |
293 sidecarData_->image()->writeMetadata(); | |
294 #endif | |
295 } | |
1069 | 296 } |
297 } | |
298 | |
299 virtual Exiv2::Image *image() | |
300 { | |
301 return imageData_->image(); | |
302 } | |
303 | |
304 virtual Exiv2::ExifData &exifData () | |
305 { | |
306 return exifData_; | |
307 } | |
308 | |
309 virtual Exiv2::IptcData &iptcData () | |
310 { | |
311 return iptcData_; | |
312 } | |
313 | |
314 #if EXIV2_TEST_VERSION(0,16,0) | |
315 virtual Exiv2::XmpData &xmpData () | |
316 { | |
317 return xmpData_; | |
318 } | |
319 #endif | |
320 | |
321 virtual void add_jpeg_color_profile(unsigned char *cp_data, guint cp_length) | |
322 { | |
323 imageData_->add_jpeg_color_profile(cp_data, cp_length); | |
324 } | |
325 | |
326 virtual guchar *get_jpeg_color_profile(guint *data_len) | |
327 { | |
328 return imageData_->get_jpeg_color_profile(data_len); | |
329 } | |
330 }; | |
331 | |
332 | |
333 | |
334 | |
184 | 335 extern "C" { |
178 | 336 |
1203
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
337 static void _ExifDataProcessed_update_xmp(gpointer key, gpointer value, gpointer data) |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
338 { |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
339 exif_update_metadata((ExifData *)data, (gchar *)key, (GList *)value); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
340 } |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
341 |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
342 ExifData *exif_read(gchar *path, gchar *sidecar_path, GHashTable *modified_xmp) |
178 | 343 { |
506
fc9c8a3e1a8b
Handle the newline in DEBUG_N() macro instead of adding one
zas_
parents:
496
diff
changeset
|
344 DEBUG_1("exif read %s, sidecar: %s", path, sidecar_path ? sidecar_path : "-"); |
178 | 345 try { |
1203
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
346 return new _ExifDataProcessed(path, sidecar_path, modified_xmp); |
178 | 347 } |
348 catch (Exiv2::AnyError& e) { | |
349 std::cout << "Caught Exiv2 exception '" << e << "'\n"; | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
350 return NULL; |
178 | 351 } |
179
37004d5a584a
and first version that actually shows some exif data (see advanced view)
nadvornik
parents:
178
diff
changeset
|
352 |
178 | 353 } |
354 | |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
355 int exif_write(ExifData *exif) |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
356 { |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
357 try { |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
358 exif->writeMetadata(); |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
359 return 1; |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
360 } |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
361 catch (Exiv2::AnyError& e) { |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
362 std::cout << "Caught Exiv2 exception '" << e << "'\n"; |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
363 return 0; |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
364 } |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
365 |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
366 } |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
367 |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
368 |
178 | 369 void exif_free(ExifData *exif) |
370 { | |
1072 | 371 if (!exif) return; |
1069 | 372 g_assert(dynamic_cast<_ExifDataProcessed *>(exif)); // this should not be called on ExifDataOriginal |
182 | 373 delete exif; |
178 | 374 } |
375 | |
1069 | 376 ExifData *exif_get_original(ExifData *exif) |
377 { | |
378 return exif->original(); | |
379 } | |
380 | |
381 | |
184 | 382 ExifItem *exif_get_item(ExifData *exif, const gchar *key) |
178 | 383 { |
183 | 384 try { |
452
0a69a779395a
fixed color profile code for older versions of exiv2
nadvornik
parents:
449
diff
changeset
|
385 Exiv2::Metadatum *item = NULL; |
185 | 386 try { |
387 Exiv2::ExifKey ekey(key); | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
388 Exiv2::ExifData::iterator pos = exif->exifData().findKey(ekey); |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
389 if (pos == exif->exifData().end()) return NULL; |
185 | 390 item = &*pos; |
391 } | |
392 catch (Exiv2::AnyError& e) { | |
393 try { | |
394 Exiv2::IptcKey ekey(key); | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
395 Exiv2::IptcData::iterator pos = exif->iptcData().findKey(ekey); |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
396 if (pos == exif->iptcData().end()) return NULL; |
185 | 397 item = &*pos; |
398 } | |
399 catch (Exiv2::AnyError& e) { | |
200 | 400 #if EXIV2_TEST_VERSION(0,16,0) |
185 | 401 Exiv2::XmpKey ekey(key); |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
402 Exiv2::XmpData::iterator pos = exif->xmpData().findKey(ekey); |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
403 if (pos == exif->xmpData().end()) return NULL; |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
404 item = &*pos; |
200 | 405 #endif |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
406 } |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
407 } |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
408 return (ExifItem *)item; |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
409 } |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
410 catch (Exiv2::AnyError& e) { |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
411 std::cout << "Caught Exiv2 exception '" << e << "'\n"; |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
412 return NULL; |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
413 } |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
414 } |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
415 |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
416 ExifItem *exif_add_item(ExifData *exif, const gchar *key) |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
417 { |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
418 try { |
452
0a69a779395a
fixed color profile code for older versions of exiv2
nadvornik
parents:
449
diff
changeset
|
419 Exiv2::Metadatum *item = NULL; |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
420 try { |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
421 Exiv2::ExifKey ekey(key); |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
422 exif->exifData().add(ekey, NULL); |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
423 Exiv2::ExifData::iterator pos = exif->exifData().end(); // a hack, there should be a better way to get the currently added item |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
424 pos--; |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
425 item = &*pos; |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
426 } |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
427 catch (Exiv2::AnyError& e) { |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
428 try { |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
429 Exiv2::IptcKey ekey(key); |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
430 exif->iptcData().add(ekey, NULL); |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
431 Exiv2::IptcData::iterator pos = exif->iptcData().end(); |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
432 pos--; |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
433 item = &*pos; |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
434 } |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
435 catch (Exiv2::AnyError& e) { |
200 | 436 #if EXIV2_TEST_VERSION(0,16,0) |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
437 Exiv2::XmpKey ekey(key); |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
438 exif->xmpData().add(ekey, NULL); |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
439 Exiv2::XmpData::iterator pos = exif->xmpData().end(); |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
440 pos--; |
185 | 441 item = &*pos; |
200 | 442 #endif |
185 | 443 } |
444 } | |
184 | 445 return (ExifItem *)item; |
183 | 446 } |
447 catch (Exiv2::AnyError& e) { | |
184 | 448 std::cout << "Caught Exiv2 exception '" << e << "'\n"; |
449 return NULL; | |
450 } | |
451 } | |
452 | |
453 | |
454 ExifItem *exif_get_first_item(ExifData *exif) | |
455 { | |
456 try { | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
457 exif->exifIter = exif->exifData().begin(); |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
458 exif->iptcIter = exif->iptcData().begin(); |
200 | 459 #if EXIV2_TEST_VERSION(0,16,0) |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
460 exif->xmpIter = exif->xmpData().begin(); |
200 | 461 #endif |
995 | 462 if (exif->exifIter != exif->exifData().end()) |
185 | 463 { |
464 const Exiv2::Metadatum *item = &*exif->exifIter; | |
465 exif->exifIter++; | |
466 return (ExifItem *)item; | |
467 } | |
995 | 468 if (exif->iptcIter != exif->iptcData().end()) |
185 | 469 { |
470 const Exiv2::Metadatum *item = &*exif->iptcIter; | |
471 exif->iptcIter++; | |
472 return (ExifItem *)item; | |
473 } | |
200 | 474 #if EXIV2_TEST_VERSION(0,16,0) |
995 | 475 if (exif->xmpIter != exif->xmpData().end()) |
185 | 476 { |
477 const Exiv2::Metadatum *item = &*exif->xmpIter; | |
478 exif->xmpIter++; | |
479 return (ExifItem *)item; | |
480 } | |
200 | 481 #endif |
185 | 482 return NULL; |
483 | |
184 | 484 } |
485 catch (Exiv2::AnyError& e) { | |
486 std::cout << "Caught Exiv2 exception '" << e << "'\n"; | |
183 | 487 return NULL; |
488 } | |
178 | 489 } |
490 | |
491 ExifItem *exif_get_next_item(ExifData *exif) | |
492 { | |
184 | 493 try { |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
494 if (exif->exifIter != exif->exifData().end()) |
185 | 495 { |
496 const Exiv2::Metadatum *item = &*exif->exifIter; | |
497 exif->exifIter++; | |
498 return (ExifItem *)item; | |
499 } | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
500 if (exif->iptcIter != exif->iptcData().end()) |
185 | 501 { |
502 const Exiv2::Metadatum *item = &*exif->iptcIter; | |
503 exif->iptcIter++; | |
504 return (ExifItem *)item; | |
505 } | |
200 | 506 #if EXIV2_TEST_VERSION(0,16,0) |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
507 if (exif->xmpIter != exif->xmpData().end()) |
185 | 508 { |
509 const Exiv2::Metadatum *item = &*exif->xmpIter; | |
510 exif->xmpIter++; | |
511 return (ExifItem *)item; | |
512 } | |
200 | 513 #endif |
185 | 514 return NULL; |
184 | 515 } |
516 catch (Exiv2::AnyError& e) { | |
517 std::cout << "Caught Exiv2 exception '" << e << "'\n"; | |
518 return NULL; | |
519 } | |
178 | 520 } |
521 | |
185 | 522 char *exif_item_get_tag_name(ExifItem *item) |
178 | 523 { |
184 | 524 try { |
525 if (!item) return NULL; | |
185 | 526 return g_strdup(((Exiv2::Metadatum *)item)->key().c_str()); |
184 | 527 } |
528 catch (Exiv2::AnyError& e) { | |
529 std::cout << "Caught Exiv2 exception '" << e << "'\n"; | |
530 return NULL; | |
531 } | |
178 | 532 } |
533 | |
534 guint exif_item_get_tag_id(ExifItem *item) | |
535 { | |
184 | 536 try { |
537 if (!item) return 0; | |
185 | 538 return ((Exiv2::Metadatum *)item)->tag(); |
184 | 539 } |
540 catch (Exiv2::AnyError& e) { | |
541 std::cout << "Caught Exiv2 exception '" << e << "'\n"; | |
542 return 0; | |
543 } | |
178 | 544 } |
545 | |
546 guint exif_item_get_elements(ExifItem *item) | |
547 { | |
184 | 548 try { |
549 if (!item) return 0; | |
185 | 550 return ((Exiv2::Metadatum *)item)->count(); |
184 | 551 } |
552 catch (Exiv2::AnyError& e) { | |
553 std::cout << "Caught Exiv2 exception '" << e << "'\n"; | |
185 | 554 return 0; |
184 | 555 } |
178 | 556 } |
557 | |
558 char *exif_item_get_data(ExifItem *item, guint *data_len) | |
559 { | |
414
49c1cbe058ae
partially fixed reading embedded color profiles with exiv2
nadvornik
parents:
304
diff
changeset
|
560 try { |
49c1cbe058ae
partially fixed reading embedded color profiles with exiv2
nadvornik
parents:
304
diff
changeset
|
561 if (!item) return 0; |
49c1cbe058ae
partially fixed reading embedded color profiles with exiv2
nadvornik
parents:
304
diff
changeset
|
562 Exiv2::Metadatum *md = (Exiv2::Metadatum *)item; |
855 | 563 if (data_len) *data_len = md->size(); |
414
49c1cbe058ae
partially fixed reading embedded color profiles with exiv2
nadvornik
parents:
304
diff
changeset
|
564 char *data = (char *)g_malloc(md->size()); |
49c1cbe058ae
partially fixed reading embedded color profiles with exiv2
nadvornik
parents:
304
diff
changeset
|
565 long res = md->copy((Exiv2::byte *)data, Exiv2::littleEndian /* should not matter */); |
49c1cbe058ae
partially fixed reading embedded color profiles with exiv2
nadvornik
parents:
304
diff
changeset
|
566 g_assert(res == md->size()); |
49c1cbe058ae
partially fixed reading embedded color profiles with exiv2
nadvornik
parents:
304
diff
changeset
|
567 return data; |
49c1cbe058ae
partially fixed reading embedded color profiles with exiv2
nadvornik
parents:
304
diff
changeset
|
568 } |
49c1cbe058ae
partially fixed reading embedded color profiles with exiv2
nadvornik
parents:
304
diff
changeset
|
569 catch (Exiv2::AnyError& e) { |
49c1cbe058ae
partially fixed reading embedded color profiles with exiv2
nadvornik
parents:
304
diff
changeset
|
570 std::cout << "Caught Exiv2 exception '" << e << "'\n"; |
49c1cbe058ae
partially fixed reading embedded color profiles with exiv2
nadvornik
parents:
304
diff
changeset
|
571 return NULL; |
49c1cbe058ae
partially fixed reading embedded color profiles with exiv2
nadvornik
parents:
304
diff
changeset
|
572 } |
178 | 573 } |
574 | |
182 | 575 char *exif_item_get_description(ExifItem *item) |
178 | 576 { |
184 | 577 try { |
578 if (!item) return NULL; | |
1053
77ca9a5d42be
fixed charset of exiv2 strings in non-utf8 locales
nadvornik
parents:
1052
diff
changeset
|
579 return g_locale_to_utf8(((Exiv2::Metadatum *)item)->tagLabel().c_str(), -1, NULL, NULL, NULL); |
184 | 580 } |
185 | 581 catch (std::exception& e) { |
582 // std::cout << "Caught Exiv2 exception '" << e << "'\n"; | |
184 | 583 return NULL; |
584 } | |
178 | 585 } |
586 | |
587 /* | |
588 invalidTypeId, unsignedByte, asciiString, unsignedShort, | |
589 unsignedLong, unsignedRational, signedByte, undefined, | |
590 signedShort, signedLong, signedRational, string, | |
591 date, time, comment, directory, | |
592 xmpText, xmpAlt, xmpBag, xmpSeq, | |
995 | 593 langAlt, lastTypeId |
178 | 594 */ |
595 | |
184 | 596 static guint format_id_trans_tbl [] = { |
597 EXIF_FORMAT_UNKNOWN, | |
598 EXIF_FORMAT_BYTE_UNSIGNED, | |
599 EXIF_FORMAT_STRING, | |
600 EXIF_FORMAT_SHORT_UNSIGNED, | |
601 EXIF_FORMAT_LONG_UNSIGNED, | |
602 EXIF_FORMAT_RATIONAL_UNSIGNED, | |
603 EXIF_FORMAT_BYTE, | |
604 EXIF_FORMAT_UNDEFINED, | |
605 EXIF_FORMAT_SHORT, | |
606 EXIF_FORMAT_LONG, | |
607 EXIF_FORMAT_RATIONAL, | |
608 EXIF_FORMAT_STRING, | |
609 EXIF_FORMAT_STRING, | |
610 EXIF_FORMAT_STRING, | |
611 EXIF_FORMAT_UNDEFINED, | |
612 EXIF_FORMAT_STRING, | |
613 EXIF_FORMAT_STRING, | |
614 EXIF_FORMAT_STRING, | |
615 EXIF_FORMAT_STRING | |
616 }; | |
617 | |
618 | |
178 | 619 |
620 guint exif_item_get_format_id(ExifItem *item) | |
621 { | |
184 | 622 try { |
623 if (!item) return EXIF_FORMAT_UNKNOWN; | |
185 | 624 guint id = ((Exiv2::Metadatum *)item)->typeId(); |
184 | 625 if (id >= (sizeof(format_id_trans_tbl) / sizeof(format_id_trans_tbl[0])) ) return EXIF_FORMAT_UNKNOWN; |
626 return format_id_trans_tbl[id]; | |
627 } | |
628 catch (Exiv2::AnyError& e) { | |
629 std::cout << "Caught Exiv2 exception '" << e << "'\n"; | |
630 return EXIF_FORMAT_UNKNOWN; | |
631 } | |
178 | 632 } |
184 | 633 |
178 | 634 const char *exif_item_get_format_name(ExifItem *item, gint brief) |
635 { | |
184 | 636 try { |
637 if (!item) return NULL; | |
185 | 638 return ((Exiv2::Metadatum *)item)->typeName(); |
184 | 639 } |
640 catch (Exiv2::AnyError& e) { | |
641 std::cout << "Caught Exiv2 exception '" << e << "'\n"; | |
642 return NULL; | |
643 } | |
178 | 644 } |
645 | |
646 | |
647 gchar *exif_item_get_data_as_text(ExifItem *item) | |
648 { | |
183 | 649 try { |
184 | 650 if (!item) return NULL; |
676 | 651 Exiv2::Metadatum *metadatum = (Exiv2::Metadatum *)item; |
677 | 652 #if EXIV2_TEST_VERSION(0,17,0) |
1053
77ca9a5d42be
fixed charset of exiv2 strings in non-utf8 locales
nadvornik
parents:
1052
diff
changeset
|
653 return g_locale_to_utf8(metadatum->print().c_str(), -1, NULL, NULL, NULL); |
676 | 654 #else |
655 std::stringstream str; | |
656 Exiv2::Exifdatum *exifdatum; | |
657 Exiv2::Iptcdatum *iptcdatum; | |
686 | 658 #if EXIV2_TEST_VERSION(0,16,0) |
676 | 659 Exiv2::Xmpdatum *xmpdatum; |
686 | 660 #endif |
855 | 661 if ((exifdatum = dynamic_cast<Exiv2::Exifdatum *>(metadatum))) |
676 | 662 str << *exifdatum; |
663 else if ((iptcdatum = dynamic_cast<Exiv2::Iptcdatum *>(metadatum))) | |
664 str << *iptcdatum; | |
665 #if EXIV2_TEST_VERSION(0,16,0) | |
666 else if ((xmpdatum = dynamic_cast<Exiv2::Xmpdatum *>(metadatum))) | |
667 str << *xmpdatum; | |
668 #endif | |
669 | |
1053
77ca9a5d42be
fixed charset of exiv2 strings in non-utf8 locales
nadvornik
parents:
1052
diff
changeset
|
670 return g_locale_to_utf8(str.str().c_str(), -1, NULL, NULL, NULL); |
676 | 671 #endif |
183 | 672 } |
673 catch (Exiv2::AnyError& e) { | |
674 return NULL; | |
675 } | |
178 | 676 } |
677 | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
678 gchar *exif_item_get_string(ExifItem *item, int idx) |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
679 { |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
680 try { |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
681 if (!item) return NULL; |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
682 Exiv2::Metadatum *em = (Exiv2::Metadatum *)item; |
200 | 683 #if EXIV2_TEST_VERSION(0,16,0) |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
684 std::string str = em->toString(idx); |
200 | 685 #else |
686 std::string str = em->toString(); // FIXME | |
687 #endif | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
688 if (idx == 0 && str == "") str = em->toString(); |
995 | 689 if (str.length() > 5 && str.substr(0, 5) == "lang=") |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
690 { |
995 | 691 std::string::size_type pos = str.find_first_of(' '); |
692 if (pos != std::string::npos) str = str.substr(pos+1); | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
693 } |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
694 |
1053
77ca9a5d42be
fixed charset of exiv2 strings in non-utf8 locales
nadvornik
parents:
1052
diff
changeset
|
695 // return g_locale_to_utf8(str.c_str(), -1, NULL, NULL, NULL); // FIXME |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
696 return g_strdup(str.c_str()); |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
697 } |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
698 catch (Exiv2::AnyError& e) { |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
699 return NULL; |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
700 } |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
701 } |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
702 |
178 | 703 |
704 gint exif_item_get_integer(ExifItem *item, gint *value) | |
705 { | |
184 | 706 try { |
707 if (!item) return 0; | |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
708 *value = ((Exiv2::Metadatum *)item)->toLong(); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
709 return 1; |
184 | 710 } |
711 catch (Exiv2::AnyError& e) { | |
712 std::cout << "Caught Exiv2 exception '" << e << "'\n"; | |
713 return 0; | |
714 } | |
178 | 715 } |
716 | |
1058
b600689a677e
Fix up few signed vs unsigned warnings: exif_item_get_rational() last parameter is now of guint type.
zas_
parents:
1055
diff
changeset
|
717 ExifRational *exif_item_get_rational(ExifItem *item, gint *sign, guint n) |
178 | 718 { |
184 | 719 try { |
720 if (!item) return NULL; | |
1052 | 721 if (n >= exif_item_get_elements(item)) return NULL; |
722 Exiv2::Rational v = ((Exiv2::Metadatum *)item)->toRational(n); | |
184 | 723 static ExifRational ret; |
724 ret.num = v.first; | |
725 ret.den = v.second; | |
485 | 726 if (sign) *sign = (((Exiv2::Metadatum *)item)->typeId() == Exiv2::signedRational); |
184 | 727 return &ret; |
728 } | |
729 catch (Exiv2::AnyError& e) { | |
730 std::cout << "Caught Exiv2 exception '" << e << "'\n"; | |
731 return NULL; | |
732 } | |
178 | 733 } |
734 | |
1053
77ca9a5d42be
fixed charset of exiv2 strings in non-utf8 locales
nadvornik
parents:
1052
diff
changeset
|
735 gchar *exif_get_tag_description_by_key(const gchar *key) |
178 | 736 { |
184 | 737 try { |
738 Exiv2::ExifKey ekey(key); | |
1053
77ca9a5d42be
fixed charset of exiv2 strings in non-utf8 locales
nadvornik
parents:
1052
diff
changeset
|
739 return g_locale_to_utf8(Exiv2::ExifTags::tagLabel(ekey.tag(), ekey.ifdId ()), -1, NULL, NULL, NULL); |
184 | 740 } |
741 catch (Exiv2::AnyError& e) { | |
742 std::cout << "Caught Exiv2 exception '" << e << "'\n"; | |
743 return NULL; | |
744 } | |
178 | 745 } |
746 | |
1203
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
747 gint exif_update_metadata(ExifData *exif, const gchar *key, const GList *values) |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
748 { |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
749 try { |
1203
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
750 const GList *work = values; |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
751 |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
752 Exiv2::Metadatum *item = NULL; |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
753 try { |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
754 Exiv2::ExifKey ekey(key); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
755 |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
756 Exiv2::ExifData::iterator pos = exif->exifData().findKey(ekey); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
757 while (pos != exif->exifData().end()) |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
758 { |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
759 exif->exifData().erase(pos); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
760 pos = exif->exifData().findKey(ekey); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
761 } |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
762 |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
763 while (work) |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
764 { |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
765 exif->exifData()[key] = (gchar *)work->data; |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
766 work = work->next; |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
767 } |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
768 } |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
769 catch (Exiv2::AnyError& e) { |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
770 try { |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
771 Exiv2::IptcKey ekey(key); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
772 Exiv2::IptcData::iterator pos = exif->iptcData().findKey(ekey); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
773 while (pos != exif->iptcData().end()) |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
774 { |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
775 exif->iptcData().erase(pos); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
776 pos = exif->iptcData().findKey(ekey); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
777 } |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
778 |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
779 while (work) |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
780 { |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
781 exif->iptcData()[key] = (gchar *)work->data; |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
782 work = work->next; |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
783 } |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
784 } |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
785 catch (Exiv2::AnyError& e) { |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
786 #if EXIV2_TEST_VERSION(0,16,0) |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
787 Exiv2::XmpKey ekey(key); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
788 Exiv2::XmpData::iterator pos = exif->xmpData().findKey(ekey); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
789 while (pos != exif->xmpData().end()) |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
790 { |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
791 exif->xmpData().erase(pos); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
792 pos = exif->xmpData().findKey(ekey); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
793 } |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
794 |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
795 while (work) |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
796 { |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
797 exif->xmpData()[key] = (gchar *)work->data; |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
798 work = work->next; |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
799 } |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
800 #endif |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
801 } |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
802 } |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
803 return 1; |
1203
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
804 } |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
805 catch (Exiv2::AnyError& e) { |
1203
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
806 std::cout << "Caught Exiv2 exception '" << e << "'\n"; |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
807 return 0; |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
808 } |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
809 } |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
810 |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
811 |
449 | 812 void exif_add_jpeg_color_profile(ExifData *exif, unsigned char *cp_data, guint cp_length) |
813 { | |
1069 | 814 exif->add_jpeg_color_profile(cp_data, cp_length); |
449 | 815 } |
816 | |
1008 | 817 guchar *exif_get_color_profile(ExifData *exif, guint *data_len) |
449 | 818 { |
1069 | 819 guchar *ret = exif->get_jpeg_color_profile(data_len); |
820 if (ret) return ret; | |
821 | |
449 | 822 ExifItem *prof_item = exif_get_item(exif, "Exif.Image.InterColorProfile"); |
823 if (prof_item && exif_item_get_format_id(prof_item) == EXIF_FORMAT_UNDEFINED) | |
1069 | 824 ret = (guchar *)exif_item_get_data(prof_item, data_len); |
825 return ret; | |
449 | 826 } |
827 | |
1008 | 828 #if EXIV2_TEST_VERSION(0,17,90) |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
829 |
1060 | 830 guchar *exif_get_preview(ExifData *exif, guint *data_len, gint requested_width, gint requested_height) |
1008 | 831 { |
832 if (!exif) return NULL; | |
1048
95c418661be8
updated preview loader to work with current svn version of libexiv2
nadvornik
parents:
1025
diff
changeset
|
833 |
1069 | 834 const char* path = exif->image()->io().path().c_str(); |
1048
95c418661be8
updated preview loader to work with current svn version of libexiv2
nadvornik
parents:
1025
diff
changeset
|
835 /* given image pathname, first do simple (and fast) file extension test */ |
1060 | 836 gboolean is_raw = filter_file_class(path, FORMAT_CLASS_RAWIMAGE); |
837 | |
838 if (!is_raw && requested_width == 0) return NULL; | |
1048
95c418661be8
updated preview loader to work with current svn version of libexiv2
nadvornik
parents:
1025
diff
changeset
|
839 |
1008 | 840 try { |
841 | |
1069 | 842 Exiv2::PreviewManager pm(*exif->image()); |
1048
95c418661be8
updated preview loader to work with current svn version of libexiv2
nadvornik
parents:
1025
diff
changeset
|
843 |
1064 | 844 Exiv2::PreviewPropertiesList list = pm.getPreviewProperties(); |
1008 | 845 |
1048
95c418661be8
updated preview loader to work with current svn version of libexiv2
nadvornik
parents:
1025
diff
changeset
|
846 if (!list.empty()) |
1008 | 847 { |
1060 | 848 Exiv2::PreviewPropertiesList::iterator pos; |
849 Exiv2::PreviewPropertiesList::iterator last = --list.end(); | |
850 | |
851 if (requested_width == 0) | |
852 { | |
853 pos = last; // the largest | |
854 } | |
855 else | |
856 { | |
857 pos = list.begin(); | |
858 while (pos != last) | |
859 { | |
860 if (pos->width_ >= (uint32_t)requested_width && | |
861 pos->height_ >= (uint32_t)requested_height) break; | |
862 ++pos; | |
863 } | |
864 | |
865 // we are not interested in smaller thumbnails in normal image formats - we can use full image instead | |
866 if (!is_raw) | |
867 { | |
868 if (pos->width_ < (uint32_t)requested_width || pos->height_ < (uint32_t)requested_height) return NULL; | |
869 } | |
870 } | |
1048
95c418661be8
updated preview loader to work with current svn version of libexiv2
nadvornik
parents:
1025
diff
changeset
|
871 |
1064 | 872 Exiv2::PreviewImage image = pm.getPreviewImage(*pos); |
1048
95c418661be8
updated preview loader to work with current svn version of libexiv2
nadvornik
parents:
1025
diff
changeset
|
873 |
1064 | 874 Exiv2::DataBuf buf = image.copy(); |
1008 | 875 std::pair<Exiv2::byte*, long> p = buf.release(); |
876 | |
877 *data_len = p.second; | |
1048
95c418661be8
updated preview loader to work with current svn version of libexiv2
nadvornik
parents:
1025
diff
changeset
|
878 return p.first; |
1008 | 879 } |
880 return NULL; | |
881 } | |
882 catch (Exiv2::AnyError& e) { | |
883 std::cout << "Caught Exiv2 exception '" << e << "'\n"; | |
884 return NULL; | |
885 } | |
886 } | |
887 | |
888 void exif_free_preview(guchar *buf) | |
889 { | |
890 delete[] (Exiv2::byte*)buf; | |
891 } | |
892 #endif | |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
893 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
894 } |
1008 | 895 #if !EXIV2_TEST_VERSION(0,17,90) |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
896 |
995 | 897 /* This is a dirty hack to support raw file preview, bassed on |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
898 tiffparse.cpp from Exiv2 examples */ |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
899 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
900 class RawFile { |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
901 public: |
995 | 902 |
1008 | 903 RawFile(Exiv2::BasicIo &io); |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
904 ~RawFile(); |
995 | 905 |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
906 const Exiv2::Value *find(uint16_t tag, uint16_t group); |
995 | 907 |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
908 unsigned long preview_offset(); |
995 | 909 |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
910 private: |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
911 int type; |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
912 Exiv2::TiffComponent::AutoPtr rootDir; |
1008 | 913 Exiv2::BasicIo &io_; |
914 const Exiv2::byte *map_data; | |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
915 size_t map_len; |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
916 unsigned long offset; |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
917 }; |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
918 |
1008 | 919 typedef struct _UnmapData UnmapData; |
920 struct _UnmapData | |
921 { | |
922 guchar *ptr; | |
923 guchar *map_data; | |
924 size_t map_len; | |
925 }; | |
926 | |
927 static GList *exif_unmap_list = 0; | |
928 | |
1060 | 929 extern "C" guchar *exif_get_preview(ExifData *exif, guint *data_len, gint requested_width, gint requested_height) |
1008 | 930 { |
931 unsigned long offset; | |
932 | |
933 if (!exif) return NULL; | |
1069 | 934 const char* path = exif->image()->io().path().c_str(); |
1008 | 935 |
936 /* given image pathname, first do simple (and fast) file extension test */ | |
1048
95c418661be8
updated preview loader to work with current svn version of libexiv2
nadvornik
parents:
1025
diff
changeset
|
937 if (!filter_file_class(path, FORMAT_CLASS_RAWIMAGE)) return NULL; |
1008 | 938 |
939 try { | |
940 struct stat st; | |
941 guchar *map_data; | |
942 size_t map_len; | |
943 UnmapData *ud; | |
944 int fd; | |
945 | |
1069 | 946 RawFile rf(exif->image()->io()); |
1008 | 947 offset = rf.preview_offset(); |
948 DEBUG_1("%s: offset %lu", path, offset); | |
949 | |
950 fd = open(path, O_RDONLY); | |
951 if (fd == -1) | |
952 { | |
1048
95c418661be8
updated preview loader to work with current svn version of libexiv2
nadvornik
parents:
1025
diff
changeset
|
953 return NULL; |
1008 | 954 } |
955 | |
956 if (fstat(fd, &st) == -1) | |
957 { | |
958 close(fd); | |
1048
95c418661be8
updated preview loader to work with current svn version of libexiv2
nadvornik
parents:
1025
diff
changeset
|
959 return NULL; |
1008 | 960 } |
961 map_len = st.st_size; | |
962 map_data = (guchar *) mmap(0, map_len, PROT_READ, MAP_PRIVATE, fd, 0); | |
963 close(fd); | |
964 if (map_data == MAP_FAILED) | |
965 { | |
1048
95c418661be8
updated preview loader to work with current svn version of libexiv2
nadvornik
parents:
1025
diff
changeset
|
966 return NULL; |
1008 | 967 } |
968 *data_len = map_len - offset; | |
969 ud = g_new(UnmapData, 1); | |
970 ud->ptr = map_data + offset; | |
971 ud->map_data = map_data; | |
972 ud->map_len = map_len; | |
973 | |
974 exif_unmap_list = g_list_prepend(exif_unmap_list, ud); | |
975 return ud->ptr; | |
976 | |
977 } | |
978 catch (Exiv2::AnyError& e) { | |
979 std::cout << "Caught Exiv2 exception '" << e << "'\n"; | |
980 } | |
981 return NULL; | |
982 | |
983 } | |
984 | |
985 void exif_free_preview(guchar *buf) | |
986 { | |
987 GList *work = exif_unmap_list; | |
988 | |
989 while (work) | |
990 { | |
991 UnmapData *ud = (UnmapData *)work->data; | |
992 if (ud->ptr == buf) | |
993 { | |
994 munmap(ud->map_data, ud->map_len); | |
995 exif_unmap_list = g_list_remove_link(exif_unmap_list, work); | |
996 g_free(ud); | |
997 return; | |
998 } | |
1025 | 999 work = work->next; |
1008 | 1000 } |
1001 g_assert_not_reached(); | |
1002 } | |
1003 | |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1004 using namespace Exiv2; |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1005 |
1008 | 1006 RawFile::RawFile(BasicIo &io) : io_(io), map_data(NULL), map_len(0), offset(0) |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1007 { |
1008 | 1008 /* |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1009 struct stat st; |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1010 if (fstat(fd, &st) == -1) |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1011 { |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1012 throw Error(14); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1013 } |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1014 map_len = st.st_size; |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1015 map_data = (Exiv2::byte *) mmap(0, map_len, PROT_READ, MAP_PRIVATE, fd, 0); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1016 if (map_data == MAP_FAILED) |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1017 { |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1018 throw Error(14); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1019 } |
1008 | 1020 */ |
1021 if (io.open() != 0) { | |
1022 throw Error(9, io.path(), strError()); | |
1023 } | |
1024 | |
1025 map_data = io.mmap(); | |
1026 map_len = io.size(); | |
1027 | |
1028 | |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1029 type = Exiv2::ImageFactory::getType(map_data, map_len); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1030 |
200 | 1031 #if EXIV2_TEST_VERSION(0,16,0) |
201 | 1032 TiffHeaderBase *tiffHeader = NULL; |
200 | 1033 #else |
201 | 1034 TiffHeade2 *tiffHeader = NULL; |
200 | 1035 #endif |
201 | 1036 Cr2Header *cr2Header = NULL; |
1037 | |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1038 switch (type) { |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1039 case Exiv2::ImageType::tiff: |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1040 tiffHeader = new TiffHeade2(); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1041 break; |
201 | 1042 case Exiv2::ImageType::cr2: |
1043 cr2Header = new Cr2Header(); | |
1044 break; | |
200 | 1045 #if EXIV2_TEST_VERSION(0,16,0) |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1046 case Exiv2::ImageType::orf: |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1047 tiffHeader = new OrfHeader(); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1048 break; |
200 | 1049 #endif |
1050 #if EXIV2_TEST_VERSION(0,13,0) | |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1051 case Exiv2::ImageType::raf: |
995 | 1052 if (map_len < 84 + 4) throw Error(14); |
1053 offset = getULong(map_data + 84, bigEndian); | |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1054 return; |
200 | 1055 #endif |
191 | 1056 case Exiv2::ImageType::crw: |
1057 { | |
1058 // Parse the image, starting with a CIFF header component | |
1059 Exiv2::CiffHeader::AutoPtr parseTree(new Exiv2::CiffHeader); | |
1060 parseTree->read(map_data, map_len); | |
995 | 1061 CiffComponent *entry = parseTree->findComponent(0x2007, 0); |
191 | 1062 if (entry) offset = entry->pData() - map_data; |
1063 return; | |
1064 } | |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1065 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1066 default: |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1067 throw Error(3, "RAW"); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1068 } |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1069 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1070 // process tiff-like formats |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1071 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1072 TiffCompFactoryFct createFct = TiffCreator::create; |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1073 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1074 rootDir = createFct(Tag::root, Group::none); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1075 if (0 == rootDir.get()) { |
995 | 1076 throw Error(1, "No root element defined in TIFF structure"); |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1077 } |
201 | 1078 |
1079 if (tiffHeader) | |
1080 { | |
1081 if (!tiffHeader->read(map_data, map_len)) throw Error(3, "TIFF"); | |
200 | 1082 #if EXIV2_TEST_VERSION(0,16,0) |
201 | 1083 rootDir->setStart(map_data + tiffHeader->offset()); |
200 | 1084 #else |
201 | 1085 rootDir->setStart(map_data + tiffHeader->ifdOffset()); |
200 | 1086 #endif |
201 | 1087 } |
1088 | |
1089 if (cr2Header) | |
1090 { | |
1091 rootDir->setStart(map_data + cr2Header->offset()); | |
1092 } | |
1093 | |
1094 TiffRwState::AutoPtr state(new TiffRwState(tiffHeader ? tiffHeader->byteOrder() : littleEndian, 0, createFct)); | |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1095 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1096 TiffReader reader(map_data, |
995 | 1097 map_len, |
1098 rootDir.get(), | |
1099 state); | |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1100 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1101 rootDir->accept(reader); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1102 |
995 | 1103 if (tiffHeader) |
201 | 1104 delete tiffHeader; |
995 | 1105 if (cr2Header) |
201 | 1106 delete cr2Header; |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1107 } |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1108 |
609
b690cecbf5b8
Use function(void) instead of function() for declaring functions which
zas_
parents:
586
diff
changeset
|
1109 RawFile::~RawFile(void) |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1110 { |
1008 | 1111 io_.munmap(); |
1112 io_.close(); | |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1113 } |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1114 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1115 const Value * RawFile::find(uint16_t tag, uint16_t group) |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1116 { |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1117 TiffFinder finder(tag, group); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1118 rootDir->accept(finder); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1119 TiffEntryBase* te = dynamic_cast<TiffEntryBase*>(finder.result()); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1120 if (te) |
194 | 1121 { |
495 | 1122 DEBUG_1("(tag: %04x %04x) ", tag, group); |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1123 return te->pValue(); |
194 | 1124 } |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1125 else |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1126 return NULL; |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1127 } |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1128 |
609
b690cecbf5b8
Use function(void) instead of function() for declaring functions which
zas_
parents:
586
diff
changeset
|
1129 unsigned long RawFile::preview_offset(void) |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1130 { |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1131 const Value *val; |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1132 if (offset) return offset; |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1133 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1134 if (type == Exiv2::ImageType::cr2) |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1135 { |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1136 val = find(0x111, Group::ifd0); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1137 if (val) return val->toLong(); |
995 | 1138 |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1139 return 0; |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1140 } |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1141 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1142 val = find(0x201, Group::sub0_0); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1143 if (val) return val->toLong(); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1144 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1145 val = find(0x201, Group::ifd0); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1146 if (val) return val->toLong(); |
995 | 1147 |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1148 val = find(0x201, Group::ignr); // for PEF files, originally it was probably ifd2 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1149 if (val) return val->toLong(); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1150 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1151 val = find(0x111, Group::sub0_1); // dng |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1152 if (val) return val->toLong(); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1153 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1154 return 0; |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1155 } |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1156 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1157 |
1008 | 1158 #endif |
178 | 1159 |
1160 | |
995 | 1161 #endif |
178 | 1162 /* HAVE_EXIV2 */ |
1055
1646720364cf
Adding a vim modeline to all files - patch by Klaus Ethgen
nadvornik
parents:
1053
diff
changeset
|
1163 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ |