31 #include "exiv2lib_export.h" 89 void doWriteMetadata(
BasicIo& outIo);
92 long getHeaderOffset(
byte *data,
long data_size,
93 byte *header,
long header_size);
95 void debugPrintHex(
byte *data,
long size);
96 void decodeChunks(
long filesize);
97 void inject_VP8X(
BasicIo& iIo,
bool has_xmp,
bool has_exif,
98 bool has_alpha,
bool has_icc,
int width,
108 const static byte WEBP_PAD_ODD;
109 const static int WEBP_TAG_SIZE;
110 const static int WEBP_VP8X_ICC_BIT;
111 const static int WEBP_VP8X_ALPHA_BIT;
112 const static int WEBP_VP8X_EXIF_BIT;
113 const static int WEBP_VP8X_XMP_BIT;
114 const static char* WEBP_CHUNK_HEADER_VP8X;
115 const static char* WEBP_CHUNK_HEADER_VP8L;
116 const static char* WEBP_CHUNK_HEADER_VP8;
117 const static char* WEBP_CHUNK_HEADER_ANMF;
118 const static char* WEBP_CHUNK_HEADER_ANIM;
119 const static char* WEBP_CHUNK_HEADER_ICCP;
120 const static char* WEBP_CHUNK_HEADER_EXIF;
121 const static char* WEBP_CHUNK_HEADER_XMP;
143 #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:730
std::auto_ptr< Image > AutoPtr
Image auto_ptr type.
Definition: image.hpp:84
Utility class containing a character array. All it does is to take care of memory allocation and dele...
Definition: types.hpp:204
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:721
uint8_t byte
1 byte unsigned integer type.
Definition: types.hpp:105
Abstract base class defining the interface for an image. This is the top-level interface to the Exiv2...
Definition: image.hpp:81
PrintStructureOption
Options for printStructure.
Definition: image.hpp:67
A container for IPTC data. This is a top-level class of the Exiv2 library.
Definition: iptc.hpp:173
std::auto_ptr< BasicIo > AutoPtr
BasicIo auto_ptr type.
Definition: basicio.hpp:58
IPTC string type.
Definition: types.hpp:147
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:45
Exiv2 type for the Exif user comment.
Definition: types.hpp:150
Class to access WEBP video files.
Definition: webpimage.hpp:51