| 191 | } |
| 192 | |
| 193 | void write(const std::string& file, Exiv2::ExifData& ed) { |
| 194 | auto image = Exiv2::ImageFactory::open(file); |
| 195 | |
| 196 | image->setExifData(ed); |
| 197 | image->writeMetadata(); |
| 198 | } |
| 199 | |
| 200 | void print(const std::string& file) { |
| 201 | auto image = Exiv2::ImageFactory::open(file); |