| 89 | } |
| 90 | |
| 91 | void write(const std::string& file, Exiv2::ExifData& ed) { |
| 92 | auto image = Exiv2::ImageFactory::open(file); |
| 93 | image->setExifData(ed); |
| 94 | image->writeMetadata(); |
| 95 | } |
| 96 | |
| 97 | void print(const std::string& file) { |
| 98 | auto image = Exiv2::ImageFactory::open(file); |
no test coverage detected