![]() |
Exiv2
|
Stateless parser class for data in TIFF format. Images use this class to decode and encode TIFF data. It is a wrapper of the internal class Internal::TiffParserWorker. More...
#include <tiffimage.hpp>
Static Public Member Functions | |
static ByteOrder | decode (ExifData &exifData, IptcData &iptcData, XmpData &xmpData, const byte *pData, uint32_t size) |
Decode metadata from a buffer pData of length size with data in TIFF format to the provided metadata containers. More... | |
static WriteMethod | encode (BasicIo &io, const byte *pData, uint32_t size, ByteOrder byteOrder, const ExifData &exifData, const IptcData &iptcData, const XmpData &xmpData) |
Encode metadata from the provided metadata to TIFF format. More... | |
Stateless parser class for data in TIFF format. Images use this class to decode and encode TIFF data. It is a wrapper of the internal class Internal::TiffParserWorker.
|
static |
Decode metadata from a buffer pData of length size with data in TIFF format to the provided metadata containers.
exifData | Exif metadata container. |
iptcData | IPTC metadata container. |
xmpData | XMP metadata container. |
pData | Pointer to the data buffer. Must point to data in TIFF format; no checks are performed. |
size | Length of the data buffer. |
References Exiv2::Internal::TiffParserWorker::decode(), Exiv2::Internal::TiffMapping::findDecoder(), and Exiv2::Internal::Tag::root.
Referenced by Exiv2::ExifParser::decode(), Exiv2::Jp2Image::readMetadata(), Exiv2::MrwImage::readMetadata(), Exiv2::TiffImage::readMetadata(), and Exiv2::RafImage::readMetadata().
|
static |
Encode metadata from the provided metadata to TIFF format.
The original binary image in the memory block pData, size is parsed and updated in-place if possible ("non-intrusive" writing). If that is not possible (e.g., if new tags were added), the entire TIFF structure is re-written to the io instance ("intrusive" writing).
The return value indicates which write method was used. If it is wmNonIntrusive
, the original memory pData, size contains the result and nothing is written to io. If the return value is wmIntrusive
, a new TIFF structure was created and written to io. The memory block pData, size may be partly updated in this case and should not be used anymore.
wmIntrusive
and nothing is written to io, i.e., no TIFF header is written.io | IO instance to write the binary image to in case of "intrusive" writing. Nothing is written to io in the case of "non-intrusive" writing. |
pData | Pointer to the binary image data buffer. Must point to data in TIFF format; no checks are performed. Will be modified if "non-intrusive" writing is possible. |
size | Length of the data buffer. |
byteOrder | Byte order to use. |
exifData | Exif metadata container. |
iptcData | IPTC metadata container. |
xmpData | XMP metadata container. |
Referenced by Exiv2::TiffImage::writeMetadata().