aboutsummaryrefslogtreecommitdiffstats
path: root/src/exiv2wrapper_python.cpp
diff options
context:
space:
mode:
authorOlivier Tilloy <olivier@tilloy.net>2009-11-11 10:08:03 +0100
committerOlivier Tilloy <olivier@tilloy.net>2009-11-11 10:08:03 +0100
commita7f87eeba9cfd16e15e58a1cbc8d9e588b6432a9 (patch)
treea6de7c561d7ae29fba35acb463e385bd68d77bcc /src/exiv2wrapper_python.cpp
parentb1b2341f4092bd3da33a4dc3b6fc0f6f3234f9e5 (diff)
downloadpyexiv2-a7f87eeba9cfd16e15e58a1cbc8d9e588b6432a9.tar.gz
Also expose the EXIF tags' human readable value.
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 88c1353..11c0eb9 100644
--- a/src/exiv2wrapper_python.cpp
+++ b/src/exiv2wrapper_python.cpp
@@ -89,6 +89,7 @@ BOOST_PYTHON_MODULE(libexiv2python)
.def("_getSectionName", &ExifTag::getSectionName)
.def("_getSectionDescription", &ExifTag::getSectionDescription)
.def("_getRawValue", &ExifTag::getRawValue)
+ .def("_getHumanValue", &ExifTag::getHumanValue)
;
class_<IptcTag>("IptcTag", init<std::string>())