Mercurial > geeqie
annotate src/exiv2.cc @ 1216:d9082eeb0392
file class made configurable in preferences
author | nadvornik |
---|---|
date | Mon, 22 Dec 2008 23:25:15 +0000 |
parents | e2bbe90b0dcd |
children | ebfd305d902e |
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 | |
1211 | 79 virtual void writeMetadata(gchar *path = NULL) |
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 | |
1211 | 257 virtual void writeMetadata(gchar *path = NULL) |
1069 | 258 { |
1070 | 259 #if EXIV2_TEST_VERSION(0,17,0) |
260 syncExifWithXmp(exifData_, xmpData_); | |
261 #endif | |
1211 | 262 if (!path) |
1069 | 263 { |
1211 | 264 #if EXIV2_TEST_VERSION(0,17,0) |
265 if (options->metadata.save_legacy_IPTC) copyXmpToIptc(xmpData_, iptcData_); | |
266 #endif | |
267 imageData_->image()->setExifData(exifData_); | |
268 imageData_->image()->setIptcData(iptcData_); | |
269 imageData_->image()->setXmpData(xmpData_); | |
270 imageData_->image()->writeMetadata(); | |
271 } | |
1069 | 272 else |
273 { | |
1071 | 274 #if EXIV2_TEST_VERSION(0,17,0) |
1211 | 275 gchar *pathl = path_from_utf8(path);; |
1071 | 276 |
1211 | 277 Exiv2::Image::AutoPtr sidecar = Exiv2::ImageFactory::create(Exiv2::ImageType::xmp, pathl); |
1071 | 278 |
1211 | 279 g_free(pathl); |
280 | |
281 sidecar->setXmpData(xmpData_); | |
282 sidecar->writeMetadata(); | |
283 #else | |
284 throw Exiv2::Error(3, "xmp"); | |
1071 | 285 #endif |
1069 | 286 } |
287 } | |
288 | |
289 virtual Exiv2::Image *image() | |
290 { | |
291 return imageData_->image(); | |
292 } | |
293 | |
294 virtual Exiv2::ExifData &exifData () | |
295 { | |
296 return exifData_; | |
297 } | |
298 | |
299 virtual Exiv2::IptcData &iptcData () | |
300 { | |
301 return iptcData_; | |
302 } | |
303 | |
304 #if EXIV2_TEST_VERSION(0,16,0) | |
305 virtual Exiv2::XmpData &xmpData () | |
306 { | |
307 return xmpData_; | |
308 } | |
309 #endif | |
310 | |
311 virtual void add_jpeg_color_profile(unsigned char *cp_data, guint cp_length) | |
312 { | |
313 imageData_->add_jpeg_color_profile(cp_data, cp_length); | |
314 } | |
315 | |
316 virtual guchar *get_jpeg_color_profile(guint *data_len) | |
317 { | |
318 return imageData_->get_jpeg_color_profile(data_len); | |
319 } | |
320 }; | |
321 | |
322 | |
323 | |
324 | |
184 | 325 extern "C" { |
178 | 326 |
1203
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
327 static void _ExifDataProcessed_update_xmp(gpointer key, gpointer value, gpointer data) |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
328 { |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
329 exif_update_metadata((ExifData *)data, (gchar *)key, (GList *)value); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
330 } |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
331 |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
332 ExifData *exif_read(gchar *path, gchar *sidecar_path, GHashTable *modified_xmp) |
178 | 333 { |
506
fc9c8a3e1a8b
Handle the newline in DEBUG_N() macro instead of adding one
zas_
parents:
496
diff
changeset
|
334 DEBUG_1("exif read %s, sidecar: %s", path, sidecar_path ? sidecar_path : "-"); |
178 | 335 try { |
1203
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
336 return new _ExifDataProcessed(path, sidecar_path, modified_xmp); |
178 | 337 } |
338 catch (Exiv2::AnyError& e) { | |
339 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
|
340 return NULL; |
178 | 341 } |
179
37004d5a584a
and first version that actually shows some exif data (see advanced view)
nadvornik
parents:
178
diff
changeset
|
342 |
178 | 343 } |
344 | |
1211 | 345 gboolean exif_write(ExifData *exif) |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
346 { |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
347 try { |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
348 exif->writeMetadata(); |
1211 | 349 return TRUE; |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
350 } |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
351 catch (Exiv2::AnyError& e) { |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
352 std::cout << "Caught Exiv2 exception '" << e << "'\n"; |
1211 | 353 return FALSE; |
354 } | |
355 } | |
356 | |
357 gboolean exif_write_sidecar(ExifData *exif, gchar *path) | |
358 { | |
359 try { | |
360 exif->writeMetadata(path); | |
361 return TRUE; | |
362 } | |
363 catch (Exiv2::AnyError& e) { | |
364 std::cout << "Caught Exiv2 exception '" << e << "'\n"; | |
365 return FALSE; | |
187
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 } |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
369 |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
370 |
178 | 371 void exif_free(ExifData *exif) |
372 { | |
1072 | 373 if (!exif) return; |
1069 | 374 g_assert(dynamic_cast<_ExifDataProcessed *>(exif)); // this should not be called on ExifDataOriginal |
182 | 375 delete exif; |
178 | 376 } |
377 | |
1069 | 378 ExifData *exif_get_original(ExifData *exif) |
379 { | |
380 return exif->original(); | |
381 } | |
382 | |
383 | |
184 | 384 ExifItem *exif_get_item(ExifData *exif, const gchar *key) |
178 | 385 { |
183 | 386 try { |
452
0a69a779395a
fixed color profile code for older versions of exiv2
nadvornik
parents:
449
diff
changeset
|
387 Exiv2::Metadatum *item = NULL; |
185 | 388 try { |
389 Exiv2::ExifKey ekey(key); | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
390 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
|
391 if (pos == exif->exifData().end()) return NULL; |
185 | 392 item = &*pos; |
393 } | |
394 catch (Exiv2::AnyError& e) { | |
395 try { | |
396 Exiv2::IptcKey ekey(key); | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
397 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
|
398 if (pos == exif->iptcData().end()) return NULL; |
185 | 399 item = &*pos; |
400 } | |
401 catch (Exiv2::AnyError& e) { | |
200 | 402 #if EXIV2_TEST_VERSION(0,16,0) |
185 | 403 Exiv2::XmpKey ekey(key); |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
404 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
|
405 if (pos == exif->xmpData().end()) return NULL; |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
406 item = &*pos; |
200 | 407 #endif |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
408 } |
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 return (ExifItem *)item; |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
411 } |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
412 catch (Exiv2::AnyError& e) { |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
413 std::cout << "Caught Exiv2 exception '" << e << "'\n"; |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
414 return NULL; |
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 } |
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 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
|
419 { |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
420 try { |
452
0a69a779395a
fixed color profile code for older versions of exiv2
nadvornik
parents:
449
diff
changeset
|
421 Exiv2::Metadatum *item = NULL; |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
422 try { |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
423 Exiv2::ExifKey ekey(key); |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
424 exif->exifData().add(ekey, NULL); |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
425 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
|
426 pos--; |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
427 item = &*pos; |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
428 } |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
429 catch (Exiv2::AnyError& e) { |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
430 try { |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
431 Exiv2::IptcKey ekey(key); |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
432 exif->iptcData().add(ekey, NULL); |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
433 Exiv2::IptcData::iterator pos = exif->iptcData().end(); |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
434 pos--; |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
435 item = &*pos; |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
436 } |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
437 catch (Exiv2::AnyError& e) { |
200 | 438 #if EXIV2_TEST_VERSION(0,16,0) |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
439 Exiv2::XmpKey ekey(key); |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
440 exif->xmpData().add(ekey, NULL); |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
441 Exiv2::XmpData::iterator pos = exif->xmpData().end(); |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
442 pos--; |
185 | 443 item = &*pos; |
200 | 444 #endif |
185 | 445 } |
446 } | |
184 | 447 return (ExifItem *)item; |
183 | 448 } |
449 catch (Exiv2::AnyError& e) { | |
184 | 450 std::cout << "Caught Exiv2 exception '" << e << "'\n"; |
451 return NULL; | |
452 } | |
453 } | |
454 | |
455 | |
456 ExifItem *exif_get_first_item(ExifData *exif) | |
457 { | |
458 try { | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
459 exif->exifIter = exif->exifData().begin(); |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
460 exif->iptcIter = exif->iptcData().begin(); |
200 | 461 #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
|
462 exif->xmpIter = exif->xmpData().begin(); |
200 | 463 #endif |
995 | 464 if (exif->exifIter != exif->exifData().end()) |
185 | 465 { |
466 const Exiv2::Metadatum *item = &*exif->exifIter; | |
467 exif->exifIter++; | |
468 return (ExifItem *)item; | |
469 } | |
995 | 470 if (exif->iptcIter != exif->iptcData().end()) |
185 | 471 { |
472 const Exiv2::Metadatum *item = &*exif->iptcIter; | |
473 exif->iptcIter++; | |
474 return (ExifItem *)item; | |
475 } | |
200 | 476 #if EXIV2_TEST_VERSION(0,16,0) |
995 | 477 if (exif->xmpIter != exif->xmpData().end()) |
185 | 478 { |
479 const Exiv2::Metadatum *item = &*exif->xmpIter; | |
480 exif->xmpIter++; | |
481 return (ExifItem *)item; | |
482 } | |
200 | 483 #endif |
185 | 484 return NULL; |
485 | |
184 | 486 } |
487 catch (Exiv2::AnyError& e) { | |
488 std::cout << "Caught Exiv2 exception '" << e << "'\n"; | |
183 | 489 return NULL; |
490 } | |
178 | 491 } |
492 | |
493 ExifItem *exif_get_next_item(ExifData *exif) | |
494 { | |
184 | 495 try { |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
496 if (exif->exifIter != exif->exifData().end()) |
185 | 497 { |
498 const Exiv2::Metadatum *item = &*exif->exifIter; | |
499 exif->exifIter++; | |
500 return (ExifItem *)item; | |
501 } | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
502 if (exif->iptcIter != exif->iptcData().end()) |
185 | 503 { |
504 const Exiv2::Metadatum *item = &*exif->iptcIter; | |
505 exif->iptcIter++; | |
506 return (ExifItem *)item; | |
507 } | |
200 | 508 #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
|
509 if (exif->xmpIter != exif->xmpData().end()) |
185 | 510 { |
511 const Exiv2::Metadatum *item = &*exif->xmpIter; | |
512 exif->xmpIter++; | |
513 return (ExifItem *)item; | |
514 } | |
200 | 515 #endif |
185 | 516 return NULL; |
184 | 517 } |
518 catch (Exiv2::AnyError& e) { | |
519 std::cout << "Caught Exiv2 exception '" << e << "'\n"; | |
520 return NULL; | |
521 } | |
178 | 522 } |
523 | |
185 | 524 char *exif_item_get_tag_name(ExifItem *item) |
178 | 525 { |
184 | 526 try { |
527 if (!item) return NULL; | |
185 | 528 return g_strdup(((Exiv2::Metadatum *)item)->key().c_str()); |
184 | 529 } |
530 catch (Exiv2::AnyError& e) { | |
531 std::cout << "Caught Exiv2 exception '" << e << "'\n"; | |
532 return NULL; | |
533 } | |
178 | 534 } |
535 | |
536 guint exif_item_get_tag_id(ExifItem *item) | |
537 { | |
184 | 538 try { |
539 if (!item) return 0; | |
185 | 540 return ((Exiv2::Metadatum *)item)->tag(); |
184 | 541 } |
542 catch (Exiv2::AnyError& e) { | |
543 std::cout << "Caught Exiv2 exception '" << e << "'\n"; | |
544 return 0; | |
545 } | |
178 | 546 } |
547 | |
548 guint exif_item_get_elements(ExifItem *item) | |
549 { | |
184 | 550 try { |
551 if (!item) return 0; | |
185 | 552 return ((Exiv2::Metadatum *)item)->count(); |
184 | 553 } |
554 catch (Exiv2::AnyError& e) { | |
555 std::cout << "Caught Exiv2 exception '" << e << "'\n"; | |
185 | 556 return 0; |
184 | 557 } |
178 | 558 } |
559 | |
560 char *exif_item_get_data(ExifItem *item, guint *data_len) | |
561 { | |
414
49c1cbe058ae
partially fixed reading embedded color profiles with exiv2
nadvornik
parents:
304
diff
changeset
|
562 try { |
49c1cbe058ae
partially fixed reading embedded color profiles with exiv2
nadvornik
parents:
304
diff
changeset
|
563 if (!item) return 0; |
49c1cbe058ae
partially fixed reading embedded color profiles with exiv2
nadvornik
parents:
304
diff
changeset
|
564 Exiv2::Metadatum *md = (Exiv2::Metadatum *)item; |
855 | 565 if (data_len) *data_len = md->size(); |
414
49c1cbe058ae
partially fixed reading embedded color profiles with exiv2
nadvornik
parents:
304
diff
changeset
|
566 char *data = (char *)g_malloc(md->size()); |
49c1cbe058ae
partially fixed reading embedded color profiles with exiv2
nadvornik
parents:
304
diff
changeset
|
567 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
|
568 g_assert(res == md->size()); |
49c1cbe058ae
partially fixed reading embedded color profiles with exiv2
nadvornik
parents:
304
diff
changeset
|
569 return data; |
49c1cbe058ae
partially fixed reading embedded color profiles with exiv2
nadvornik
parents:
304
diff
changeset
|
570 } |
49c1cbe058ae
partially fixed reading embedded color profiles with exiv2
nadvornik
parents:
304
diff
changeset
|
571 catch (Exiv2::AnyError& e) { |
49c1cbe058ae
partially fixed reading embedded color profiles with exiv2
nadvornik
parents:
304
diff
changeset
|
572 std::cout << "Caught Exiv2 exception '" << e << "'\n"; |
49c1cbe058ae
partially fixed reading embedded color profiles with exiv2
nadvornik
parents:
304
diff
changeset
|
573 return NULL; |
49c1cbe058ae
partially fixed reading embedded color profiles with exiv2
nadvornik
parents:
304
diff
changeset
|
574 } |
178 | 575 } |
576 | |
182 | 577 char *exif_item_get_description(ExifItem *item) |
178 | 578 { |
184 | 579 try { |
580 if (!item) return NULL; | |
1053
77ca9a5d42be
fixed charset of exiv2 strings in non-utf8 locales
nadvornik
parents:
1052
diff
changeset
|
581 return g_locale_to_utf8(((Exiv2::Metadatum *)item)->tagLabel().c_str(), -1, NULL, NULL, NULL); |
184 | 582 } |
185 | 583 catch (std::exception& e) { |
584 // std::cout << "Caught Exiv2 exception '" << e << "'\n"; | |
184 | 585 return NULL; |
586 } | |
178 | 587 } |
588 | |
589 /* | |
590 invalidTypeId, unsignedByte, asciiString, unsignedShort, | |
591 unsignedLong, unsignedRational, signedByte, undefined, | |
592 signedShort, signedLong, signedRational, string, | |
593 date, time, comment, directory, | |
594 xmpText, xmpAlt, xmpBag, xmpSeq, | |
995 | 595 langAlt, lastTypeId |
178 | 596 */ |
597 | |
184 | 598 static guint format_id_trans_tbl [] = { |
599 EXIF_FORMAT_UNKNOWN, | |
600 EXIF_FORMAT_BYTE_UNSIGNED, | |
601 EXIF_FORMAT_STRING, | |
602 EXIF_FORMAT_SHORT_UNSIGNED, | |
603 EXIF_FORMAT_LONG_UNSIGNED, | |
604 EXIF_FORMAT_RATIONAL_UNSIGNED, | |
605 EXIF_FORMAT_BYTE, | |
606 EXIF_FORMAT_UNDEFINED, | |
607 EXIF_FORMAT_SHORT, | |
608 EXIF_FORMAT_LONG, | |
609 EXIF_FORMAT_RATIONAL, | |
610 EXIF_FORMAT_STRING, | |
611 EXIF_FORMAT_STRING, | |
612 EXIF_FORMAT_STRING, | |
613 EXIF_FORMAT_UNDEFINED, | |
614 EXIF_FORMAT_STRING, | |
615 EXIF_FORMAT_STRING, | |
616 EXIF_FORMAT_STRING, | |
617 EXIF_FORMAT_STRING | |
618 }; | |
619 | |
620 | |
178 | 621 |
622 guint exif_item_get_format_id(ExifItem *item) | |
623 { | |
184 | 624 try { |
625 if (!item) return EXIF_FORMAT_UNKNOWN; | |
185 | 626 guint id = ((Exiv2::Metadatum *)item)->typeId(); |
184 | 627 if (id >= (sizeof(format_id_trans_tbl) / sizeof(format_id_trans_tbl[0])) ) return EXIF_FORMAT_UNKNOWN; |
628 return format_id_trans_tbl[id]; | |
629 } | |
630 catch (Exiv2::AnyError& e) { | |
631 std::cout << "Caught Exiv2 exception '" << e << "'\n"; | |
632 return EXIF_FORMAT_UNKNOWN; | |
633 } | |
178 | 634 } |
184 | 635 |
178 | 636 const char *exif_item_get_format_name(ExifItem *item, gint brief) |
637 { | |
184 | 638 try { |
639 if (!item) return NULL; | |
185 | 640 return ((Exiv2::Metadatum *)item)->typeName(); |
184 | 641 } |
642 catch (Exiv2::AnyError& e) { | |
643 std::cout << "Caught Exiv2 exception '" << e << "'\n"; | |
644 return NULL; | |
645 } | |
178 | 646 } |
647 | |
648 | |
649 gchar *exif_item_get_data_as_text(ExifItem *item) | |
650 { | |
183 | 651 try { |
184 | 652 if (!item) return NULL; |
676 | 653 Exiv2::Metadatum *metadatum = (Exiv2::Metadatum *)item; |
677 | 654 #if EXIV2_TEST_VERSION(0,17,0) |
1053
77ca9a5d42be
fixed charset of exiv2 strings in non-utf8 locales
nadvornik
parents:
1052
diff
changeset
|
655 return g_locale_to_utf8(metadatum->print().c_str(), -1, NULL, NULL, NULL); |
676 | 656 #else |
657 std::stringstream str; | |
658 Exiv2::Exifdatum *exifdatum; | |
659 Exiv2::Iptcdatum *iptcdatum; | |
686 | 660 #if EXIV2_TEST_VERSION(0,16,0) |
676 | 661 Exiv2::Xmpdatum *xmpdatum; |
686 | 662 #endif |
855 | 663 if ((exifdatum = dynamic_cast<Exiv2::Exifdatum *>(metadatum))) |
676 | 664 str << *exifdatum; |
665 else if ((iptcdatum = dynamic_cast<Exiv2::Iptcdatum *>(metadatum))) | |
666 str << *iptcdatum; | |
667 #if EXIV2_TEST_VERSION(0,16,0) | |
668 else if ((xmpdatum = dynamic_cast<Exiv2::Xmpdatum *>(metadatum))) | |
669 str << *xmpdatum; | |
670 #endif | |
671 | |
1053
77ca9a5d42be
fixed charset of exiv2 strings in non-utf8 locales
nadvornik
parents:
1052
diff
changeset
|
672 return g_locale_to_utf8(str.str().c_str(), -1, NULL, NULL, NULL); |
676 | 673 #endif |
183 | 674 } |
675 catch (Exiv2::AnyError& e) { | |
676 return NULL; | |
677 } | |
178 | 678 } |
679 | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
680 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
|
681 { |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
682 try { |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
683 if (!item) return NULL; |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
684 Exiv2::Metadatum *em = (Exiv2::Metadatum *)item; |
200 | 685 #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
|
686 std::string str = em->toString(idx); |
200 | 687 #else |
688 std::string str = em->toString(); // FIXME | |
689 #endif | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
690 if (idx == 0 && str == "") str = em->toString(); |
995 | 691 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
|
692 { |
995 | 693 std::string::size_type pos = str.find_first_of(' '); |
694 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
|
695 } |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
696 |
1053
77ca9a5d42be
fixed charset of exiv2 strings in non-utf8 locales
nadvornik
parents:
1052
diff
changeset
|
697 // 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
|
698 return g_strdup(str.c_str()); |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
699 } |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
700 catch (Exiv2::AnyError& e) { |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
701 return NULL; |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
702 } |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
703 } |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
704 |
178 | 705 |
706 gint exif_item_get_integer(ExifItem *item, gint *value) | |
707 { | |
184 | 708 try { |
709 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
|
710 *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
|
711 return 1; |
184 | 712 } |
713 catch (Exiv2::AnyError& e) { | |
714 std::cout << "Caught Exiv2 exception '" << e << "'\n"; | |
715 return 0; | |
716 } | |
178 | 717 } |
718 | |
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
|
719 ExifRational *exif_item_get_rational(ExifItem *item, gint *sign, guint n) |
178 | 720 { |
184 | 721 try { |
722 if (!item) return NULL; | |
1052 | 723 if (n >= exif_item_get_elements(item)) return NULL; |
724 Exiv2::Rational v = ((Exiv2::Metadatum *)item)->toRational(n); | |
184 | 725 static ExifRational ret; |
726 ret.num = v.first; | |
727 ret.den = v.second; | |
485 | 728 if (sign) *sign = (((Exiv2::Metadatum *)item)->typeId() == Exiv2::signedRational); |
184 | 729 return &ret; |
730 } | |
731 catch (Exiv2::AnyError& e) { | |
732 std::cout << "Caught Exiv2 exception '" << e << "'\n"; | |
733 return NULL; | |
734 } | |
178 | 735 } |
736 | |
1053
77ca9a5d42be
fixed charset of exiv2 strings in non-utf8 locales
nadvornik
parents:
1052
diff
changeset
|
737 gchar *exif_get_tag_description_by_key(const gchar *key) |
178 | 738 { |
184 | 739 try { |
740 Exiv2::ExifKey ekey(key); | |
1053
77ca9a5d42be
fixed charset of exiv2 strings in non-utf8 locales
nadvornik
parents:
1052
diff
changeset
|
741 return g_locale_to_utf8(Exiv2::ExifTags::tagLabel(ekey.tag(), ekey.ifdId ()), -1, NULL, NULL, NULL); |
184 | 742 } |
743 catch (Exiv2::AnyError& e) { | |
744 std::cout << "Caught Exiv2 exception '" << e << "'\n"; | |
745 return NULL; | |
746 } | |
178 | 747 } |
748 | |
1203
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
749 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
|
750 { |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
751 try { |
1203
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
752 const GList *work = values; |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
753 |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
754 try { |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
755 Exiv2::ExifKey ekey(key); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
756 |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
757 Exiv2::ExifData::iterator pos = exif->exifData().findKey(ekey); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
758 while (pos != exif->exifData().end()) |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
759 { |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
760 exif->exifData().erase(pos); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
761 pos = exif->exifData().findKey(ekey); |
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 |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
764 while (work) |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
765 { |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
766 exif->exifData()[key] = (gchar *)work->data; |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
767 work = work->next; |
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 } |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
770 catch (Exiv2::AnyError& e) { |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
771 try { |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
772 Exiv2::IptcKey ekey(key); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
773 Exiv2::IptcData::iterator pos = exif->iptcData().findKey(ekey); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
774 while (pos != exif->iptcData().end()) |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
775 { |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
776 exif->iptcData().erase(pos); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
777 pos = exif->iptcData().findKey(ekey); |
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 |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
780 while (work) |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
781 { |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
782 exif->iptcData()[key] = (gchar *)work->data; |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
783 work = work->next; |
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 } |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
786 catch (Exiv2::AnyError& e) { |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
787 #if EXIV2_TEST_VERSION(0,16,0) |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
788 Exiv2::XmpKey ekey(key); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
789 Exiv2::XmpData::iterator pos = exif->xmpData().findKey(ekey); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
790 while (pos != exif->xmpData().end()) |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
791 { |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
792 exif->xmpData().erase(pos); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
793 pos = exif->xmpData().findKey(ekey); |
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 |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
796 while (work) |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
797 { |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
798 exif->xmpData()[key] = (gchar *)work->data; |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
799 work = work->next; |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
800 } |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
801 #endif |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
802 } |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
803 } |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
804 return 1; |
1203
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
805 } |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
806 catch (Exiv2::AnyError& e) { |
1203
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
807 std::cout << "Caught Exiv2 exception '" << e << "'\n"; |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
808 return 0; |
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 |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
812 |
449 | 813 void exif_add_jpeg_color_profile(ExifData *exif, unsigned char *cp_data, guint cp_length) |
814 { | |
1069 | 815 exif->add_jpeg_color_profile(cp_data, cp_length); |
449 | 816 } |
817 | |
1008 | 818 guchar *exif_get_color_profile(ExifData *exif, guint *data_len) |
449 | 819 { |
1069 | 820 guchar *ret = exif->get_jpeg_color_profile(data_len); |
821 if (ret) return ret; | |
822 | |
449 | 823 ExifItem *prof_item = exif_get_item(exif, "Exif.Image.InterColorProfile"); |
824 if (prof_item && exif_item_get_format_id(prof_item) == EXIF_FORMAT_UNDEFINED) | |
1069 | 825 ret = (guchar *)exif_item_get_data(prof_item, data_len); |
826 return ret; | |
449 | 827 } |
828 | |
1008 | 829 #if EXIV2_TEST_VERSION(0,17,90) |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
830 |
1060 | 831 guchar *exif_get_preview(ExifData *exif, guint *data_len, gint requested_width, gint requested_height) |
1008 | 832 { |
833 if (!exif) return NULL; | |
1048
95c418661be8
updated preview loader to work with current svn version of libexiv2
nadvornik
parents:
1025
diff
changeset
|
834 |
1069 | 835 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
|
836 /* given image pathname, first do simple (and fast) file extension test */ |
1060 | 837 gboolean is_raw = filter_file_class(path, FORMAT_CLASS_RAWIMAGE); |
838 | |
839 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
|
840 |
1008 | 841 try { |
842 | |
1069 | 843 Exiv2::PreviewManager pm(*exif->image()); |
1048
95c418661be8
updated preview loader to work with current svn version of libexiv2
nadvornik
parents:
1025
diff
changeset
|
844 |
1064 | 845 Exiv2::PreviewPropertiesList list = pm.getPreviewProperties(); |
1008 | 846 |
1048
95c418661be8
updated preview loader to work with current svn version of libexiv2
nadvornik
parents:
1025
diff
changeset
|
847 if (!list.empty()) |
1008 | 848 { |
1060 | 849 Exiv2::PreviewPropertiesList::iterator pos; |
850 Exiv2::PreviewPropertiesList::iterator last = --list.end(); | |
851 | |
852 if (requested_width == 0) | |
853 { | |
854 pos = last; // the largest | |
855 } | |
856 else | |
857 { | |
858 pos = list.begin(); | |
859 while (pos != last) | |
860 { | |
861 if (pos->width_ >= (uint32_t)requested_width && | |
862 pos->height_ >= (uint32_t)requested_height) break; | |
863 ++pos; | |
864 } | |
865 | |
866 // we are not interested in smaller thumbnails in normal image formats - we can use full image instead | |
867 if (!is_raw) | |
868 { | |
869 if (pos->width_ < (uint32_t)requested_width || pos->height_ < (uint32_t)requested_height) return NULL; | |
870 } | |
871 } | |
1048
95c418661be8
updated preview loader to work with current svn version of libexiv2
nadvornik
parents:
1025
diff
changeset
|
872 |
1064 | 873 Exiv2::PreviewImage image = pm.getPreviewImage(*pos); |
1048
95c418661be8
updated preview loader to work with current svn version of libexiv2
nadvornik
parents:
1025
diff
changeset
|
874 |
1064 | 875 Exiv2::DataBuf buf = image.copy(); |
1008 | 876 std::pair<Exiv2::byte*, long> p = buf.release(); |
877 | |
878 *data_len = p.second; | |
1048
95c418661be8
updated preview loader to work with current svn version of libexiv2
nadvornik
parents:
1025
diff
changeset
|
879 return p.first; |
1008 | 880 } |
881 return NULL; | |
882 } | |
883 catch (Exiv2::AnyError& e) { | |
884 std::cout << "Caught Exiv2 exception '" << e << "'\n"; | |
885 return NULL; | |
886 } | |
887 } | |
888 | |
889 void exif_free_preview(guchar *buf) | |
890 { | |
891 delete[] (Exiv2::byte*)buf; | |
892 } | |
893 #endif | |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
894 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
895 } |
1008 | 896 #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
|
897 |
995 | 898 /* 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
|
899 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
|
900 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
901 class RawFile { |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
902 public: |
995 | 903 |
1008 | 904 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
|
905 ~RawFile(); |
995 | 906 |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
907 const Exiv2::Value *find(uint16_t tag, uint16_t group); |
995 | 908 |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
909 unsigned long preview_offset(); |
995 | 910 |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
911 private: |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
912 int type; |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
913 Exiv2::TiffComponent::AutoPtr rootDir; |
1008 | 914 Exiv2::BasicIo &io_; |
915 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
|
916 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
|
917 unsigned long offset; |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
918 }; |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
919 |
1008 | 920 typedef struct _UnmapData UnmapData; |
921 struct _UnmapData | |
922 { | |
923 guchar *ptr; | |
924 guchar *map_data; | |
925 size_t map_len; | |
926 }; | |
927 | |
928 static GList *exif_unmap_list = 0; | |
929 | |
1060 | 930 extern "C" guchar *exif_get_preview(ExifData *exif, guint *data_len, gint requested_width, gint requested_height) |
1008 | 931 { |
932 unsigned long offset; | |
933 | |
934 if (!exif) return NULL; | |
1069 | 935 const char* path = exif->image()->io().path().c_str(); |
1008 | 936 |
937 /* 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
|
938 if (!filter_file_class(path, FORMAT_CLASS_RAWIMAGE)) return NULL; |
1008 | 939 |
940 try { | |
941 struct stat st; | |
942 guchar *map_data; | |
943 size_t map_len; | |
944 UnmapData *ud; | |
945 int fd; | |
946 | |
1069 | 947 RawFile rf(exif->image()->io()); |
1008 | 948 offset = rf.preview_offset(); |
949 DEBUG_1("%s: offset %lu", path, offset); | |
950 | |
951 fd = open(path, O_RDONLY); | |
952 if (fd == -1) | |
953 { | |
1048
95c418661be8
updated preview loader to work with current svn version of libexiv2
nadvornik
parents:
1025
diff
changeset
|
954 return NULL; |
1008 | 955 } |
956 | |
957 if (fstat(fd, &st) == -1) | |
958 { | |
959 close(fd); | |
1048
95c418661be8
updated preview loader to work with current svn version of libexiv2
nadvornik
parents:
1025
diff
changeset
|
960 return NULL; |
1008 | 961 } |
962 map_len = st.st_size; | |
963 map_data = (guchar *) mmap(0, map_len, PROT_READ, MAP_PRIVATE, fd, 0); | |
964 close(fd); | |
965 if (map_data == MAP_FAILED) | |
966 { | |
1048
95c418661be8
updated preview loader to work with current svn version of libexiv2
nadvornik
parents:
1025
diff
changeset
|
967 return NULL; |
1008 | 968 } |
969 *data_len = map_len - offset; | |
970 ud = g_new(UnmapData, 1); | |
971 ud->ptr = map_data + offset; | |
972 ud->map_data = map_data; | |
973 ud->map_len = map_len; | |
974 | |
975 exif_unmap_list = g_list_prepend(exif_unmap_list, ud); | |
976 return ud->ptr; | |
977 | |
978 } | |
979 catch (Exiv2::AnyError& e) { | |
980 std::cout << "Caught Exiv2 exception '" << e << "'\n"; | |
981 } | |
982 return NULL; | |
983 | |
984 } | |
985 | |
986 void exif_free_preview(guchar *buf) | |
987 { | |
988 GList *work = exif_unmap_list; | |
989 | |
990 while (work) | |
991 { | |
992 UnmapData *ud = (UnmapData *)work->data; | |
993 if (ud->ptr == buf) | |
994 { | |
995 munmap(ud->map_data, ud->map_len); | |
996 exif_unmap_list = g_list_remove_link(exif_unmap_list, work); | |
997 g_free(ud); | |
998 return; | |
999 } | |
1025 | 1000 work = work->next; |
1008 | 1001 } |
1002 g_assert_not_reached(); | |
1003 } | |
1004 | |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1005 using namespace Exiv2; |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1006 |
1008 | 1007 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
|
1008 { |
1008 | 1009 /* |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1010 struct stat st; |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1011 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
|
1012 { |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1013 throw Error(14); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1014 } |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1015 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
|
1016 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
|
1017 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
|
1018 { |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1019 throw Error(14); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1020 } |
1008 | 1021 */ |
1022 if (io.open() != 0) { | |
1023 throw Error(9, io.path(), strError()); | |
1024 } | |
1025 | |
1026 map_data = io.mmap(); | |
1027 map_len = io.size(); | |
1028 | |
1029 | |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1030 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
|
1031 |
200 | 1032 #if EXIV2_TEST_VERSION(0,16,0) |
201 | 1033 TiffHeaderBase *tiffHeader = NULL; |
200 | 1034 #else |
201 | 1035 TiffHeade2 *tiffHeader = NULL; |
200 | 1036 #endif |
201 | 1037 Cr2Header *cr2Header = NULL; |
1038 | |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1039 switch (type) { |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1040 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
|
1041 tiffHeader = new TiffHeade2(); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1042 break; |
201 | 1043 case Exiv2::ImageType::cr2: |
1044 cr2Header = new Cr2Header(); | |
1045 break; | |
200 | 1046 #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
|
1047 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
|
1048 tiffHeader = new OrfHeader(); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1049 break; |
200 | 1050 #endif |
1051 #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
|
1052 case Exiv2::ImageType::raf: |
995 | 1053 if (map_len < 84 + 4) throw Error(14); |
1054 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
|
1055 return; |
200 | 1056 #endif |
191 | 1057 case Exiv2::ImageType::crw: |
1058 { | |
1059 // Parse the image, starting with a CIFF header component | |
1060 Exiv2::CiffHeader::AutoPtr parseTree(new Exiv2::CiffHeader); | |
1061 parseTree->read(map_data, map_len); | |
995 | 1062 CiffComponent *entry = parseTree->findComponent(0x2007, 0); |
191 | 1063 if (entry) offset = entry->pData() - map_data; |
1064 return; | |
1065 } | |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1066 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1067 default: |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1068 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
|
1069 } |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1070 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1071 // 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
|
1072 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1073 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
|
1074 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1075 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
|
1076 if (0 == rootDir.get()) { |
995 | 1077 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
|
1078 } |
201 | 1079 |
1080 if (tiffHeader) | |
1081 { | |
1082 if (!tiffHeader->read(map_data, map_len)) throw Error(3, "TIFF"); | |
200 | 1083 #if EXIV2_TEST_VERSION(0,16,0) |
201 | 1084 rootDir->setStart(map_data + tiffHeader->offset()); |
200 | 1085 #else |
201 | 1086 rootDir->setStart(map_data + tiffHeader->ifdOffset()); |
200 | 1087 #endif |
201 | 1088 } |
1089 | |
1090 if (cr2Header) | |
1091 { | |
1092 rootDir->setStart(map_data + cr2Header->offset()); | |
1093 } | |
1094 | |
1095 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
|
1096 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1097 TiffReader reader(map_data, |
995 | 1098 map_len, |
1099 rootDir.get(), | |
1100 state); | |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1101 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1102 rootDir->accept(reader); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1103 |
995 | 1104 if (tiffHeader) |
201 | 1105 delete tiffHeader; |
995 | 1106 if (cr2Header) |
201 | 1107 delete cr2Header; |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1108 } |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1109 |
609
b690cecbf5b8
Use function(void) instead of function() for declaring functions which
zas_
parents:
586
diff
changeset
|
1110 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
|
1111 { |
1008 | 1112 io_.munmap(); |
1113 io_.close(); | |
186
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 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1116 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
|
1117 { |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1118 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
|
1119 rootDir->accept(finder); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1120 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
|
1121 if (te) |
194 | 1122 { |
495 | 1123 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
|
1124 return te->pValue(); |
194 | 1125 } |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1126 else |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1127 return NULL; |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1128 } |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1129 |
609
b690cecbf5b8
Use function(void) instead of function() for declaring functions which
zas_
parents:
586
diff
changeset
|
1130 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
|
1131 { |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1132 const Value *val; |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1133 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
|
1134 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1135 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
|
1136 { |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1137 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
|
1138 if (val) return val->toLong(); |
995 | 1139 |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1140 return 0; |
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 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1143 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
|
1144 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
|
1145 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1146 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
|
1147 if (val) return val->toLong(); |
995 | 1148 |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1149 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
|
1150 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
|
1151 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1152 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
|
1153 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
|
1154 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1155 return 0; |
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 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1158 |
1008 | 1159 #endif |
178 | 1160 |
1161 | |
995 | 1162 #endif |
178 | 1163 /* HAVE_EXIV2 */ |
1055
1646720364cf
Adding a vim modeline to all files - patch by Klaus Ethgen
nadvornik
parents:
1053
diff
changeset
|
1164 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ |