Concrete keys for Exif metadata and access to Exif tag reference data.
More...
#include <tags.hpp>
|
using | UniquePtr = std::unique_ptr< ExifKey > |
| Shortcut for an ExifKey auto pointer.
|
|
using | UniquePtr = std::unique_ptr< Key > |
| Shortcut for a Key auto pointer.
|
|
|
std::string | key () const override |
| Return the key of the metadatum as a string. The key is of the form 'familyName.groupName.tagName'. Note however that the key is not necessarily unique, e.g., an ExifData may contain multiple metadata with the same key.
|
|
const char * | familyName () const override |
| Return an identifier for the type of metadata (the first part of the key)
|
|
std::string | groupName () const override |
| Return the name of the group (the second part of the key)
|
|
IfdId | ifdId () const |
| Return the IFD id. (Do not use, this is meant for library internal use.)
|
|
std::string | tagName () const override |
| Return the name of the tag (which is also the third part of the key)
|
|
uint16_t | tag () const override |
| Return the tag number.
|
|
std::string | tagLabel () const override |
| Return a label for the tag.
|
|
std::string | tagDesc () const override |
| Return a description for the tag.
|
|
TypeId | defaultTypeId () const |
| Return the default type id for this tag.
|
|
UniquePtr | clone () const |
|
int | idx () const |
| Return the index (unique id of this key within the original Exif data, 0 if not set)
|
|
|
| Key ()=default |
|
| Key (const Key &)=default |
|
Key & | operator= (const Key &)=default |
| Assignment operator. Protected so that it can only be used by subclasses but not directly.
|
|
Concrete keys for Exif metadata and access to Exif tag reference data.
- Examples
- addmoddel.cpp, and mrwthumb.cpp.
◆ ExifKey() [1/3]
Exiv2::ExifKey::ExifKey |
( |
const std::string & |
key | ) |
|
|
explicit |
Constructor to create an Exif key from a key string.
- Parameters
-
- Exceptions
-
Error | if the first part of the key is not 'Exif' or the remaining parts of the key cannot be parsed and converted to a group name and tag name. |
◆ ExifKey() [2/3]
Exiv2::ExifKey::ExifKey |
( |
uint16_t |
tag, |
|
|
const std::string & |
groupName |
|
) |
| |
Constructor to create an Exif key from the tag number and group name.
- Parameters
-
tag | The tag value |
groupName | The name of the group, i.e., the second part of the Exif key. |
- Exceptions
-
Error | if the key cannot be constructed from the tag number and group name. |
◆ ExifKey() [3/3]
Exiv2::ExifKey::ExifKey |
( |
const TagInfo & |
ti | ) |
|
|
explicit |
Constructor to create an Exif key from a TagInfo instance.
- Parameters
-
- Exceptions
-
Error | if the key cannot be constructed from the tag number and group name. |
The documentation for this class was generated from the following file: