24#include "exiv2lib_export.h"
27#include "metadatum.hpp"
49 typedef std::ostream& (*PrintFct)(std::ostream&,
const Value&,
const ExifData* pExifData);
69 explicit GroupName(
const std::string&
groupName);
113 static void taglist(std::ostream& os);
118 static const char* sectionName(
const ExifKey& key);
120 static uint16_t defaultCount(
const ExifKey& key);
127 static bool isMakerGroup(
const std::string&
groupName);
133 static bool isExifGroup(
const std::string&
groupName);
155 explicit ExifKey(
const std::string& key);
165 ExifKey(uint16_t tag,
const std::string& groupName);
187 void setIdx(
int idx);
192 virtual std::string key()
const;
193 virtual const char* familyName()
const;
197 virtual std::string tagName()
const;
198 virtual uint16_t tag()
const;
199 virtual std::string tagLabel()
const;
201 std::string tagDesc()
const;
203 TypeId defaultTypeId()
const;
212 virtual ExifKey* clone_()
const;
217 std::auto_ptr<Impl> p_;
A container for Exif data. This is a top-level class of the Exiv2 library. The container holds Exifda...
Definition: exif.hpp:434
Concrete keys for Exif metadata and access to Exif tag reference data.
Definition: tags.hpp:140
std::auto_ptr< ExifKey > AutoPtr
Shortcut for an ExifKey auto pointer.
Definition: tags.hpp:143
Abstract base class defining the Key of a metadatum. Keys are used to identify and group metadata.
Definition: metadatum.hpp:44
std::auto_ptr< Key > AutoPtr
Shortcut for a Key auto pointer.
Definition: metadatum.hpp:47
Common interface for all types of values used with metadata.
Definition: value.hpp:51
const char * groupName(IfdId ifdId)
Return the group name for a group id.
Definition: tags_int.cpp:2569
void taglist(std::ostream &os, IfdId ifdId)
Print the list of tags for ifdId to the output stream os.
Definition: tags_int.cpp:2512
const TagInfo * tagList(IfdId ifdId)
Return the tag list for ifdId.
Definition: tags_int.cpp:2522
const char * ifdName(IfdId ifdId)
Return the name of the IFD.
Definition: tags_int.cpp:2562
bool operator==(const TagDetails &td, const LensTypeAndFocalLengthAndMaxAperture <fl)
Compare tag details with a lens entry.
Definition: canonmn_int.cpp:2820
Provides classes and functions to encode and decode Exif and Iptc data. The libexiv2 API consists of ...
Definition: asfvideo.hpp:36
EXIV2API std::ostream & operator<<(std::ostream &os, const DataSet &dataSet)
Output operator for dataSet.
Definition: datasets.cpp:709
const TagInfo *(* TagListFct)()
A function returning a tag list.
Definition: tags.hpp:51
TypeId
Exiv2 value type identifiers.
Definition: types.hpp:119
std::ostream &(* PrintFct)(std::ostream &, const Value &, const ExifData *pExifData)
Type for a function pointer for functions interpreting the tag value.
Definition: tags.hpp:49
Internal Pimpl structure with private members and data of class ExifKey.
Definition: tags.cpp:210
The details of an Exif group. Groups include IFDs and binary arrays.
Definition: tags.hpp:57
int ifdId_
IFD id.
Definition: tags.hpp:61
std::string g_
Group name.
Definition: tags.hpp:70
TagListFct tagList_
Tag list.
Definition: tags.hpp:64
const char * ifdName_
IFD name.
Definition: tags.hpp:62
const char * groupName_
Group name, unique for each group.
Definition: tags.hpp:63
Tag information.
Definition: tags.hpp:74
uint16_t tag_
Tag.
Definition: tags.hpp:87
int sectionId_
Section id.
Definition: tags.hpp:92
int16_t count_
The number of values (not bytes!), 0=any, -1=count not known.
Definition: tags.hpp:94
TypeId typeId_
Type id.
Definition: tags.hpp:93
int ifdId_
Link to the (preferred) IFD.
Definition: tags.hpp:91
const char * desc_
Short tag description.
Definition: tags.hpp:90
const char * title_
Tag title.
Definition: tags.hpp:89
PrintFct printFct_
Pointer to tag print function.
Definition: tags.hpp:95
const char * name_
One word tag label.
Definition: tags.hpp:88