annotate src/exiv2.cc @ 1053:77ca9a5d42be

fixed charset of exiv2 strings in non-utf8 locales
author nadvornik
date Sat, 04 Oct 2008 20:28:31 +0000
parents 338c21c87ff5
children 1646720364cf
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
475
48c8e49b571c updated copyright in source files
nadvornik
parents: 452
diff changeset
1 /*
48c8e49b571c updated copyright in source files
nadvornik
parents: 452
diff changeset
2 * Geeqie
48c8e49b571c updated copyright in source files
nadvornik
parents: 452
diff changeset
3 * Copyright (C) 2008 The Geeqie Team
48c8e49b571c updated copyright in source files
nadvornik
parents: 452
diff changeset
4 *
48c8e49b571c updated copyright in source files
nadvornik
parents: 452
diff changeset
5 * Author: Vladimir Nadvornik
48c8e49b571c updated copyright in source files
nadvornik
parents: 452
diff changeset
6 *
48c8e49b571c updated copyright in source files
nadvornik
parents: 452
diff changeset
7 * This software is released under the GNU General Public License (GNU GPL).
48c8e49b571c updated copyright in source files
nadvornik
parents: 452
diff changeset
8 * Please read the included file COPYING for more information.
48c8e49b571c updated copyright in source files
nadvornik
parents: 452
diff changeset
9 * This software comes with no warranty of any kind, use at your own risk!
48c8e49b571c updated copyright in source files
nadvornik
parents: 452
diff changeset
10 */
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
11
686
c0dda0ffb931 configure.in was rewritten:
bruclik
parents: 677
diff changeset
12 #include "config.h"
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
13
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
14 #ifdef HAVE_EXIV2
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
15
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
16 #include <exiv2/image.hpp>
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
17 #include <exiv2/exif.hpp>
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
18 #include <iostream>
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
19
200
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
20 // EXIV2_TEST_VERSION is defined in Exiv2 0.15 and newer.
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
21 #ifndef EXIV2_TEST_VERSION
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
22 # define EXIV2_TEST_VERSION(major,minor,patch) \
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
23 ( EXIV2_VERSION >= EXIV2_MAKE_VERSION(major,minor,patch) )
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
24 #endif
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
25
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
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
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
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
19df9953a5d1 crw preview support with exiv2
nadvornik
parents: 188
diff changeset
39 #include <exiv2/crwimage.hpp>
200
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
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
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
42 #endif
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
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
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
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
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
47 #else
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
48 #include <exiv2/preview.hpp>
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
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
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
51
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
52 extern "C" {
995
6ca2c5fd7b13 Whitespaces cleanup.
zas_
parents: 855
diff changeset
53 #include <glib.h>
507
135570a8bd96 Move debug macros from main.h to new debug.h.
zas_
parents: 506
diff changeset
54
281
9995c5fb202a gqview.h -> main.h
zas_
parents: 212
diff changeset
55 #include "main.h"
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
56 #include "exif.h"
507
135570a8bd96 Move debug macros from main.h to new debug.h.
zas_
parents: 506
diff changeset
57
586
905688aa2317 split filelist.c to filefilter.c and filedata.c
nadvornik
parents: 507
diff changeset
58 #include "filefilter.h"
496
a1f13fab6686 fixed a bug in opening files with non-utf8 locales in exiv2.cc
nadvornik
parents: 495
diff changeset
59 #include "ui_fileops.h"
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
60 }
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
61
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
62 struct _ExifData
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
63 {
187
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
64 Exiv2::Image::AutoPtr image;
188
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
65 Exiv2::Image::AutoPtr sidecar;
185
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
66 Exiv2::ExifData::const_iterator exifIter; /* for exif_get_next_item */
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
67 Exiv2::IptcData::const_iterator iptcIter; /* for exif_get_next_item */
200
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
68 #if EXIV2_TEST_VERSION(0,16,0)
185
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
69 Exiv2::XmpData::const_iterator xmpIter; /* for exif_get_next_item */
200
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
70 #endif
188
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
71 bool have_sidecar;
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
72
449
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
73 /* the icc profile in jpeg is not technically exif - store it here */
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
74 unsigned char *cp_data;
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
75 guint cp_length;
188
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
76
449
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
77 _ExifData(gchar *path, gchar *sidecar_path)
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
78 {
188
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
79 have_sidecar = false;
449
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
80 cp_data = NULL;
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
81 cp_length = 0;
496
a1f13fab6686 fixed a bug in opening files with non-utf8 locales in exiv2.cc
nadvornik
parents: 495
diff changeset
82 gchar *pathl = path_from_utf8(path);
a1f13fab6686 fixed a bug in opening files with non-utf8 locales in exiv2.cc
nadvornik
parents: 495
diff changeset
83 image = Exiv2::ImageFactory::open(pathl);
a1f13fab6686 fixed a bug in opening files with non-utf8 locales in exiv2.cc
nadvornik
parents: 495
diff changeset
84 g_free(pathl);
187
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
85 // g_assert (image.get() != 0);
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
86 image->readMetadata();
200
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
87
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
88 #if EXIV2_TEST_VERSION(0,16,0)
506
fc9c8a3e1a8b Handle the newline in DEBUG_N() macro instead of adding one
zas_
parents: 496
diff changeset
89 DEBUG_2("xmp count %li", image->xmpData().count());
188
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
90 if (sidecar_path && image->xmpData().empty())
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
91 {
496
a1f13fab6686 fixed a bug in opening files with non-utf8 locales in exiv2.cc
nadvornik
parents: 495
diff changeset
92 gchar *sidecar_pathl = path_from_utf8(sidecar_path);
a1f13fab6686 fixed a bug in opening files with non-utf8 locales in exiv2.cc
nadvornik
parents: 495
diff changeset
93 sidecar = Exiv2::ImageFactory::open(sidecar_pathl);
a1f13fab6686 fixed a bug in opening files with non-utf8 locales in exiv2.cc
nadvornik
parents: 495
diff changeset
94 g_free(sidecar_pathl);
188
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
95 sidecar->readMetadata();
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
96 have_sidecar = sidecar->good();
506
fc9c8a3e1a8b Handle the newline in DEBUG_N() macro instead of adding one
zas_
parents: 496
diff changeset
97 DEBUG_2("sidecar xmp count %li", sidecar->xmpData().count());
188
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
98 }
449
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
99
452
0a69a779395a fixed color profile code for older versions of exiv2
nadvornik
parents: 449
diff changeset
100 #endif
0a69a779395a fixed color profile code for older versions of exiv2
nadvornik
parents: 449
diff changeset
101 #if EXIV2_TEST_VERSION(0,14,0)
449
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
102 if (image->mimeType() == std::string("image/jpeg"))
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
103 {
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
104 /* try to get jpeg color profile */
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
105 Exiv2::BasicIo &io = image->io();
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
106 gint open = io.isopen();
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
107 if (!open) io.open();
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
108 unsigned char *mapped = (unsigned char*)io.mmap();
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
109 if (mapped) exif_jpeg_parse_color(this, mapped, io.size());
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
110 io.munmap();
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
111 if (!open) io.close();
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
112 }
995
6ca2c5fd7b13 Whitespaces cleanup.
zas_
parents: 855
diff changeset
113 #endif
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
114 }
187
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
115
449
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
116 ~_ExifData()
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
117 {
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
118 if (cp_data) g_free(cp_data);
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
119 }
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
120
187
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
121 void writeMetadata()
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
122 {
188
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
123 if (have_sidecar) sidecar->writeMetadata();
187
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
124 image->writeMetadata();
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
125 }
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
126
188
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
127 Exiv2::ExifData &exifData ()
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
128 {
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
129 return image->exifData();
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
130 }
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
131
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
132 Exiv2::IptcData &iptcData ()
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
133 {
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
134 return image->iptcData();
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
135 }
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
136
200
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
137 #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
138 Exiv2::XmpData &xmpData ()
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
139 {
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
140 return have_sidecar ? sidecar->xmpData() : image->xmpData();
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
141 }
200
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
142 #endif
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
143
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
144 };
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
145
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
146 extern "C" {
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
147
449
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
148 ExifData *exif_read(gchar *path, gchar *sidecar_path)
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
149 {
506
fc9c8a3e1a8b Handle the newline in DEBUG_N() macro instead of adding one
zas_
parents: 496
diff changeset
150 DEBUG_1("exif read %s, sidecar: %s", path, sidecar_path ? sidecar_path : "-");
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
151 try {
449
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
152 return new ExifData(path, sidecar_path);
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
153 }
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
154 catch (Exiv2::AnyError& e) {
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
155 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
156 return NULL;
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
157 }
179
37004d5a584a and first version that actually shows some exif data (see advanced view)
nadvornik
parents: 178
diff changeset
158
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
159 }
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
160
187
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
161 int exif_write(ExifData *exif)
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
162 {
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
163 try {
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
164 exif->writeMetadata();
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
165 return 1;
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
166 }
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
167 catch (Exiv2::AnyError& e) {
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
168 std::cout << "Caught Exiv2 exception '" << e << "'\n";
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
169 return 0;
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
170 }
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
171
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
172 }
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
173
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
174
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
175 void exif_free(ExifData *exif)
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
176 {
182
8a417f10ba09 more exiv2 fixes
nadvornik
parents: 180
diff changeset
177
8a417f10ba09 more exiv2 fixes
nadvornik
parents: 180
diff changeset
178 delete exif;
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
179 }
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
180
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
181 ExifItem *exif_get_item(ExifData *exif, const gchar *key)
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
182 {
183
3962c9d3d6fd more exiv2 fixes
nadvornik
parents: 182
diff changeset
183 try {
452
0a69a779395a fixed color profile code for older versions of exiv2
nadvornik
parents: 449
diff changeset
184 Exiv2::Metadatum *item = NULL;
185
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
185 try {
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
186 Exiv2::ExifKey ekey(key);
188
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
187 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
188 if (pos == exif->exifData().end()) return NULL;
185
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
189 item = &*pos;
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
190 }
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
191 catch (Exiv2::AnyError& e) {
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
192 try {
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
193 Exiv2::IptcKey ekey(key);
188
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
194 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
195 if (pos == exif->iptcData().end()) return NULL;
185
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
196 item = &*pos;
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
197 }
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
198 catch (Exiv2::AnyError& e) {
200
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
199 #if EXIV2_TEST_VERSION(0,16,0)
185
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
200 Exiv2::XmpKey ekey(key);
188
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
201 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
202 if (pos == exif->xmpData().end()) return NULL;
187
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
203 item = &*pos;
200
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
204 #endif
187
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
205 }
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
206 }
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
207 return (ExifItem *)item;
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
208 }
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
209 catch (Exiv2::AnyError& e) {
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
210 std::cout << "Caught Exiv2 exception '" << e << "'\n";
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
211 return NULL;
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
212 }
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
213 }
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
214
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
215 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
216 {
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
217 try {
452
0a69a779395a fixed color profile code for older versions of exiv2
nadvornik
parents: 449
diff changeset
218 Exiv2::Metadatum *item = NULL;
187
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
219 try {
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
220 Exiv2::ExifKey ekey(key);
188
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
221 exif->exifData().add(ekey, NULL);
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
222 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
223 pos--;
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
224 item = &*pos;
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
225 }
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
226 catch (Exiv2::AnyError& e) {
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
227 try {
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
228 Exiv2::IptcKey ekey(key);
188
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
229 exif->iptcData().add(ekey, NULL);
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
230 Exiv2::IptcData::iterator pos = exif->iptcData().end();
187
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
231 pos--;
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
232 item = &*pos;
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
233 }
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
234 catch (Exiv2::AnyError& e) {
200
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
235 #if EXIV2_TEST_VERSION(0,16,0)
187
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
236 Exiv2::XmpKey ekey(key);
188
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
237 exif->xmpData().add(ekey, NULL);
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
238 Exiv2::XmpData::iterator pos = exif->xmpData().end();
187
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
239 pos--;
185
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
240 item = &*pos;
200
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
241 #endif
185
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
242 }
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
243 }
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
244 return (ExifItem *)item;
183
3962c9d3d6fd more exiv2 fixes
nadvornik
parents: 182
diff changeset
245 }
3962c9d3d6fd more exiv2 fixes
nadvornik
parents: 182
diff changeset
246 catch (Exiv2::AnyError& e) {
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
247 std::cout << "Caught Exiv2 exception '" << e << "'\n";
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
248 return NULL;
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
249 }
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
250 }
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
251
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
252
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
253 ExifItem *exif_get_first_item(ExifData *exif)
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
254 {
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
255 try {
188
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
256 exif->exifIter = exif->exifData().begin();
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
257 exif->iptcIter = exif->iptcData().begin();
200
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
258 #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
259 exif->xmpIter = exif->xmpData().begin();
200
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
260 #endif
995
6ca2c5fd7b13 Whitespaces cleanup.
zas_
parents: 855
diff changeset
261 if (exif->exifIter != exif->exifData().end())
185
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
262 {
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
263 const Exiv2::Metadatum *item = &*exif->exifIter;
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
264 exif->exifIter++;
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
265 return (ExifItem *)item;
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
266 }
995
6ca2c5fd7b13 Whitespaces cleanup.
zas_
parents: 855
diff changeset
267 if (exif->iptcIter != exif->iptcData().end())
185
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
268 {
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
269 const Exiv2::Metadatum *item = &*exif->iptcIter;
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
270 exif->iptcIter++;
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
271 return (ExifItem *)item;
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
272 }
200
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
273 #if EXIV2_TEST_VERSION(0,16,0)
995
6ca2c5fd7b13 Whitespaces cleanup.
zas_
parents: 855
diff changeset
274 if (exif->xmpIter != exif->xmpData().end())
185
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
275 {
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
276 const Exiv2::Metadatum *item = &*exif->xmpIter;
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
277 exif->xmpIter++;
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
278 return (ExifItem *)item;
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
279 }
200
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
280 #endif
185
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
281 return NULL;
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
282
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
283 }
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
284 catch (Exiv2::AnyError& e) {
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
285 std::cout << "Caught Exiv2 exception '" << e << "'\n";
183
3962c9d3d6fd more exiv2 fixes
nadvornik
parents: 182
diff changeset
286 return NULL;
3962c9d3d6fd more exiv2 fixes
nadvornik
parents: 182
diff changeset
287 }
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
288 }
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
289
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
290 ExifItem *exif_get_next_item(ExifData *exif)
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
291 {
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
292 try {
188
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
293 if (exif->exifIter != exif->exifData().end())
185
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
294 {
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
295 const Exiv2::Metadatum *item = &*exif->exifIter;
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
296 exif->exifIter++;
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
297 return (ExifItem *)item;
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
298 }
188
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
299 if (exif->iptcIter != exif->iptcData().end())
185
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
300 {
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
301 const Exiv2::Metadatum *item = &*exif->iptcIter;
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
302 exif->iptcIter++;
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
303 return (ExifItem *)item;
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
304 }
200
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
305 #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
306 if (exif->xmpIter != exif->xmpData().end())
185
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
307 {
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
308 const Exiv2::Metadatum *item = &*exif->xmpIter;
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
309 exif->xmpIter++;
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
310 return (ExifItem *)item;
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
311 }
200
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
312 #endif
185
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
313 return NULL;
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
314 }
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
315 catch (Exiv2::AnyError& e) {
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
316 std::cout << "Caught Exiv2 exception '" << e << "'\n";
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
317 return NULL;
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
318 }
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
319 }
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
320
185
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
321 char *exif_item_get_tag_name(ExifItem *item)
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
322 {
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
323 try {
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
324 if (!item) return NULL;
185
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
325 return g_strdup(((Exiv2::Metadatum *)item)->key().c_str());
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
326 }
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
327 catch (Exiv2::AnyError& e) {
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
328 std::cout << "Caught Exiv2 exception '" << e << "'\n";
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
329 return NULL;
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
330 }
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
331 }
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
332
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
333 guint exif_item_get_tag_id(ExifItem *item)
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
334 {
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
335 try {
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
336 if (!item) return 0;
185
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
337 return ((Exiv2::Metadatum *)item)->tag();
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
338 }
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
339 catch (Exiv2::AnyError& e) {
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
340 std::cout << "Caught Exiv2 exception '" << e << "'\n";
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
341 return 0;
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
342 }
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
343 }
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
344
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
345 guint exif_item_get_elements(ExifItem *item)
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
346 {
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
347 try {
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
348 if (!item) return 0;
185
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
349 return ((Exiv2::Metadatum *)item)->count();
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
350 }
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
351 catch (Exiv2::AnyError& e) {
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
352 std::cout << "Caught Exiv2 exception '" << e << "'\n";
185
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
353 return 0;
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
354 }
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
355 }
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
356
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
357 char *exif_item_get_data(ExifItem *item, guint *data_len)
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
358 {
414
49c1cbe058ae partially fixed reading embedded color profiles with exiv2
nadvornik
parents: 304
diff changeset
359 try {
49c1cbe058ae partially fixed reading embedded color profiles with exiv2
nadvornik
parents: 304
diff changeset
360 if (!item) return 0;
49c1cbe058ae partially fixed reading embedded color profiles with exiv2
nadvornik
parents: 304
diff changeset
361 Exiv2::Metadatum *md = (Exiv2::Metadatum *)item;
855
0c3f6ef17d18 Tidy up.
zas_
parents: 686
diff changeset
362 if (data_len) *data_len = md->size();
414
49c1cbe058ae partially fixed reading embedded color profiles with exiv2
nadvornik
parents: 304
diff changeset
363 char *data = (char *)g_malloc(md->size());
49c1cbe058ae partially fixed reading embedded color profiles with exiv2
nadvornik
parents: 304
diff changeset
364 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
365 g_assert(res == md->size());
49c1cbe058ae partially fixed reading embedded color profiles with exiv2
nadvornik
parents: 304
diff changeset
366 return data;
49c1cbe058ae partially fixed reading embedded color profiles with exiv2
nadvornik
parents: 304
diff changeset
367 }
49c1cbe058ae partially fixed reading embedded color profiles with exiv2
nadvornik
parents: 304
diff changeset
368 catch (Exiv2::AnyError& e) {
49c1cbe058ae partially fixed reading embedded color profiles with exiv2
nadvornik
parents: 304
diff changeset
369 std::cout << "Caught Exiv2 exception '" << e << "'\n";
49c1cbe058ae partially fixed reading embedded color profiles with exiv2
nadvornik
parents: 304
diff changeset
370 return NULL;
49c1cbe058ae partially fixed reading embedded color profiles with exiv2
nadvornik
parents: 304
diff changeset
371 }
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
372 }
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
373
182
8a417f10ba09 more exiv2 fixes
nadvornik
parents: 180
diff changeset
374 char *exif_item_get_description(ExifItem *item)
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
375 {
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
376 try {
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
377 if (!item) return NULL;
1053
77ca9a5d42be fixed charset of exiv2 strings in non-utf8 locales
nadvornik
parents: 1052
diff changeset
378 return g_locale_to_utf8(((Exiv2::Metadatum *)item)->tagLabel().c_str(), -1, NULL, NULL, NULL);
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
379 }
185
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
380 catch (std::exception& e) {
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
381 // std::cout << "Caught Exiv2 exception '" << e << "'\n";
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
382 return NULL;
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
383 }
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
384 }
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
385
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
386 /*
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
387 invalidTypeId, unsignedByte, asciiString, unsignedShort,
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
388 unsignedLong, unsignedRational, signedByte, undefined,
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
389 signedShort, signedLong, signedRational, string,
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
390 date, time, comment, directory,
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
391 xmpText, xmpAlt, xmpBag, xmpSeq,
995
6ca2c5fd7b13 Whitespaces cleanup.
zas_
parents: 855
diff changeset
392 langAlt, lastTypeId
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
393 */
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
394
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
395 static guint format_id_trans_tbl [] = {
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
396 EXIF_FORMAT_UNKNOWN,
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
397 EXIF_FORMAT_BYTE_UNSIGNED,
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
398 EXIF_FORMAT_STRING,
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
399 EXIF_FORMAT_SHORT_UNSIGNED,
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
400 EXIF_FORMAT_LONG_UNSIGNED,
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
401 EXIF_FORMAT_RATIONAL_UNSIGNED,
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
402 EXIF_FORMAT_BYTE,
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
403 EXIF_FORMAT_UNDEFINED,
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
404 EXIF_FORMAT_SHORT,
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
405 EXIF_FORMAT_LONG,
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
406 EXIF_FORMAT_RATIONAL,
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
407 EXIF_FORMAT_STRING,
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
408 EXIF_FORMAT_STRING,
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
409 EXIF_FORMAT_STRING,
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
410 EXIF_FORMAT_UNDEFINED,
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
411 EXIF_FORMAT_STRING,
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
412 EXIF_FORMAT_STRING,
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
413 EXIF_FORMAT_STRING,
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
414 EXIF_FORMAT_STRING
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
415 };
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
416
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
417
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
418
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
419 guint exif_item_get_format_id(ExifItem *item)
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
420 {
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
421 try {
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
422 if (!item) return EXIF_FORMAT_UNKNOWN;
185
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
423 guint id = ((Exiv2::Metadatum *)item)->typeId();
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
424 if (id >= (sizeof(format_id_trans_tbl) / sizeof(format_id_trans_tbl[0])) ) return EXIF_FORMAT_UNKNOWN;
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
425 return format_id_trans_tbl[id];
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
426 }
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
427 catch (Exiv2::AnyError& e) {
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
428 std::cout << "Caught Exiv2 exception '" << e << "'\n";
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
429 return EXIF_FORMAT_UNKNOWN;
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
430 }
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
431 }
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
432
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
433 const char *exif_item_get_format_name(ExifItem *item, gint brief)
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
434 {
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
435 try {
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
436 if (!item) return NULL;
185
354da67a7ca2 read also iptc and xmp
nadvornik
parents: 184
diff changeset
437 return ((Exiv2::Metadatum *)item)->typeName();
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
438 }
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
439 catch (Exiv2::AnyError& e) {
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
440 std::cout << "Caught Exiv2 exception '" << e << "'\n";
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
441 return NULL;
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
442 }
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
443 }
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
444
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
445
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
446 gchar *exif_item_get_data_as_text(ExifItem *item)
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
447 {
183
3962c9d3d6fd more exiv2 fixes
nadvornik
parents: 182
diff changeset
448 try {
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
449 if (!item) return NULL;
676
3a4a7385997c get processed values from exiv2
nadvornik
parents: 673
diff changeset
450 Exiv2::Metadatum *metadatum = (Exiv2::Metadatum *)item;
677
6304ba358850 fixed exiv2 version test
nadvornik
parents: 676
diff changeset
451 #if EXIV2_TEST_VERSION(0,17,0)
1053
77ca9a5d42be fixed charset of exiv2 strings in non-utf8 locales
nadvornik
parents: 1052
diff changeset
452 return g_locale_to_utf8(metadatum->print().c_str(), -1, NULL, NULL, NULL);
676
3a4a7385997c get processed values from exiv2
nadvornik
parents: 673
diff changeset
453 #else
3a4a7385997c get processed values from exiv2
nadvornik
parents: 673
diff changeset
454 std::stringstream str;
3a4a7385997c get processed values from exiv2
nadvornik
parents: 673
diff changeset
455 Exiv2::Exifdatum *exifdatum;
3a4a7385997c get processed values from exiv2
nadvornik
parents: 673
diff changeset
456 Exiv2::Iptcdatum *iptcdatum;
686
c0dda0ffb931 configure.in was rewritten:
bruclik
parents: 677
diff changeset
457 #if EXIV2_TEST_VERSION(0,16,0)
676
3a4a7385997c get processed values from exiv2
nadvornik
parents: 673
diff changeset
458 Exiv2::Xmpdatum *xmpdatum;
686
c0dda0ffb931 configure.in was rewritten:
bruclik
parents: 677
diff changeset
459 #endif
855
0c3f6ef17d18 Tidy up.
zas_
parents: 686
diff changeset
460 if ((exifdatum = dynamic_cast<Exiv2::Exifdatum *>(metadatum)))
676
3a4a7385997c get processed values from exiv2
nadvornik
parents: 673
diff changeset
461 str << *exifdatum;
3a4a7385997c get processed values from exiv2
nadvornik
parents: 673
diff changeset
462 else if ((iptcdatum = dynamic_cast<Exiv2::Iptcdatum *>(metadatum)))
3a4a7385997c get processed values from exiv2
nadvornik
parents: 673
diff changeset
463 str << *iptcdatum;
3a4a7385997c get processed values from exiv2
nadvornik
parents: 673
diff changeset
464 #if EXIV2_TEST_VERSION(0,16,0)
3a4a7385997c get processed values from exiv2
nadvornik
parents: 673
diff changeset
465 else if ((xmpdatum = dynamic_cast<Exiv2::Xmpdatum *>(metadatum)))
3a4a7385997c get processed values from exiv2
nadvornik
parents: 673
diff changeset
466 str << *xmpdatum;
3a4a7385997c get processed values from exiv2
nadvornik
parents: 673
diff changeset
467 #endif
3a4a7385997c get processed values from exiv2
nadvornik
parents: 673
diff changeset
468
1053
77ca9a5d42be fixed charset of exiv2 strings in non-utf8 locales
nadvornik
parents: 1052
diff changeset
469 return g_locale_to_utf8(str.str().c_str(), -1, NULL, NULL, NULL);
676
3a4a7385997c get processed values from exiv2
nadvornik
parents: 673
diff changeset
470 #endif
183
3962c9d3d6fd more exiv2 fixes
nadvornik
parents: 182
diff changeset
471 }
3962c9d3d6fd more exiv2 fixes
nadvornik
parents: 182
diff changeset
472 catch (Exiv2::AnyError& e) {
3962c9d3d6fd more exiv2 fixes
nadvornik
parents: 182
diff changeset
473 return NULL;
3962c9d3d6fd more exiv2 fixes
nadvornik
parents: 182
diff changeset
474 }
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
475 }
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
476
188
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
477 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
478 {
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
479 try {
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
480 if (!item) return NULL;
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
481 Exiv2::Metadatum *em = (Exiv2::Metadatum *)item;
200
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
482 #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
483 std::string str = em->toString(idx);
200
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
484 #else
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
485 std::string str = em->toString(); // FIXME
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
486 #endif
188
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
487 if (idx == 0 && str == "") str = em->toString();
995
6ca2c5fd7b13 Whitespaces cleanup.
zas_
parents: 855
diff changeset
488 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
489 {
995
6ca2c5fd7b13 Whitespaces cleanup.
zas_
parents: 855
diff changeset
490 std::string::size_type pos = str.find_first_of(' ');
6ca2c5fd7b13 Whitespaces cleanup.
zas_
parents: 855
diff changeset
491 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
492 }
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
493
1053
77ca9a5d42be fixed charset of exiv2 strings in non-utf8 locales
nadvornik
parents: 1052
diff changeset
494 // 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
495 return g_strdup(str.c_str());
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
496 }
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
497 catch (Exiv2::AnyError& e) {
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
498 return NULL;
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
499 }
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
500 }
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
501
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
502
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
503 gint exif_item_get_integer(ExifItem *item, gint *value)
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
504 {
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
505 try {
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
506 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
507 *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
508 return 1;
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
509 }
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
510 catch (Exiv2::AnyError& e) {
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
511 std::cout << "Caught Exiv2 exception '" << e << "'\n";
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
512 return 0;
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
513 }
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
514 }
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
515
1052
338c21c87ff5 Add support for GPSInfo - patch by Klaus Ethgen
nadvornik
parents: 1048
diff changeset
516 ExifRational *exif_item_get_rational(ExifItem *item, gint *sign, gint n)
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
517 {
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
518 try {
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
519 if (!item) return NULL;
1052
338c21c87ff5 Add support for GPSInfo - patch by Klaus Ethgen
nadvornik
parents: 1048
diff changeset
520 if (n >= exif_item_get_elements(item)) return NULL;
338c21c87ff5 Add support for GPSInfo - patch by Klaus Ethgen
nadvornik
parents: 1048
diff changeset
521 Exiv2::Rational v = ((Exiv2::Metadatum *)item)->toRational(n);
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
522 static ExifRational ret;
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
523 ret.num = v.first;
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
524 ret.den = v.second;
485
2fef42c958bb fixed reading of signed rational type with Exiv2
nadvornik
parents: 475
diff changeset
525 if (sign) *sign = (((Exiv2::Metadatum *)item)->typeId() == Exiv2::signedRational);
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
526 return &ret;
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
527 }
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
528 catch (Exiv2::AnyError& e) {
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
529 std::cout << "Caught Exiv2 exception '" << e << "'\n";
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
530 return NULL;
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
531 }
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
532 }
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
533
1053
77ca9a5d42be fixed charset of exiv2 strings in non-utf8 locales
nadvornik
parents: 1052
diff changeset
534 gchar *exif_get_tag_description_by_key(const gchar *key)
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
535 {
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
536 try {
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
537 Exiv2::ExifKey ekey(key);
1053
77ca9a5d42be fixed charset of exiv2 strings in non-utf8 locales
nadvornik
parents: 1052
diff changeset
538 return g_locale_to_utf8(Exiv2::ExifTags::tagLabel(ekey.tag(), ekey.ifdId ()), -1, NULL, NULL, NULL);
184
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
539 }
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
540 catch (Exiv2::AnyError& e) {
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
541 std::cout << "Caught Exiv2 exception '" << e << "'\n";
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
542 return NULL;
2507418ab7a2 more exiv2 fixes
nadvornik
parents: 183
diff changeset
543 }
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
544 }
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
545
187
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
546 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
547 {
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
548 try {
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
549 if (!item) return 0;
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
550 ((Exiv2::Metadatum *)item)->setValue(std::string(str));
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
551 return 1;
1008
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
552 }
187
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
553 catch (Exiv2::AnyError& e) {
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
554 return 0;
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
555 }
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
556 }
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
557
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
558 int exif_item_delete(ExifData *exif, ExifItem *item)
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
559 {
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
560 try {
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
561 if (!item) return 0;
188
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
562 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
563 if (((Exiv2::Metadatum *)item) == &*i) {
188
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
564 i = exif->exifData().erase(i);
187
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
565 return 1;
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
566 }
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
567 }
188
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
568 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
569 if (((Exiv2::Metadatum *)item) == &*i) {
188
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
570 i = exif->iptcData().erase(i);
187
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
571 return 1;
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
572 }
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
573 }
200
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
574 #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
575 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
576 if (((Exiv2::Metadatum *)item) == &*i) {
188
0584cb78aa14 write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents: 187
diff changeset
577 i = exif->xmpData().erase(i);
187
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
578 return 1;
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
579 }
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
580 }
995
6ca2c5fd7b13 Whitespaces cleanup.
zas_
parents: 855
diff changeset
581 #endif
187
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
582 return 0;
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
583 }
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
584 catch (Exiv2::AnyError& e) {
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
585 return 0;
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
586 }
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
587 }
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
588
449
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
589 void exif_add_jpeg_color_profile(ExifData *exif, unsigned char *cp_data, guint cp_length)
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
590 {
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
591 if (exif->cp_data) g_free(exif->cp_data);
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
592 exif->cp_data = cp_data;
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
593 exif->cp_length =cp_length;
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
594 }
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
595
1008
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
596 guchar *exif_get_color_profile(ExifData *exif, guint *data_len)
449
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
597 {
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
598 if (exif->cp_data)
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
599 {
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
600 if (data_len) *data_len = exif->cp_length;
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
601 return (unsigned char *) g_memdup(exif->cp_data, exif->cp_length);
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
602 }
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
603 ExifItem *prof_item = exif_get_item(exif, "Exif.Image.InterColorProfile");
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
604 if (prof_item && exif_item_get_format_id(prof_item) == EXIF_FORMAT_UNDEFINED)
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
605 return (unsigned char *) exif_item_get_data(prof_item, data_len);
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
606 return NULL;
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
607 }
115db540bd0c read color profiles from jpeg also with Exiv2
nadvornik
parents: 414
diff changeset
608
1008
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
609 #if EXIV2_TEST_VERSION(0,17,90)
187
9eafc4957f1a write support in Exiv2 wrapper; for now only string values
nadvornik
parents: 186
diff changeset
610
1008
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
611 guchar *exif_get_preview(ExifData *exif, guint *data_len)
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
612 {
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
613 if (!exif) return NULL;
1048
95c418661be8 updated preview loader to work with current svn version of libexiv2
nadvornik
parents: 1025
diff changeset
614
95c418661be8 updated preview loader to work with current svn version of libexiv2
nadvornik
parents: 1025
diff changeset
615 const char* path = exif->image->io().path().c_str();
95c418661be8 updated preview loader to work with current svn version of libexiv2
nadvornik
parents: 1025
diff changeset
616 /* given image pathname, first do simple (and fast) file extension test */
95c418661be8 updated preview loader to work with current svn version of libexiv2
nadvornik
parents: 1025
diff changeset
617 if (!filter_file_class(path, FORMAT_CLASS_RAWIMAGE)) return NULL;
95c418661be8 updated preview loader to work with current svn version of libexiv2
nadvornik
parents: 1025
diff changeset
618
1008
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
619 try {
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
620
1048
95c418661be8 updated preview loader to work with current svn version of libexiv2
nadvornik
parents: 1025
diff changeset
621 Exiv2::PreviewImageLoader loader(*exif->image);
95c418661be8 updated preview loader to work with current svn version of libexiv2
nadvornik
parents: 1025
diff changeset
622
95c418661be8 updated preview loader to work with current svn version of libexiv2
nadvornik
parents: 1025
diff changeset
623 Exiv2::PreviewPropertiesList list = loader.getPreviewPropertiesList();
1008
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
624
1048
95c418661be8 updated preview loader to work with current svn version of libexiv2
nadvornik
parents: 1025
diff changeset
625 if (!list.empty())
1008
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
626 {
1048
95c418661be8 updated preview loader to work with current svn version of libexiv2
nadvornik
parents: 1025
diff changeset
627 Exiv2::PreviewPropertiesList::iterator pos = --list.end();
95c418661be8 updated preview loader to work with current svn version of libexiv2
nadvornik
parents: 1025
diff changeset
628
95c418661be8 updated preview loader to work with current svn version of libexiv2
nadvornik
parents: 1025
diff changeset
629 Exiv2::PreviewImage image = loader.getPreviewImage(*pos);
95c418661be8 updated preview loader to work with current svn version of libexiv2
nadvornik
parents: 1025
diff changeset
630
95c418661be8 updated preview loader to work with current svn version of libexiv2
nadvornik
parents: 1025
diff changeset
631 Exiv2::DataBuf &buf = image.data();
1008
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
632 std::pair<Exiv2::byte*, long> p = buf.release();
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
633
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
634 *data_len = p.second;
1048
95c418661be8 updated preview loader to work with current svn version of libexiv2
nadvornik
parents: 1025
diff changeset
635 return p.first;
1008
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
636 }
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
637 return NULL;
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
638 }
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
639 catch (Exiv2::AnyError& e) {
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
640 std::cout << "Caught Exiv2 exception '" << e << "'\n";
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
641 return NULL;
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
642 }
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
643 }
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
644
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
645 void exif_free_preview(guchar *buf)
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
646 {
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
647 delete[] (Exiv2::byte*)buf;
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
648 }
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
649 #endif
186
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
650
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
651 }
1008
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
652 #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
653
995
6ca2c5fd7b13 Whitespaces cleanup.
zas_
parents: 855
diff changeset
654 /* 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
655 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
656
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
657 class RawFile {
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
658 public:
995
6ca2c5fd7b13 Whitespaces cleanup.
zas_
parents: 855
diff changeset
659
1008
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
660 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
661 ~RawFile();
995
6ca2c5fd7b13 Whitespaces cleanup.
zas_
parents: 855
diff changeset
662
186
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
663 const Exiv2::Value *find(uint16_t tag, uint16_t group);
995
6ca2c5fd7b13 Whitespaces cleanup.
zas_
parents: 855
diff changeset
664
186
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
665 unsigned long preview_offset();
995
6ca2c5fd7b13 Whitespaces cleanup.
zas_
parents: 855
diff changeset
666
186
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
667 private:
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
668 int type;
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
669 Exiv2::TiffComponent::AutoPtr rootDir;
1008
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
670 Exiv2::BasicIo &io_;
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
671 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
672 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
673 unsigned long offset;
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
674 };
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
675
1008
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
676 typedef struct _UnmapData UnmapData;
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
677 struct _UnmapData
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
678 {
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
679 guchar *ptr;
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
680 guchar *map_data;
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
681 size_t map_len;
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
682 };
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
683
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
684 static GList *exif_unmap_list = 0;
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
685
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
686 extern "C" guchar *exif_get_preview(ExifData *exif, guint *data_len)
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
687 {
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
688 unsigned long offset;
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
689
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
690 if (!exif) return NULL;
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
691 const char* path = exif->image->io().path().c_str();
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
692
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
693 /* 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
694 if (!filter_file_class(path, FORMAT_CLASS_RAWIMAGE)) return NULL;
1008
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
695
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
696 try {
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
697 struct stat st;
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
698 guchar *map_data;
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
699 size_t map_len;
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
700 UnmapData *ud;
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
701 int fd;
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
702
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
703 RawFile rf(exif->image->io());
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
704 offset = rf.preview_offset();
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
705 DEBUG_1("%s: offset %lu", path, offset);
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
706
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
707 fd = open(path, O_RDONLY);
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
708 if (fd == -1)
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
709 {
1048
95c418661be8 updated preview loader to work with current svn version of libexiv2
nadvornik
parents: 1025
diff changeset
710 return NULL;
1008
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
711 }
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
712
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
713 if (fstat(fd, &st) == -1)
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
714 {
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
715 close(fd);
1048
95c418661be8 updated preview loader to work with current svn version of libexiv2
nadvornik
parents: 1025
diff changeset
716 return NULL;
1008
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
717 }
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
718 map_len = st.st_size;
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
719 map_data = (guchar *) mmap(0, map_len, PROT_READ, MAP_PRIVATE, fd, 0);
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
720 close(fd);
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
721 if (map_data == MAP_FAILED)
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
722 {
1048
95c418661be8 updated preview loader to work with current svn version of libexiv2
nadvornik
parents: 1025
diff changeset
723 return NULL;
1008
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
724 }
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
725 *data_len = map_len - offset;
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
726 ud = g_new(UnmapData, 1);
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
727 ud->ptr = map_data + offset;
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
728 ud->map_data = map_data;
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
729 ud->map_len = map_len;
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
730
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
731 exif_unmap_list = g_list_prepend(exif_unmap_list, ud);
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
732 return ud->ptr;
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
733
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
734 }
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
735 catch (Exiv2::AnyError& e) {
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
736 std::cout << "Caught Exiv2 exception '" << e << "'\n";
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
737 }
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
738 return NULL;
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
739
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
740 }
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
741
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
742 void exif_free_preview(guchar *buf)
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
743 {
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
744 GList *work = exif_unmap_list;
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
745
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
746 while (work)
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
747 {
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
748 UnmapData *ud = (UnmapData *)work->data;
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
749 if (ud->ptr == buf)
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
750 {
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
751 munmap(ud->map_data, ud->map_len);
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
752 exif_unmap_list = g_list_remove_link(exif_unmap_list, work);
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
753 g_free(ud);
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
754 return;
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
755 }
1025
448d174454e1 fixed possible endless loop
nadvornik
parents: 1016
diff changeset
756 work = work->next;
1008
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
757 }
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
758 g_assert_not_reached();
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
759 }
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
760
186
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
761 using namespace Exiv2;
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
762
1008
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
763 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
764 {
1008
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
765 /*
186
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
766 struct stat st;
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
767 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
768 {
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
769 throw Error(14);
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
770 }
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
771 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
772 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
773 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
774 {
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
775 throw Error(14);
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
776 }
1008
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
777 */
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
778 if (io.open() != 0) {
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
779 throw Error(9, io.path(), strError());
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
780 }
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
781
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
782 map_data = io.mmap();
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
783 map_len = io.size();
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
784
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
785
186
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
786 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
787
200
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
788 #if EXIV2_TEST_VERSION(0,16,0)
201
0ca12db715b7 improved support for older exiv2 versions
nadvornik
parents: 200
diff changeset
789 TiffHeaderBase *tiffHeader = NULL;
200
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
790 #else
201
0ca12db715b7 improved support for older exiv2 versions
nadvornik
parents: 200
diff changeset
791 TiffHeade2 *tiffHeader = NULL;
200
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
792 #endif
201
0ca12db715b7 improved support for older exiv2 versions
nadvornik
parents: 200
diff changeset
793 Cr2Header *cr2Header = NULL;
0ca12db715b7 improved support for older exiv2 versions
nadvornik
parents: 200
diff changeset
794
186
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
795 switch (type) {
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
796 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
797 tiffHeader = new TiffHeade2();
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
798 break;
201
0ca12db715b7 improved support for older exiv2 versions
nadvornik
parents: 200
diff changeset
799 case Exiv2::ImageType::cr2:
0ca12db715b7 improved support for older exiv2 versions
nadvornik
parents: 200
diff changeset
800 cr2Header = new Cr2Header();
0ca12db715b7 improved support for older exiv2 versions
nadvornik
parents: 200
diff changeset
801 break;
200
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
802 #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
803 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
804 tiffHeader = new OrfHeader();
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
805 break;
200
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
806 #endif
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
807 #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
808 case Exiv2::ImageType::raf:
995
6ca2c5fd7b13 Whitespaces cleanup.
zas_
parents: 855
diff changeset
809 if (map_len < 84 + 4) throw Error(14);
6ca2c5fd7b13 Whitespaces cleanup.
zas_
parents: 855
diff changeset
810 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
811 return;
200
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
812 #endif
191
19df9953a5d1 crw preview support with exiv2
nadvornik
parents: 188
diff changeset
813 case Exiv2::ImageType::crw:
19df9953a5d1 crw preview support with exiv2
nadvornik
parents: 188
diff changeset
814 {
19df9953a5d1 crw preview support with exiv2
nadvornik
parents: 188
diff changeset
815 // Parse the image, starting with a CIFF header component
19df9953a5d1 crw preview support with exiv2
nadvornik
parents: 188
diff changeset
816 Exiv2::CiffHeader::AutoPtr parseTree(new Exiv2::CiffHeader);
19df9953a5d1 crw preview support with exiv2
nadvornik
parents: 188
diff changeset
817 parseTree->read(map_data, map_len);
995
6ca2c5fd7b13 Whitespaces cleanup.
zas_
parents: 855
diff changeset
818 CiffComponent *entry = parseTree->findComponent(0x2007, 0);
191
19df9953a5d1 crw preview support with exiv2
nadvornik
parents: 188
diff changeset
819 if (entry) offset = entry->pData() - map_data;
19df9953a5d1 crw preview support with exiv2
nadvornik
parents: 188
diff changeset
820 return;
19df9953a5d1 crw preview support with exiv2
nadvornik
parents: 188
diff changeset
821 }
186
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
822
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
823 default:
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
824 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
825 }
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
826
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
827 // 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
828
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
829 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
830
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
831 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
832 if (0 == rootDir.get()) {
995
6ca2c5fd7b13 Whitespaces cleanup.
zas_
parents: 855
diff changeset
833 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
834 }
201
0ca12db715b7 improved support for older exiv2 versions
nadvornik
parents: 200
diff changeset
835
0ca12db715b7 improved support for older exiv2 versions
nadvornik
parents: 200
diff changeset
836 if (tiffHeader)
0ca12db715b7 improved support for older exiv2 versions
nadvornik
parents: 200
diff changeset
837 {
0ca12db715b7 improved support for older exiv2 versions
nadvornik
parents: 200
diff changeset
838 if (!tiffHeader->read(map_data, map_len)) throw Error(3, "TIFF");
200
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
839 #if EXIV2_TEST_VERSION(0,16,0)
201
0ca12db715b7 improved support for older exiv2 versions
nadvornik
parents: 200
diff changeset
840 rootDir->setStart(map_data + tiffHeader->offset());
200
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
841 #else
201
0ca12db715b7 improved support for older exiv2 versions
nadvornik
parents: 200
diff changeset
842 rootDir->setStart(map_data + tiffHeader->ifdOffset());
200
1a38eef1129a exiv2 version checks
nadvornik
parents: 194
diff changeset
843 #endif
201
0ca12db715b7 improved support for older exiv2 versions
nadvornik
parents: 200
diff changeset
844 }
0ca12db715b7 improved support for older exiv2 versions
nadvornik
parents: 200
diff changeset
845
0ca12db715b7 improved support for older exiv2 versions
nadvornik
parents: 200
diff changeset
846 if (cr2Header)
0ca12db715b7 improved support for older exiv2 versions
nadvornik
parents: 200
diff changeset
847 {
0ca12db715b7 improved support for older exiv2 versions
nadvornik
parents: 200
diff changeset
848 rootDir->setStart(map_data + cr2Header->offset());
0ca12db715b7 improved support for older exiv2 versions
nadvornik
parents: 200
diff changeset
849 }
0ca12db715b7 improved support for older exiv2 versions
nadvornik
parents: 200
diff changeset
850
0ca12db715b7 improved support for older exiv2 versions
nadvornik
parents: 200
diff changeset
851 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
852
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
853 TiffReader reader(map_data,
995
6ca2c5fd7b13 Whitespaces cleanup.
zas_
parents: 855
diff changeset
854 map_len,
6ca2c5fd7b13 Whitespaces cleanup.
zas_
parents: 855
diff changeset
855 rootDir.get(),
6ca2c5fd7b13 Whitespaces cleanup.
zas_
parents: 855
diff changeset
856 state);
186
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
857
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
858 rootDir->accept(reader);
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
859
995
6ca2c5fd7b13 Whitespaces cleanup.
zas_
parents: 855
diff changeset
860 if (tiffHeader)
201
0ca12db715b7 improved support for older exiv2 versions
nadvornik
parents: 200
diff changeset
861 delete tiffHeader;
995
6ca2c5fd7b13 Whitespaces cleanup.
zas_
parents: 855
diff changeset
862 if (cr2Header)
201
0ca12db715b7 improved support for older exiv2 versions
nadvornik
parents: 200
diff changeset
863 delete cr2Header;
186
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
864 }
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
865
609
b690cecbf5b8 Use function(void) instead of function() for declaring functions which
zas_
parents: 586
diff changeset
866 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
867 {
1008
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
868 io_.munmap();
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
869 io_.close();
186
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
870 }
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
871
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
872 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
873 {
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
874 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
875 rootDir->accept(finder);
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
876 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
877 if (te)
194
889cfa008789 raw related fixes
nadvornik
parents: 191
diff changeset
878 {
495
c7a2471e5c4e Introduce macros to display debug messages.
zas_
parents: 485
diff changeset
879 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
880 return te->pValue();
194
889cfa008789 raw related fixes
nadvornik
parents: 191
diff changeset
881 }
186
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
882 else
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
883 return NULL;
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
884 }
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
885
609
b690cecbf5b8 Use function(void) instead of function() for declaring functions which
zas_
parents: 586
diff changeset
886 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
887 {
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
888 const Value *val;
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
889 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
890
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
891 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
892 {
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
893 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
894 if (val) return val->toLong();
995
6ca2c5fd7b13 Whitespaces cleanup.
zas_
parents: 855
diff changeset
895
186
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
896 return 0;
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
897 }
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
898
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
899 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
900 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
901
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
902 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
903 if (val) return val->toLong();
995
6ca2c5fd7b13 Whitespaces cleanup.
zas_
parents: 855
diff changeset
904
186
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
905 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
906 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
907
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
908 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
909 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
910
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
911 return 0;
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
912 }
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
913
bd3fc1aa7fe9 a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents: 185
diff changeset
914
1008
68b0cb6ca8f0 use mmaped files image loader
nadvornik
parents: 995
diff changeset
915 #endif
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
916
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
917
995
6ca2c5fd7b13 Whitespaces cleanup.
zas_
parents: 855
diff changeset
918 #endif
178
9dc8bc9b2bb9 first exiv2 support that does not crash immediately
nadvornik
parents:
diff changeset
919 /* HAVE_EXIV2 */