aboutsummaryrefslogtreecommitdiffstats
path: root/src/exiv2wrapper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/exiv2wrapper.cpp')
-rw-r--r--src/exiv2wrapper.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/exiv2wrapper.cpp b/src/exiv2wrapper.cpp
index b6c85cf..ab52892 100644
--- a/src/exiv2wrapper.cpp
+++ b/src/exiv2wrapper.cpp
@@ -404,6 +404,19 @@ boost::python::list Image::previews()
return previews;
}
+void Image::copyMetadata(Image& other, bool exif, bool iptc, bool xmp) const
+{
+ CHECK_METADATA_READ
+ if (!other._dataRead) throw Exiv2::Error(METADATA_NOT_READ);
+
+ if (exif)
+ other._exifData = _exifData;
+ if (iptc)
+ other._iptcData = _iptcData;
+ if (xmp)
+ other._xmpData = _xmpData;
+}
+
ExifTag::ExifTag(const std::string& key, Exiv2::Exifdatum* datum, Exiv2::ExifData* data): _key(key)
{