diff options
author | Olivier Tilloy <olivier@tilloy.net> | 2009-12-10 09:55:36 +0100 |
---|---|---|
committer | Olivier Tilloy <olivier@tilloy.net> | 2009-12-10 09:55:36 +0100 |
commit | 347540e76aecbd1aadf7b5bd91be809ac465eb31 (patch) | |
tree | 1fbd5500119bc92bc9f00c5a7471c61e78c664f0 /src/exiv2wrapper_python.cpp | |
parent | 32e721f76cc026ac3e5215f285db53a85be94f5f (diff) | |
download | pyexiv2-347540e76aecbd1aadf7b5bd91be809ac465eb31.tar.gz |
Write the XMP value back to the image.
Diffstat (limited to 'src/exiv2wrapper_python.cpp')
-rw-r--r-- | src/exiv2wrapper_python.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/exiv2wrapper_python.cpp b/src/exiv2wrapper_python.cpp index e2bdea5..f2e4831 100644 --- a/src/exiv2wrapper_python.cpp +++ b/src/exiv2wrapper_python.cpp @@ -111,7 +111,9 @@ BOOST_PYTHON_MODULE(libexiv2python) .def("xmpKeys", &Image::xmpKeys) .def("getXmpTag", &Image::getXmpTag) - .def("setXmpTagValue", &Image::setXmpTagValue) + .def("setXmpTagTextValue", &Image::setXmpTagTextValue) + .def("setXmpTagArrayValue", &Image::setXmpTagArrayValue) + .def("setXmpTagLangAltValue", &Image::setXmpTagLangAltValue) .def("deleteXmpTag", &Image::deleteXmpTag) // .def("getThumbnailData", &Image::getThumbnailData) |