aboutsummaryrefslogtreecommitdiffstats
path: root/src/exiv2wrapper_python.cpp
diff options
context:
space:
mode:
authorOlivier Tilloy <olivier@tilloy.net>2010-12-12 22:12:17 +0100
committerOlivier Tilloy <olivier@tilloy.net>2010-12-12 22:12:17 +0100
commitc3cfb0f832b4be5b3427490e55e7f3f63db583f2 (patch)
treec44132e21e3bbc956fbe093c534b8c26076b0a48 /src/exiv2wrapper_python.cpp
parentf1679ef96d1c88d2152418a10f5ed26d3c0bdaa7 (diff)
downloadpyexiv2-c3cfb0f832b4be5b3427490e55e7f3f63db583f2.tar.gz
Try and decode Exif.Photo.UserComment according to its charset if specified.
Diffstat (limited to 'src/exiv2wrapper_python.cpp')
-rw-r--r--src/exiv2wrapper_python.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/exiv2wrapper_python.cpp b/src/exiv2wrapper_python.cpp
index 5b793f7..a718afe 100644
--- a/src/exiv2wrapper_python.cpp
+++ b/src/exiv2wrapper_python.cpp
@@ -64,6 +64,7 @@ BOOST_PYTHON_MODULE(libexiv2python)
.def("_getSectionDescription", &ExifTag::getSectionDescription)
.def("_getRawValue", &ExifTag::getRawValue)
.def("_getHumanValue", &ExifTag::getHumanValue)
+ .def("_getByteOrder", &ExifTag::getByteOrder)
;
class_<IptcTag>("_IptcTag", init<std::string>())