Minor changes/updates

v0.27.3
Andreas Huggel 21 years ago
parent 127aaddbb5
commit f6e6578bec

@ -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() << " "

@ -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

Loading…
Cancel
Save