16#include "exiv2lib_export.h"
71 [[nodiscard]] std::string
mimeType()
const override;
72 [[nodiscard]] uint32_t
pixelWidth()
const override;
73 [[nodiscard]] uint32_t
pixelHeight()
const override;
97 static void decode(
CrwImage* pCrwImage,
const byte* pData,
size_t size);
112 static void encode(
Blob& blob,
const byte* pData,
size_t size,
const CrwImage* pCrwImage);
An interface for simple binary IO.
Definition basicio.hpp:35
std::unique_ptr< BasicIo > UniquePtr
BasicIo auto_ptr type.
Definition basicio.hpp:38
Class to access raw Canon CRW images. Only Exif metadata and a comment are supported....
Definition crwimage.hpp:36
std::string mimeType() const override
Return the MIME type of the image.
Definition crwimage.cpp:25
uint32_t pixelHeight() const override
Return the pixel height of the image.
Definition crwimage.cpp:37
CrwImage(BasicIo::UniquePtr io, bool create)
Constructor that can either open an existing CRW image or create a new image from scratch....
Definition crwimage.cpp:22
void setIptcData(const IptcData &iptcData) override
Not supported. CRW format does not contain IPTC metadata. Calling this function will throw an Error(E...
Definition crwimage.cpp:45
void writeMetadata() override
Write metadata back to the image.
Definition crwimage.cpp:72
uint32_t pixelWidth() const override
Return the pixel width of the image.
Definition crwimage.cpp:29
void readMetadata() override
Read all metadata supported by a specific image format from the image. Before this method is called,...
Definition crwimage.cpp:50
Definition crwimage.hpp:80
static void encode(Blob &blob, const byte *pData, size_t size, const CrwImage *pCrwImage)
Encode metadata from the CRW image into a data buffer (the binary CRW image).
Definition crwimage.cpp:116
static void decode(CrwImage *pCrwImage, const byte *pData, size_t size)
Decode metadata from a Canon CRW image in data buffer pData of length size into crwImage.
Definition crwimage.cpp:102
A container for Exif data. This is a top-level class of the Exiv2 library. The container holds Exifda...
Definition exif.hpp:379
Image(ImageType type, uint16_t supportedMetadata, BasicIo::UniquePtr io)
Constructor taking the image type, a bitmap of the supported metadata types and an auto-pointer that ...
Definition image.cpp:132
virtual BasicIo & io() const
Return a reference to the BasicIo instance being used for Io.
Definition image.cpp:680
virtual IptcData & iptcData()
Returns an IptcData instance containing currently buffered IPTC data.
Definition image.cpp:536
std::unique_ptr< Image > UniquePtr
Image auto_ptr type.
Definition image.hpp:53
A container for IPTC data. This is a top-level class of the Exiv2 library.
Definition iptc.hpp:153
Class CrwImage to access Canon CRW images. References: The Canon RAW (CRW) File Format by Phil Harv...
Definition asfvideo.hpp:15
EXIV2API Image::UniquePtr newCrwInstance(BasicIo::UniquePtr io, bool create)
Create a new CrwImage instance and return an auto-pointer to it. Caller owns the returned object and ...
Definition crwimage.cpp:131
EXIV2API bool isCrwType(BasicIo &iIo, bool advance)
Check if the file iIo is a CRW image.
Definition crwimage.cpp:139
std::vector< byte > Blob
Container for binary data.
Definition types.hpp:102