14#include "exiv2lib_export.h"
17#include "metadatum.hpp"
132 int setDataArea(
const byte* buf,
size_t len)
const;
138 [[nodiscard]] std::string
key()
const override;
139 [[nodiscard]]
const char*
familyName()
const override;
140 [[nodiscard]] std::string
groupName()
const override;
141 [[nodiscard]] std::string
tagName()
const override;
142 [[nodiscard]] std::string
tagLabel()
const override;
143 [[nodiscard]] std::string
tagDesc()
const override;
144 [[nodiscard]] uint16_t
tag()
const override;
148 [[nodiscard]]
const char*
ifdName()
const;
150 [[nodiscard]]
int idx()
const;
163 std::ostream&
write(std::ostream& os,
const ExifData* pMetadata =
nullptr)
const override;
167 [[nodiscard]]
const char*
typeName()
const override;
169 [[nodiscard]]
size_t typeSize()
const override;
171 [[nodiscard]]
size_t count()
const override;
173 [[nodiscard]]
size_t size()
const override;
175 [[nodiscard]] std::string
toString()
const override;
176 [[nodiscard]] std::string
toString(
size_t n)
const override;
177 [[nodiscard]] int64_t
toInt64(
size_t n = 0)
const override;
178 [[nodiscard]]
float toFloat(
size_t n = 0)
const override;
181 [[nodiscard]]
const Value&
value()
const override;
232#ifdef EXV_ENABLE_FILESYSTEM
243 [[nodiscard]]
size_t writeFile(
const std::string& path)
const;
249 [[nodiscard]]
const char*
mimeType()
const;
254 [[nodiscard]]
const char*
extension()
const;
284#ifdef EXV_ENABLE_FILESYSTEM
322#ifdef EXV_ENABLE_FILESYSTEM
436 return exifMetadata_.begin();
440 return exifMetadata_.end();
446 iterator findKey(
const ExifKey& key);
453 return exifMetadata_.begin();
457 return exifMetadata_.end();
463 [[nodiscard]] const_iterator findKey(
const ExifKey& key)
const;
466 return exifMetadata_.empty();
469 [[nodiscard]]
size_t count()
const {
470 return exifMetadata_.size();
561 encode(blob,
nullptr, 0, byteOrder, exifData);
A container for Exif data. This is a top-level class of the Exiv2 library. The container holds Exifda...
Definition exif.hpp:379
bool empty() const
Return true if there is no Exif metadata.
Definition exif.hpp:465
size_t count() const
Get the number of metadata entries.
Definition exif.hpp:469
iterator erase(iterator pos)
Delete the Exifdatum at iterator position pos, return the position of the next exifdatum....
Definition exif.cpp:486
void sortByTag()
Sort metadata by tag.
Definition exif.cpp:478
void clear()
Delete all Exifdatum instances resulting in an empty container. Note that this also removes thumbnail...
Definition exif.cpp:470
ExifMetadata::iterator iterator
ExifMetadata iterator type.
Definition exif.hpp:382
iterator begin()
Begin of the metadata.
Definition exif.hpp:435
Exifdatum & operator[](const std::string &key)
Returns a reference to the Exifdatum that is associated with a particular key. If ExifData does not a...
Definition exif.cpp:443
const_iterator end() const
End of the metadata.
Definition exif.hpp:456
void add(const ExifKey &key, const Value *pValue)
Add an Exifdatum from the supplied key and value pair. This method copies (clones) key and value....
Definition exif.cpp:453
void sortByKey()
Sort metadata by key.
Definition exif.cpp:474
iterator end()
End of the metadata.
Definition exif.hpp:439
ExifMetadata::const_iterator const_iterator
ExifMetadata const iterator type.
Definition exif.hpp:384
const_iterator begin() const
Begin of the metadata.
Definition exif.hpp:452
Concrete keys for Exif metadata and access to Exif tag reference data.
Definition tags.hpp:271
std::unique_ptr< ExifKey > UniquePtr
Shortcut for an ExifKey auto pointer.
Definition tags.hpp:274
Stateless parser class for Exif data. Images use this class to decode and encode binary Exif data.
Definition exif.hpp:485
static void encode(Blob &blob, ByteOrder byteOrder, ExifData &exifData)
Encode metadata from the provided metadata to Exif format.
Definition exif.hpp:560
static ByteOrder decode(ExifData &exifData, const byte *pData, size_t size)
Decode metadata from a buffer pData of length size with binary Exif data to the provided metadata con...
Definition exif.cpp:490
static WriteMethod encode(Blob &blob, const byte *pData, size_t size, ByteOrder byteOrder, ExifData &exifData)
Encode Exif metadata from the provided metadata to binary Exif format.
Definition exif.cpp:509
ExifThumbC(const ExifData &exifData)
Constructor.
Definition exif.cpp:368
const char * extension() const
Return the file extension for the format of the thumbnail (".tif" or ".jpg").
Definition exif.cpp:400
DataBuf copy() const
Return the thumbnail image in a DataBuf. The caller owns the data buffer and DataBuf ensures that it ...
Definition exif.cpp:371
size_t writeFile(const std::string &path) const
Write the thumbnail image to a file.
const char * mimeType() const
Return the MIME type of the thumbnail, either "image/tiff" or "image/jpeg".
Definition exif.cpp:393
ExifThumb(ExifData &exifData)
Constructor.
Definition exif.cpp:407
void erase()
Delete the thumbnail from the Exif data. Removes all Exif.Thumbnail.*, i.e., Exif IFD1 tags.
Definition exif.cpp:439
void setJpegThumbnail(const std::string &path, URational xres, URational yres, uint16_t unit)
Set the Exif thumbnail to the JPEG image path. Set XResolution, YResolution and ResolutionUnit to xre...
void setJpegThumbnail(const std::string &path)
Set the Exif thumbnail to the JPEG image path.
An Exif metadatum, consisting of an ExifKey and a Value and methods to manipulate these.
Definition exif.hpp:41
IfdId ifdId() const
Return the IFD id as an integer. (Do not use, this is meant for library internal use....
Definition exif.cpp:300
size_t typeSize() const override
Return the size in bytes of one component of this type.
Definition exif.cpp:324
Value::UniquePtr getValue() const override
Return an auto-pointer to a copy (clone) of the value. The caller owns this copy and the auto-poiner ...
Definition exif.cpp:356
std::string groupName() const override
Return the name of the metadata group (which is also the second part of the key)
Definition exif.cpp:280
float toFloat(size_t n=0) const override
Return the n-th component of the value converted to float. The return value is -1 if the value is not...
Definition exif.cpp:348
DataBuf dataArea() const
Return a copy of the data area of the value. The caller owns this copy and DataBuf ensures that it wi...
Definition exif.cpp:364
friend Exifdatum & setValue(Exifdatum &, const T &)
Set the value of exifDatum to value. If the object already has a value, it is replaced....
Definition exif.cpp:147
std::string key() const override
Return the key of the Exifdatum.
Definition exif.cpp:272
size_t size() const override
Return the size of the value in bytes.
Definition exif.cpp:332
std::string tagDesc() const override
Return a description for the tag.
Definition exif.cpp:292
TypeId typeId() const override
Return the type id of the value.
Definition exif.cpp:316
std::string toString() const override
Return the value as a string.
Definition exif.cpp:336
int idx() const
Return the index (unique id of this key within the original IFD)
Definition exif.cpp:308
const char * familyName() const override
Return the name of the metadata family (which is also the first part of the key)
Definition exif.cpp:276
const char * typeName() const override
Return the name of the type.
Definition exif.cpp:320
size_t count() const override
Return the number of components in the value.
Definition exif.cpp:328
size_t copy(byte *buf, ByteOrder byteOrder) const override
Write value to a data buffer and return the number of bytes written.
Definition exif.cpp:312
Exifdatum(const ExifKey &key, const Value *pValue=nullptr)
Constructor for new tags created by an application. The Exifdatum is created from a key / value pair....
Definition exif.cpp:154
const char * ifdName() const
Return the name of the IFD.
Definition exif.cpp:304
std::ostream & write(std::ostream &os, const ExifData *pMetadata=nullptr) const override
Write the interpreted value to an output stream, return the stream.
Definition exif.cpp:166
const Value & value() const override
Return a constant reference to the value.
Definition exif.cpp:198
size_t sizeDataArea() const
Return the size of the data area.
Definition exif.cpp:360
Exifdatum & operator=(const Exifdatum &rhs)
Assignment operator.
Definition exif.cpp:204
std::string tagName() const override
Return the name of the tag (which is also the third part of the key)
Definition exif.cpp:284
uint16_t tag() const override
Return the tag.
Definition exif.cpp:296
int64_t toInt64(size_t n=0) const override
Return the n-th component of the value converted to int64_t. The return value is -1 if the value is n...
Definition exif.cpp:344
Rational toRational(size_t n=0) const override
Return the n-th component of the value converted to Rational. The return value is -1/1 if the value i...
Definition exif.cpp:352
std::string tagLabel() const override
Return a label for the tag.
Definition exif.cpp:288
~Exifdatum() override=default
Destructor.
int setDataArea(const byte *buf, size_t len) const
Set the data area by copying (cloning) the buffer pointed to by buf.
Definition exif.cpp:268
Common interface for all types of values used with metadata.
Definition value.hpp:33
std::unique_ptr< Value > UniquePtr
Shortcut for a Value auto pointer.
Definition value.hpp:36
Class CrwImage to access Canon CRW images. References: The Canon RAW (CRW) File Format by Phil Harv...
Definition asfvideo.hpp:15
IfdId
Type to specify the IFD to which a metadata belongs.
Definition tags.hpp:34
TypeId
Exiv2 value type identifiers.
Definition types.hpp:70
std::pair< int32_t, int32_t > Rational
8 byte signed rational type.
Definition types.hpp:31
ByteOrder
Type to express the byte order (little or big endian)
Definition types.hpp:34
WriteMethod
Type to indicate write method used by TIFF parsers.
Definition types.hpp:41
std::list< Exifdatum > ExifMetadata
Container type to hold all metadata.
Definition exif.hpp:365
std::vector< byte > Blob
Container for binary data.
Definition types.hpp:102
std::pair< uint32_t, uint32_t > URational
8 byte unsigned rational type.
Definition types.hpp:29
Utility class containing a character array. All it does is to take care of memory allocation and dele...
Definition types.hpp:124