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