~osomon/pyexiv2/pyexiv2-0.3

« back to all changes in this revision

Viewing changes to src/exiv2wrapper_python.cpp

  • Committer: Olivier Tilloy
  • Date: 2010-12-17 19:02:35 UTC
  • mfrom: (341.1.15 charset)
  • Revision ID: olivier@tilloy.net-20101217190235-tc0on3anm13fnlnx
Decode and encode EXIF comments according to the specified charset.

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
        .def("_getSectionDescription", &ExifTag::getSectionDescription)
65
65
        .def("_getRawValue", &ExifTag::getRawValue)
66
66
        .def("_getHumanValue", &ExifTag::getHumanValue)
 
67
        .def("_getByteOrder", &ExifTag::getByteOrder)
67
68
    ;
68
69
 
69
70
    class_<IptcTag>("_IptcTag", init<std::string>())