mirror of
https://github.com/webmproject/libwebp.git
synced 2024-11-20 04:18:26 +01:00
5dbd403029
This is to disallow any accidental creation/parsing of fragmented images by users. Change-Id: I970a4bd5ec5a522867b24a0c9efb45164ae67047
197 lines
6.6 KiB
Plaintext
197 lines
6.6 KiB
Plaintext
__ __ ____ ____ ____ __ __ _ __ __
|
|
/ \\/ \/ _ \/ _ \/ _ \/ \ \/ \___/_ / _\
|
|
\ / __/ _ \ __/ / / (_/ /__
|
|
\__\__/\_____/_____/__/ \__//_/\_____/__/___/v0.1.0
|
|
|
|
|
|
Description:
|
|
============
|
|
|
|
WebPMux: set of two libraries 'Mux' and 'Demux' for creation, extraction and
|
|
manipulation of an extended format WebP file, which can have features like
|
|
color profile, metadata, animation and fragmented images. Reference
|
|
command-line tools 'webpmux' and 'vwebp' as well as the WebP container
|
|
specification 'doc/webp-container-spec.txt' are also provided in this package.
|
|
|
|
WebP Mux tool:
|
|
==============
|
|
|
|
The examples/ directory contains a tool (webpmux) for manipulating WebP
|
|
files. The webpmux tool can be used to create an extended format WebP file and
|
|
also to extract or strip relevant data from such a file.
|
|
|
|
A list of options is available using the -help command line flag:
|
|
|
|
> webpmux -help
|
|
Usage: webpmux -get GET_OPTIONS INPUT -o OUTPUT
|
|
webpmux -set SET_OPTIONS INPUT -o OUTPUT
|
|
webpmux -strip STRIP_OPTIONS INPUT -o OUTPUT
|
|
webpmux -frame FRAME_OPTIONS [-frame...] [-loop LOOP_COUNT]
|
|
[-bgcolor BACKGROUND_COLOR] -o OUTPUT
|
|
webpmux -info INPUT
|
|
webpmux [-h|-help]
|
|
webpmux -version
|
|
|
|
GET_OPTIONS:
|
|
Extract relevant data.
|
|
icc Get ICC profile.
|
|
exif Get EXIF metadata.
|
|
xmp Get XMP metadata.
|
|
frame n Get nth frame.
|
|
|
|
SET_OPTIONS:
|
|
Set color profile/metadata.
|
|
icc file.icc Set ICC profile.
|
|
exif file.exif Set EXIF metadata.
|
|
xmp file.xmp Set XMP metadata.
|
|
where: 'file.icc' contains the ICC profile to be set,
|
|
'file.exif' contains the EXIF metadata to be set and
|
|
'file.xmp' contains the XMP metadata to be set
|
|
|
|
STRIP_OPTIONS:
|
|
Strip color profile/metadata.
|
|
icc Strip ICC profile.
|
|
exif Strip EXIF metadata.
|
|
xmp Strip XMP metadata.
|
|
|
|
FRAME_OPTIONS(i):
|
|
Create animation.
|
|
file_i +di+xi+yi+mi
|
|
where: 'file_i' is the i'th animation frame (WebP format),
|
|
'di' is the pause duration before next frame.
|
|
'xi','yi' specify the image offset for this frame.
|
|
'mi' is the dispose method for this frame (0 or 1).
|
|
|
|
LOOP_COUNT:
|
|
Number of times to repeat the animation.
|
|
Valid range is 0 to 65535 [Default: 0 (infinite)].
|
|
|
|
BACKGROUND_COLOR:
|
|
Background color of the canvas.
|
|
A,R,G,B
|
|
where: 'A', 'R', 'G' and 'B' are integers in the range 0 to 255 specifying
|
|
the Alpha, Red, Green and Blue component values respectively
|
|
[Default: 255,255,255,255].
|
|
|
|
INPUT & OUTPUT are in WebP format.
|
|
|
|
Note: The nature of EXIF, XMP and ICC data is not checked and is assumed to be
|
|
valid.
|
|
|
|
WebP viewer tool:
|
|
================
|
|
|
|
The examples/ directory also contains a tool (vwebp) for viewing WebP files.
|
|
It decodes the image and visualizes it using OpenGL.
|
|
|
|
A list of options is available using the -h command line flag:
|
|
|
|
> vwebp -h
|
|
Decodes the WebP image file and visualize it using OpenGL
|
|
Options are:
|
|
-version .... print version number and exit.
|
|
-nofancy ..... don't use the fancy YUV420 upscaler.
|
|
-nofilter .... disable in-loop filtering.
|
|
-mt .......... use multi-threading
|
|
-info ........ print info.
|
|
-h ....... this help message.
|
|
|
|
Mux API:
|
|
========
|
|
The Mux API contains methods for adding data to and reading data from WebP
|
|
files. This API currently supports XMP/EXIF metadata, ICC profile, animation
|
|
and fragmented images. Other features may be added in subsequent releases.
|
|
|
|
Example#1 (pseudo code): Creating a WebPMux object with image data, color
|
|
profile and XMP metadata.
|
|
|
|
int copy_data = 0;
|
|
WebPMux* mux = WebPMuxNew();
|
|
// ... (Prepare image data).
|
|
WebPMuxSetImage(mux, &image, copy_data);
|
|
// ... (Prepare ICC profile data).
|
|
WebPMuxSetChunk(mux, "ICCP", &icc_profile, copy_data);
|
|
// ... (Prepare XMP metadata).
|
|
WebPMuxSetChunk(mux, "XMP ", &xmp, copy_data);
|
|
// Get data from mux in WebP RIFF format.
|
|
WebPMuxAssemble(mux, &output_data);
|
|
WebPMuxDelete(mux);
|
|
// ... (Consume output_data; e.g. write output_data.bytes to file).
|
|
WebPDataClear(&output_data);
|
|
|
|
|
|
Example#2 (pseudo code): Get image and color profile data from a WebP file.
|
|
|
|
int copy_data = 0;
|
|
// ... (Read data from file).
|
|
WebPMux* mux = WebPMuxCreate(&data, copy_data);
|
|
WebPMuxGetFrame(mux, 1, &image);
|
|
// ... (Consume image; e.g. call WebPDecode() to decode the data).
|
|
WebPMuxGetChunk(mux, "ICCP", &icc_profile);
|
|
// ... (Consume icc_profile).
|
|
WebPMuxDelete(mux);
|
|
free(data);
|
|
|
|
|
|
For a detailed Mux API reference, please refer to the header file
|
|
(src/webp/mux.h).
|
|
|
|
Demux API:
|
|
=========
|
|
The Demux API enables extraction of images and extended format data from
|
|
WebP files. This API currently supports reading of XMP/EXIF metadata, ICC
|
|
profile, animation and fragmented images. Other features may be added in
|
|
subsequent releases.
|
|
|
|
Code Example: Demuxing WebP data to extract all the frames, ICC profile
|
|
and EXIF/XMP metadata.
|
|
|
|
WebPDemuxer* demux = WebPDemux(&webp_data);
|
|
uint32_t width = WebPDemuxGetI(demux, WEBP_FF_CANVAS_WIDTH);
|
|
uint32_t height = WebPDemuxGetI(demux, WEBP_FF_CANVAS_HEIGHT);
|
|
// ... (Get information about the features present in the WebP file).
|
|
uint32_t flags = WebPDemuxGetI(demux, WEBP_FF_FORMAT_FLAGS);
|
|
|
|
// ... (Iterate over all frames).
|
|
WebPIterator iter;
|
|
if (WebPDemuxGetFrame(demux, 1, &iter)) {
|
|
do {
|
|
// ... (Consume 'iter'; e.g. Decode 'iter.fragment' with WebPDecode(),
|
|
// ... and get other frame properties like width, height, offsets etc.
|
|
// ... see 'struct WebPIterator' below for more info).
|
|
} while (WebPDemuxNextFrame(&iter));
|
|
WebPDemuxReleaseIterator(&iter);
|
|
}
|
|
|
|
// ... (Extract metadata).
|
|
WebPChunkIterator chunk_iter;
|
|
if (flags & ICCP_FLAG) WebPDemuxGetChunk(demux, "ICCP", 1, &chunk_iter);
|
|
// ... (Consume the ICC profile in 'chunk_iter.chunk').
|
|
WebPDemuxReleaseChunkIterator(&chunk_iter);
|
|
if (flags & EXIF_FLAG) WebPDemuxGetChunk(demux, "EXIF", 1, &chunk_iter);
|
|
// ... (Consume the EXIF metadata in 'chunk_iter.chunk').
|
|
WebPDemuxReleaseChunkIterator(&chunk_iter);
|
|
if (flags & XMP_FLAG) WebPDemuxGetChunk(demux, "XMP ", 1, &chunk_iter);
|
|
// ... (Consume the XMP metadata in 'chunk_iter.chunk').
|
|
WebPDemuxReleaseChunkIterator(&chunk_iter);
|
|
WebPDemuxDelete(demux);
|
|
|
|
|
|
For a detailed Demux API reference, please refer to the header file
|
|
(src/webp/demux.h).
|
|
|
|
|
|
Bugs:
|
|
=====
|
|
|
|
Please report all bugs to our issue tracker:
|
|
http://code.google.com/p/webp/issues
|
|
Patches welcome! See this page to get started:
|
|
http://www.webmproject.org/code/contribute/submitting-patches/
|
|
|
|
Discuss:
|
|
========
|
|
|
|
Email: webp-discuss@webmproject.org
|
|
Web: http://groups.google.com/a/webmproject.org/group/webp-discuss
|