From f6e6578becd5640f33307da7ea6a46db6acb5c94 Mon Sep 17 00:00:00 2001 From: Andreas Huggel Date: Wed, 8 Dec 2004 16:28:33 +0000 Subject: [PATCH] Minor changes/updates --- src/actions.cpp | 2 +- src/doxygen.hpp | 9 ++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/src/actions.cpp b/src/actions.cpp index 781d457a..847f4fb7 100644 --- a/src/actions.cpp +++ b/src/actions.cpp @@ -505,7 +505,7 @@ namespace Action { for (md = iptcData.begin(); md != end; ++md) { std::cout << "0x" << std::setw(4) << std::setfill('0') << std::right << std::hex << md->tag() << " " - << std::setw(9) << std::setfill(' ') << std::left + << std::setw(12) << std::setfill(' ') << std::left << md->recordName() << " " << std::setw(9) << std::setfill(' ') << std::left << md->typeName() << " " diff --git a/src/doxygen.hpp b/src/doxygen.hpp index 664e088a..8070fb32 100644 --- a/src/doxygen.hpp +++ b/src/doxygen.hpp @@ -23,6 +23,8 @@ needs to be moved (for known IFD MakerNotes) - new camera make/model specific MakerNotes can be added to the library with minimum effort in OO-fashion (by subclassing MakerNote or IfdMakerNote) + - set methods for Exif thumbnails (Jpeg only, Tiff thumbnails can be set from + individual tags) - extract and delete methods for Exif thumbnails (both, JPEG and TIFF thumbnails) - Doxygen API documentation - generic lower-level classes to access IFD (Image File Directory) data structures @@ -31,12 +33,13 @@ - print the Exif metadata of JPEG images (as summary info, interpreted values, or the plain data for each tag) - print the Iptc metadata of JPEG images + - print the Jpeg comment of JPEG images - adjust the Exif timestamp (that's how it all started...) - rename Exif image files according to the Exif timestamp - - extract a certain type of metadata or all metadata from image files - - insert metadata back into image files + - extract Exif metadata, Iptc metadata and Jpeg comments from image files and + insert it again - extract the thumbnail image embedded in the Exif metadata - - delete the thumbnail or specific metadata from an image + - delete the thumbnail or the complete Exif metadata from an image @section getting-started Getting started