24 #include "exiv2lib_export.h" 73 void setComment(
const std::string&
comment);
78 std::string mimeType()
const;
82 void doWriteMetadata(
BasicIo& outIo);
85 long getHeaderOffset(
byte *data,
long data_size,
86 byte *header,
long header_size);
88 void debugPrintHex(
byte *data,
long size);
89 void decodeChunks(
long filesize);
90 void inject_VP8X(
BasicIo& iIo,
bool has_xmp,
bool has_exif,
91 bool has_alpha,
bool has_icc,
int width,
101 const static byte WEBP_PAD_ODD;
102 const static int WEBP_TAG_SIZE;
103 const static int WEBP_VP8X_ICC_BIT;
104 const static int WEBP_VP8X_ALPHA_BIT;
105 const static int WEBP_VP8X_EXIF_BIT;
106 const static int WEBP_VP8X_XMP_BIT;
107 const static char* WEBP_CHUNK_HEADER_VP8X;
108 const static char* WEBP_CHUNK_HEADER_VP8L;
109 const static char* WEBP_CHUNK_HEADER_VP8;
110 const static char* WEBP_CHUNK_HEADER_ANMF;
111 const static char* WEBP_CHUNK_HEADER_ANIM;
112 const static char* WEBP_CHUNK_HEADER_ICCP;
113 const static char* WEBP_CHUNK_HEADER_EXIF;
114 const static char* WEBP_CHUNK_HEADER_XMP;
136 #endif // WEBPIMAGE_HPP An interface for simple binary IO.
Definition: basicio.hpp:55
EXIV2API bool isWebPType(BasicIo &iIo, bool advance)
Check if the file iIo is a WebP Video.
Definition: webpimage.cpp:746
std::auto_ptr< Image > AutoPtr
Image auto_ptr type.
Definition: image.hpp:81
Utility class containing a character array. All it does is to take care of memory allocation and dele...
Definition: types.hpp:193
EXIV2API Image::AutoPtr newWebPInstance(BasicIo::AutoPtr io, bool create)
Create a new WebPImage instance and return an auto-pointer to it. Caller owns the returned object and...
Definition: webpimage.cpp:737
uint8_t byte
1 byte unsigned integer type.
Definition: types.hpp:94
Abstract base class defining the interface for an image. This is the top-level interface to the Exiv2...
Definition: image.hpp:78
PrintStructureOption
Options for printStructure.
Definition: image.hpp:64
A container for IPTC data. This is a top-level class of the Exiv2 library.
Definition: iptc.hpp:170
std::auto_ptr< BasicIo > AutoPtr
BasicIo auto_ptr type.
Definition: basicio.hpp:58
Provides classes and functions to encode and decode Exif and Iptc data. The libexiv2 API consists of ...
Definition: asfvideo.hpp:36
const int webp
Treating webp as an image type>
Definition: webpimage.hpp:38
Exiv2 type for the Exif user comment.
Definition: types.hpp:139
Class to access WEBP video files.
Definition: webpimage.hpp:44