diff options
author | Olivier Tilloy <olivier@tilloy.net> | 2007-01-07 22:18:30 +0100 |
---|---|---|
committer | Olivier Tilloy <olivier@tilloy.net> | 2007-01-07 22:18:30 +0100 |
commit | 7ef926c1493c544d75e805a149999987d6146597 (patch) | |
tree | a10efd544382ab5702468cccce9d00d660d3777b /src/libpyexiv2_wrapper.cpp | |
parent | 559735fd514a3f29c12870e60be8d878a5bc97be (diff) | |
download | pyexiv2-7ef926c1493c544d75e805a149999987d6146597.tar.gz |
Added method Image::setThumbnailFromJpegFile(...) that allows setting the image thumbnail from a jpeg file.
Diffstat (limited to 'src/libpyexiv2_wrapper.cpp')
-rw-r--r-- | src/libpyexiv2_wrapper.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libpyexiv2_wrapper.cpp b/src/libpyexiv2_wrapper.cpp index 7e00760..a84cd11 100644 --- a/src/libpyexiv2_wrapper.cpp +++ b/src/libpyexiv2_wrapper.cpp @@ -52,5 +52,6 @@ BOOST_PYTHON_MODULE(libpyexiv2) .def("setThumbnailData", &Image::setThumbnailData) .def("deleteThumbnail", &Image::deleteThumbnail) .def("dumpThumbnailToFile", &Image::dumpThumbnailToFile) + .def("setThumbnailFromJpegFile", &Image::setThumbnailFromJpegFile) ; } |