Exiv2
Loading...
Searching...
No Matches
crwimage.hpp
1// SPDX-License-Identifier: GPL-2.0-or-later
2
12#ifndef CRWIMAGE_HPP_
13#define CRWIMAGE_HPP_
14
15// *****************************************************************************
16#include "exiv2lib_export.h"
17
18// included header files
19#include "image.hpp"
20
21// *****************************************************************************
22// namespace extensions
23namespace Exiv2 {
24// *****************************************************************************
25// class declarations
26class ExifData;
27class IptcData;
28
29// *****************************************************************************
30// class definitions
31
36class EXIV2API CrwImage : public Image {
37 public:
39
40
55 CrwImage(BasicIo::UniquePtr io, bool create);
57
59
60 void readMetadata() override;
61 void writeMetadata() override;
66 void setIptcData(const IptcData& iptcData) override;
68
70
71 [[nodiscard]] std::string mimeType() const override;
72 [[nodiscard]] uint32_t pixelWidth() const override;
73 [[nodiscard]] uint32_t pixelHeight() const override;
75}; // class CrwImage
76
80class EXIV2API CrwParser {
81 public:
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);
113
114}; // class CrwParser
115
116// *****************************************************************************
117// template, inline and free functions
118
119// These could be static private functions on Image subclasses but then
120// ImageFactory needs to be made a friend.
126EXIV2API Image::UniquePtr newCrwInstance(BasicIo::UniquePtr io, bool create);
127
129EXIV2API bool isCrwType(BasicIo& iIo, bool advance);
130
131} // namespace Exiv2
132
133#endif // #ifndef CRWIMAGE_HPP_
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