2011-10-04 19:11:15 +02:00
|
|
|
<!--
|
|
|
|
|
2011-10-05 00:11:43 +02:00
|
|
|
Although you may be viewing an alternate representation, this document
|
|
|
|
is sourced in Markdown, a light-duty markup scheme, and is optimized for
|
|
|
|
the [kramdown](http://kramdown.rubyforge.org/) transformer.
|
2011-10-04 19:11:15 +02:00
|
|
|
|
|
|
|
See the accompanying README. External link targets are referenced at the
|
|
|
|
end of this file.
|
|
|
|
|
|
|
|
-->
|
|
|
|
|
2011-10-04 20:02:15 +02:00
|
|
|
|
|
|
|
WebP Container Specification
|
|
|
|
============================
|
2011-10-04 19:11:15 +02:00
|
|
|
|
|
|
|
* TOC placeholder
|
|
|
|
{:toc}
|
|
|
|
|
|
|
|
|
2011-10-04 20:02:15 +02:00
|
|
|
Introduction
|
|
|
|
------------
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-06-22 01:03:20 +02:00
|
|
|
WebP is an image format that uses either (i) the VP8 key frame encoding
|
|
|
|
to compress image data in a lossy way, or (ii) the WebP lossless encoding
|
|
|
|
(and possibly other encodings in the future). These encoding schemes should
|
|
|
|
make it more efficient than currently used formats. It is optimized for fast
|
2012-10-31 00:00:45 +01:00
|
|
|
image transfer over the network (e.g., for websites). The WebP format has
|
2012-11-02 23:59:39 +01:00
|
|
|
feature parity (color profile, metadata, animation etc) with other formats as
|
|
|
|
well. This document describes the structure of a WebP file.
|
2011-10-04 21:03:53 +02:00
|
|
|
|
2012-06-22 01:03:20 +02:00
|
|
|
The WebP container (i.e., RIFF container for WebP) allows feature support over
|
|
|
|
and above the basic use case of WebP (i.e., a file containing a single image
|
|
|
|
encoded as a VP8 key frame). The WebP container provides additional support
|
|
|
|
for:
|
2011-10-04 21:03:53 +02:00
|
|
|
|
2012-06-22 01:03:20 +02:00
|
|
|
* **Lossless compression.** An image can be losslessly compressed, using the
|
|
|
|
WebP Lossless Format.
|
|
|
|
|
2012-10-31 00:00:45 +01:00
|
|
|
* **Metadata.** An image may have metadata stored in EXIF or XMP formats.
|
|
|
|
|
2012-07-13 21:16:16 +02:00
|
|
|
* **Transparency.** An image may have transparency, i.e., an alpha channel.
|
2011-10-04 21:03:53 +02:00
|
|
|
|
2012-10-30 23:58:54 +01:00
|
|
|
* **Color Profile.** An image may have an embedded ICC profile as described
|
|
|
|
by the [International Color Consortium][iccspec].
|
|
|
|
|
2012-11-02 23:59:39 +01:00
|
|
|
* **Animation.** An image may have multiple frames with pauses between them,
|
|
|
|
making it an animation.
|
|
|
|
|
2012-10-31 00:06:36 +01:00
|
|
|
* **Image Fragmentation.** A single bitstream in WebP has an inherent
|
|
|
|
limitation for width or height of 2^14 pixels, and, when using VP8, a 512
|
|
|
|
KiB limit on the size of the first compressed partition. To support larger
|
|
|
|
images, the format supports images that are composed of multiple fragments,
|
|
|
|
each encoded as a separate bitstream. All fragments logically form a single
|
|
|
|
image: they have common metadata, color profile, etc. Image fragmentation
|
|
|
|
may also improve efficiency for larger images, e.g., grass can be encoded
|
|
|
|
differently than sky.
|
|
|
|
|
2012-02-08 00:06:32 +01:00
|
|
|
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
|
|
|
|
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
|
|
|
|
document are to be interpreted as described in [RFC 2119][].
|
|
|
|
|
2012-11-15 20:01:41 +01:00
|
|
|
**Note:** Out of the features mentioned above, lossy compression, lossless
|
2013-03-14 02:16:30 +01:00
|
|
|
compression, transparency, metadata, color profile and animation are finalized
|
|
|
|
and are to be considered stable. On the other hand, image fragmentation is
|
|
|
|
experimental as of now, and is open to discussion, feedback and comments.
|
2012-11-15 20:01:41 +01:00
|
|
|
The same is indicated using annotation "_status: experimental_" in the relevant
|
|
|
|
sections of this document.
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2011-10-05 00:11:43 +02:00
|
|
|
Terminology & Basics
|
|
|
|
------------------------
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-11-02 23:59:39 +01:00
|
|
|
A WebP file contains either a still image (i.e., an encoded matrix of pixels)
|
2012-11-12 20:34:08 +01:00
|
|
|
or an [animation](#animation). Optionally, it can also contain transparency
|
2012-11-02 23:59:39 +01:00
|
|
|
information, color profile and metadata. In case we need to refer only to the
|
2012-07-13 21:16:16 +02:00
|
|
|
matrix of pixels, we will call it the _canvas_ of the image.
|
2011-10-04 17:53:54 +02:00
|
|
|
|
2011-10-05 00:11:43 +02:00
|
|
|
Below are additional terms used throughout this document:
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-10-31 00:06:36 +01:00
|
|
|
_Reader/Writer_
|
|
|
|
|
|
|
|
: Code that reads WebP files is referred to as a _reader_, while code that
|
|
|
|
writes them is referred to as a _writer_.
|
2012-02-08 00:06:32 +01:00
|
|
|
|
|
|
|
_uint16_
|
|
|
|
|
|
|
|
: A 16-bit, little-endian, unsigned integer.
|
|
|
|
|
2012-06-22 01:03:20 +02:00
|
|
|
_uint24_
|
|
|
|
|
|
|
|
: A 24-bit, little-endian, unsigned integer.
|
|
|
|
|
2012-02-08 00:06:32 +01:00
|
|
|
_uint32_
|
|
|
|
|
|
|
|
: A 32-bit, little-endian, unsigned integer.
|
|
|
|
|
2013-03-26 22:48:51 +01:00
|
|
|
_FourCC_
|
|
|
|
|
|
|
|
: A _FourCC_ (four-character code) is a _uint32_ created by concatenating four
|
|
|
|
ASCII characters in little-endian order.
|
|
|
|
|
2012-06-22 01:03:20 +02:00
|
|
|
_1-based_
|
2012-10-31 00:06:36 +01:00
|
|
|
|
2012-06-22 01:03:20 +02:00
|
|
|
: An unsigned integer field storing values offset by `-1`. e.g., Such a field
|
|
|
|
would store value _25_ as _24_.
|
|
|
|
|
2013-03-26 22:48:51 +01:00
|
|
|
RIFF file format
|
|
|
|
----------------
|
|
|
|
The WebP file format is based on the RIFF (resource interchange file format)
|
|
|
|
document format.
|
|
|
|
|
2012-02-08 00:06:32 +01:00
|
|
|
The basic element of a RIFF file is a _chunk_. It consists of:
|
|
|
|
|
|
|
|
0 1 2 3
|
|
|
|
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
| Chunk FourCC |
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
| Chunk Size |
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
| Chunk Payload |
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-02-08 00:06:32 +01:00
|
|
|
Chunk FourCC: 32 bits
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2013-03-26 22:48:51 +01:00
|
|
|
: ASCII four-character code used for chunk identification.
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-02-08 00:06:32 +01:00
|
|
|
Chunk Size: 32 bits (_uint32_)
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2013-03-26 22:48:51 +01:00
|
|
|
: The size of the chunk not including this field, the chunk identifier or
|
|
|
|
padding.
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-02-08 00:06:32 +01:00
|
|
|
Chunk Payload: _Chunk Size_ bytes
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-11-12 20:34:08 +01:00
|
|
|
: The data payload. If _Chunk Size_ is odd, a single padding byte -- that
|
|
|
|
SHOULD be `0` -- is added.
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-02-08 00:06:32 +01:00
|
|
|
_ChunkHeader('ABCD')_
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2013-03-26 22:48:51 +01:00
|
|
|
: This is used to describe the _FourCC_ and _Chunk Size_ header of individual
|
|
|
|
chunks, where 'ABCD' is the FourCC for the chunk. This element's
|
2012-02-08 00:06:32 +01:00
|
|
|
size is 8 bytes.
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2013-03-26 22:48:51 +01:00
|
|
|
**Note:** RIFF has a convention that all-uppercase chunk FourCCs are standard
|
|
|
|
chunks that apply to any RIFF file format, while FourCCs specific to a file
|
|
|
|
format are all lowercase. WebP does not follow this convention.
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-02-08 00:06:32 +01:00
|
|
|
WebP file header
|
|
|
|
----------------
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-02-08 00:06:32 +01:00
|
|
|
0 1 2 3
|
|
|
|
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
| 'R' | 'I' | 'F' | 'F' |
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
| File Size |
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
| 'W' | 'E' | 'B' | 'P' |
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-02-08 00:06:32 +01:00
|
|
|
'RIFF': 32 bits
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-02-08 00:06:32 +01:00
|
|
|
: The ASCII characters 'R' 'I' 'F' 'F'.
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-02-08 00:06:32 +01:00
|
|
|
File Size: 32 bits (_uint32_)
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2013-03-26 22:48:51 +01:00
|
|
|
: The size of the file in bytes starting at offset 8. The maximum value of
|
|
|
|
this field is 2^32 minus 10 bytes and thus the size of the whole file is at
|
|
|
|
most 4GiB minus 2 bytes.
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-02-08 00:06:32 +01:00
|
|
|
'WEBP': 32 bits
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-02-08 00:06:32 +01:00
|
|
|
: The ASCII characters 'W' 'E' 'B' 'P'.
|
2011-10-04 17:53:54 +02:00
|
|
|
|
2013-03-26 22:48:51 +01:00
|
|
|
A WebP file MUST begin with a RIFF header with the FourCC 'WEBP'. The file size
|
|
|
|
in the header is the total size of the chunks that follow plus `4` bytes for
|
|
|
|
the 'WEBP' FourCC. The file SHOULD NOT contain anything after it. As the size
|
|
|
|
of any chunk is even, the size given by the RIFF header is also even. The
|
|
|
|
contents of individual chunks will be described in the following sections.
|
|
|
|
|
2012-06-22 01:03:20 +02:00
|
|
|
Simple file format (lossy)
|
|
|
|
--------------------------
|
|
|
|
|
|
|
|
This layout SHOULD be used if the image requires _lossy_ encoding and does not
|
|
|
|
require transparency or other advanced features provided by the extended format.
|
|
|
|
Files with this layout are smaller and supported by older software.
|
|
|
|
|
2012-07-18 21:16:51 +02:00
|
|
|
Simple WebP (lossy) file format:
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-02-08 00:06:32 +01:00
|
|
|
0 1 2 3
|
|
|
|
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
| WebP file header (12 bytes) |
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
2012-06-22 01:03:20 +02:00
|
|
|
| VP8 chunk |
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
|
|
|
|
VP8 chunk:
|
|
|
|
|
|
|
|
0 1 2 3
|
|
|
|
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
2012-02-08 00:06:32 +01:00
|
|
|
| ChunkHeader('VP8 ') |
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
| VP8 data |
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-02-08 00:06:32 +01:00
|
|
|
VP8 data: _Chunk Size_ bytes
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-02-08 00:06:32 +01:00
|
|
|
: VP8 bitstream data.
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-06-22 01:03:20 +02:00
|
|
|
The VP8 bitstream format specification can be found at [VP8 Data Format and
|
|
|
|
Decoding Guide][vp8spec]. Note that the VP8 frame header contains the VP8 frame
|
|
|
|
width and height. That is assumed to be the width and height of the canvas.
|
2011-10-04 17:53:54 +02:00
|
|
|
|
2012-02-08 00:06:32 +01:00
|
|
|
The VP8 specification describes how to decode the image into Y'CbCr
|
|
|
|
format. To convert to RGB, Rec. 601 SHOULD be used.
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-06-22 01:03:20 +02:00
|
|
|
Simple file format (lossless)
|
|
|
|
-----------------------------
|
|
|
|
|
|
|
|
**Note:** Older readers may not support files using the lossless format.
|
|
|
|
|
|
|
|
This layout SHOULD be used if the image requires _lossless_ encoding (with an
|
|
|
|
optional transparency channel) and does not require advanced features provided
|
|
|
|
by the extended format.
|
|
|
|
|
2012-07-18 21:16:51 +02:00
|
|
|
Simple WebP (lossless) file format:
|
2012-06-22 01:03:20 +02:00
|
|
|
|
|
|
|
0 1 2 3
|
|
|
|
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
| WebP file header (12 bytes) |
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
| VP8L chunk |
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
|
|
|
|
VP8L chunk:
|
|
|
|
|
|
|
|
0 1 2 3
|
|
|
|
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
| ChunkHeader('VP8L') |
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
| VP8L data |
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
|
|
|
|
VP8L data: _Chunk Size_ bytes
|
|
|
|
|
|
|
|
: VP8L bitstream data.
|
|
|
|
|
|
|
|
The current specification of the VP8L bitstream can be found at
|
|
|
|
[WebP Lossless Bitstream Format][webpllspec]. Note that the VP8L header
|
|
|
|
contains the VP8L image width and height. That is assumed to be the width
|
|
|
|
and height of the canvas.
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-02-08 00:06:32 +01:00
|
|
|
Extended file format
|
|
|
|
--------------------
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-02-08 00:06:32 +01:00
|
|
|
**Note:** Older readers may not support files using the extended format.
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-02-08 00:06:32 +01:00
|
|
|
An extended format file consists of:
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-02-08 00:06:32 +01:00
|
|
|
* A 'VP8X' chunk with information about features used in the file.
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2013-03-14 02:16:30 +01:00
|
|
|
* An optional 'ICCP' chunk with color profile.
|
2012-10-30 23:58:54 +01:00
|
|
|
|
2013-03-14 02:16:30 +01:00
|
|
|
* An optional 'ANIM' chunk with animation control data.
|
2012-11-02 23:59:39 +01:00
|
|
|
|
|
|
|
* Image data.
|
2012-10-31 00:06:36 +01:00
|
|
|
|
2013-03-14 02:16:30 +01:00
|
|
|
* An optional 'EXIF' chunk with EXIF metadata.
|
2012-10-31 00:06:36 +01:00
|
|
|
|
2013-03-14 02:16:30 +01:00
|
|
|
* An optional 'XMP ' chunk with XMP metadata.
|
2012-10-31 00:06:36 +01:00
|
|
|
|
2012-11-15 20:01:41 +01:00
|
|
|
* An optional list of [unknown chunks](#unknown-chunks). _\[status: experimental\]_
|
2012-11-12 20:34:08 +01:00
|
|
|
|
2012-11-02 23:59:39 +01:00
|
|
|
For a _still image_, the _image data_ consists of a single frame, whereas for
|
|
|
|
an _animated image_, it consists of multiple frames. More details about frames
|
|
|
|
can be found in the [Animation](#animation) section.
|
2012-06-22 01:03:20 +02:00
|
|
|
|
2012-11-02 23:59:39 +01:00
|
|
|
Moreover, each frame can be fragmented or non-fragmented, as will be described
|
|
|
|
in the [Extended WebP file header](#extended_header) section. More details about
|
|
|
|
fragments can be found in the [Fragments](#fragments) section.
|
2012-10-31 00:00:45 +01:00
|
|
|
|
2012-06-22 01:03:20 +02:00
|
|
|
All chunks SHOULD be placed in the same order as listed above. If a chunk
|
|
|
|
appears in the wrong place, the file is invalid, but readers MAY parse the
|
2011-10-05 00:11:43 +02:00
|
|
|
file, ignoring the chunks that come too late.
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-02-08 00:06:32 +01:00
|
|
|
**Rationale:** Setting the order of chunks should allow quicker file
|
2012-07-13 21:16:16 +02:00
|
|
|
parsing. For example, if an 'ALPH' chunk does not appear in its required
|
|
|
|
position, a decoder can choose to stop searching for it. The rule of
|
2011-10-05 00:11:43 +02:00
|
|
|
ignoring late chunks should make programs that need to do a full search
|
|
|
|
give the same results as the ones stopping early.
|
2011-10-04 17:53:54 +02:00
|
|
|
|
2012-02-08 00:06:32 +01:00
|
|
|
Extended WebP file header:
|
2012-10-31 00:06:36 +01:00
|
|
|
{:#extended_header}
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-02-08 00:06:32 +01:00
|
|
|
0 1 2 3
|
|
|
|
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
| WebP file header (12 bytes) |
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
| ChunkHeader('VP8X') |
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
2012-11-02 23:59:39 +01:00
|
|
|
|Rsv|I|L|E|X|A|F| Reserved |
|
2012-02-08 00:06:32 +01:00
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
2012-07-03 14:42:13 +02:00
|
|
|
| Canvas Width Minus One | ...
|
2012-02-08 00:06:32 +01:00
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
2012-07-03 14:42:13 +02:00
|
|
|
... Canvas Height Minus One |
|
2012-06-22 01:03:20 +02:00
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-11-02 23:27:37 +01:00
|
|
|
Reserved (Rsv): 2 bits
|
2011-10-04 20:02:15 +02:00
|
|
|
|
2012-07-13 21:16:16 +02:00
|
|
|
: SHOULD be `0`.
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2013-03-14 02:16:30 +01:00
|
|
|
ICC profile (I): 1 bit
|
2012-10-31 00:00:45 +01:00
|
|
|
|
2012-11-02 23:27:37 +01:00
|
|
|
: Set if the file contains an ICC profile.
|
2012-10-31 00:00:45 +01:00
|
|
|
|
2012-05-24 21:33:48 +02:00
|
|
|
Alpha (L): 1 bit
|
2012-05-23 11:31:25 +02:00
|
|
|
|
2012-10-31 00:06:36 +01:00
|
|
|
: Set if any of the frames of the image contain transparency information
|
2012-06-29 13:46:08 +02:00
|
|
|
("alpha").
|
2012-05-23 11:31:25 +02:00
|
|
|
|
2013-03-14 02:16:30 +01:00
|
|
|
EXIF metadata (E): 1 bit
|
2012-10-30 23:58:54 +01:00
|
|
|
|
2012-11-02 23:27:37 +01:00
|
|
|
: Set if the file contains EXIF metadata.
|
2012-10-30 23:58:54 +01:00
|
|
|
|
2013-03-14 02:16:30 +01:00
|
|
|
XMP metadata (X): 1 bit
|
2012-11-02 23:27:37 +01:00
|
|
|
|
|
|
|
: Set if the file contains XMP metadata.
|
|
|
|
|
2013-03-14 02:16:30 +01:00
|
|
|
Animation (A): 1 bit
|
2012-07-13 21:16:16 +02:00
|
|
|
|
2012-11-02 23:59:39 +01:00
|
|
|
: Set if this is an animated image. Data in 'ANIM' and 'ANMF' chunks should be
|
|
|
|
used to control the animation.
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-11-15 20:01:41 +01:00
|
|
|
Image Fragmentation (F): 1 bit _\[status: experimental\]_
|
2012-10-31 00:06:36 +01:00
|
|
|
|
2012-11-02 23:59:39 +01:00
|
|
|
: Set if any of the frames in the image are represented by fragments.
|
2012-10-31 00:06:36 +01:00
|
|
|
|
2012-05-23 11:31:25 +02:00
|
|
|
Reserved: 24 bits
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-02-08 00:06:32 +01:00
|
|
|
: SHOULD be `0`.
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-07-03 14:42:13 +02:00
|
|
|
Canvas Width Minus One: 24 bits
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-06-22 01:03:20 +02:00
|
|
|
: _1-based_ width of the canvas in pixels.
|
2012-07-03 14:42:13 +02:00
|
|
|
The actual canvas width is '1 + Canvas Width Minus One'
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-07-03 14:42:13 +02:00
|
|
|
Canvas Height Minus One: 24 bits
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-06-22 01:03:20 +02:00
|
|
|
: _1-based_ height of the canvas in pixels.
|
2012-07-03 14:42:13 +02:00
|
|
|
The actual canvas height is '1 + Canvas Height Minus One'
|
2011-10-04 20:02:15 +02:00
|
|
|
|
2012-07-03 14:42:13 +02:00
|
|
|
The product of _Canvas Width_ and _Canvas Height_ MUST be at most `2^32 - 1`.
|
2012-06-22 01:03:20 +02:00
|
|
|
|
|
|
|
Future specifications MAY add more fields.
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-02-08 00:06:32 +01:00
|
|
|
### Chunks
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2013-03-14 02:16:30 +01:00
|
|
|
#### Animation
|
2012-11-02 23:59:39 +01:00
|
|
|
|
|
|
|
An animation is controlled by ANIM and ANMF chunks.
|
|
|
|
|
|
|
|
ANIM Chunk:
|
2013-03-27 01:22:18 +01:00
|
|
|
{:#anim_chunk}
|
2012-11-02 23:59:39 +01:00
|
|
|
|
|
|
|
For an animated image, this chunk contains the _global parameters_ of the
|
|
|
|
animation.
|
|
|
|
|
|
|
|
0 1 2 3
|
|
|
|
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
| ChunkHeader('ANIM') |
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
| Background Color |
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
| Loop Count |
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
|
|
|
|
Background Color: 32 bits (_uint32_)
|
|
|
|
|
2013-03-27 01:22:18 +01:00
|
|
|
: The default background color of the canvas in \[Blue, Green, Red, Alpha\]
|
2013-06-26 19:36:55 +02:00
|
|
|
byte order. This color MAY be used to fill the unused space on the canvas around
|
|
|
|
the frames, as well as the transparent pixels of the first frame. Background
|
|
|
|
color is also used when disposal method is `1`.
|
2013-03-27 01:22:18 +01:00
|
|
|
|
2013-06-26 19:36:55 +02:00
|
|
|
**Note**:
|
2013-06-21 02:38:08 +02:00
|
|
|
|
2013-06-26 19:36:55 +02:00
|
|
|
* Background color MAY contain a transparency value (alpha), even if the
|
|
|
|
_Alpha_ flag in [VP8X chunk](#extended_header) is unset.
|
2013-06-21 02:38:08 +02:00
|
|
|
|
2013-06-26 19:36:55 +02:00
|
|
|
* Viewer applications SHOULD treat the background color value as a hint, and
|
|
|
|
are not required to use it.
|
2012-11-02 23:59:39 +01:00
|
|
|
|
|
|
|
Loop Count: 16 bits (_uint16_)
|
|
|
|
|
|
|
|
: The number of times to loop the animation. `0` means infinitely.
|
|
|
|
|
|
|
|
This chunk MUST appear if the _Animation_ flag in the VP8X chunk is set.
|
|
|
|
If the _Animation_ flag is not set and this chunk is present, it
|
|
|
|
SHOULD be ignored.
|
|
|
|
|
|
|
|
|
|
|
|
ANMF chunk:
|
|
|
|
|
|
|
|
For animated images, this chunk contains information about a _single_ frame.
|
|
|
|
If the _Animation flag_ is not set, then this chunk SHOULD NOT be present.
|
|
|
|
|
|
|
|
0 1 2 3
|
|
|
|
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
| ChunkHeader('ANMF') |
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
| Frame X | ...
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
... Frame Y | Frame Width Minus One ...
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
... | Frame Height Minus One |
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
| Frame Duration | Reserved |D|
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
| Frame Data |
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
|
|
|
|
Frame X: 24 bits (_uint24_)
|
|
|
|
|
|
|
|
: The X coordinate of the upper left corner of the frame is `Frame X * 2`
|
|
|
|
|
|
|
|
Frame Y: 24 bits (_uint24_)
|
|
|
|
|
|
|
|
: The Y coordinate of the upper left corner of the frame is `Frame Y * 2`
|
|
|
|
|
|
|
|
Frame Width Minus One: 24 bits (_uint24_)
|
|
|
|
|
|
|
|
: The _1-based_ width of the frame.
|
|
|
|
The frame width is `1 + Frame Width Minus One`
|
|
|
|
|
|
|
|
Frame Height Minus One: 24 bits (_uint24_)
|
|
|
|
|
|
|
|
: The _1-based_ height of the frame.
|
|
|
|
The frame height is `1 + Frame Height Minus One`
|
|
|
|
|
|
|
|
Frame Duration: 24 bits (_uint24_)
|
|
|
|
|
|
|
|
: The time to wait before displaying the next frame, in 1 millisecond units.
|
|
|
|
In particular, frame duration of 0 is useful when one wants to update multiple
|
|
|
|
areas of the canvas at once during the animation.
|
|
|
|
|
|
|
|
Reserved: 7 bits
|
|
|
|
|
|
|
|
: SHOULD be 0.
|
|
|
|
|
|
|
|
Disposal method (D): 1 bit
|
|
|
|
|
2013-03-27 06:54:47 +01:00
|
|
|
: Indicates how _the current frame_ is to be treated after it has been displayed
|
|
|
|
(before rendering the next frame) on the canvas:
|
2012-11-02 23:59:39 +01:00
|
|
|
|
2013-03-27 06:54:47 +01:00
|
|
|
* `0`: Do not dispose. Leave the canvas as is.
|
2012-11-02 23:59:39 +01:00
|
|
|
|
2013-03-27 06:54:47 +01:00
|
|
|
* `1`: Dispose to background color. Fill the _rectangle_ on the canvas covered
|
|
|
|
by the _current frame_ with background color specified in the
|
|
|
|
[ANIM chunk](#anim_chunk).
|
|
|
|
|
|
|
|
After disposing the current frame, render the next frame on the canvas using
|
|
|
|
[alpha-blending](#alpha-blending). If the next frame does not have an alpha
|
|
|
|
channel, assume alpha value of 255, effectively replacing the rectangle.
|
|
|
|
|
|
|
|
**Notes**:
|
|
|
|
|
|
|
|
* The frame disposal only applies to the _frame rectangle_, that is, the
|
|
|
|
rectangle defined by _Frame X_, _Frame Y_, _frame width_ and _frame height_.
|
|
|
|
It may or may not cover the whole canvas.
|
|
|
|
|
|
|
|
{:#alpha-blending}
|
|
|
|
* **Alpha-blending**:
|
|
|
|
|
|
|
|
Given that each of the R, G, B and A channels is 8-bit, and the RGB
|
|
|
|
channels are _not premultiplied_ by alpha, the formula for blending
|
|
|
|
'dst' onto 'src' is:
|
|
|
|
|
|
|
|
~~~~~
|
|
|
|
blend.A = src.A + dst.A * (1 - src.A / 255)
|
|
|
|
if blend.A = 0 then
|
|
|
|
blend.RGB = 0
|
|
|
|
else
|
|
|
|
blend.RGB = (src.RGB * src.A +
|
|
|
|
dst.RGB * dst.A * (1 - src.A / 255)) / blend.A
|
|
|
|
~~~~~
|
|
|
|
|
|
|
|
* Alpha-blending SHOULD be done in linear color space, by taking into account
|
|
|
|
the [color profile](#color-profile) of the image. If the color profile is
|
|
|
|
not present, sRGB is to be assumed. (Note that sRGB also needs to be
|
|
|
|
linearized due to a gamma of ~2.2).
|
2012-11-02 23:59:39 +01:00
|
|
|
|
|
|
|
Frame Data: _Chunk Size_ - `16` bytes
|
|
|
|
|
|
|
|
: For a fragmented frame, it consists of multiple [fragment chunks](#fragments).
|
|
|
|
|
|
|
|
: For a non-fragmented frame, it consists of:
|
|
|
|
|
|
|
|
* An optional [alpha subchunk](#alpha) for the frame.
|
|
|
|
|
|
|
|
* A [bitstream subchunk](#bitstream-vp8vp8l) for the frame.
|
|
|
|
|
2012-11-12 20:34:08 +01:00
|
|
|
* An optional list of [unknown chunks](#unknown-chunks).
|
|
|
|
|
2013-03-27 01:25:27 +01:00
|
|
|
**Note**: The 'ANMF' payload, _Frame Data_ above, consists of individual
|
|
|
|
_padded_ chunks as described by the [RIFF file format](#riff-file-format).
|
|
|
|
|
2012-11-15 20:01:41 +01:00
|
|
|
#### Fragments _\[status: experimental\]_
|
2012-10-31 00:06:36 +01:00
|
|
|
|
|
|
|
For images that are represented by fragments, this chunk contains data for
|
|
|
|
a single fragment. If the _Image Fragmentation Flag_ is not set, then this chunk
|
|
|
|
SHOULD NOT be present.
|
|
|
|
|
|
|
|
0 1 2 3
|
|
|
|
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
| ChunkHeader('FRGM') |
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
| Fragment X | ...
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
... Fragment Y | Fragment Data |
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
|
|
|
|
Fragment X: 24 bits (_uint24_)
|
|
|
|
|
|
|
|
: The X coordinate of the upper left corner of the fragment is `Fragment X * 2`
|
|
|
|
|
|
|
|
Fragment Y: 24 bits (_uint24_)
|
|
|
|
|
|
|
|
: The Y coordinate of the upper left corner of the fragment is `Fragment Y * 2`
|
|
|
|
|
|
|
|
Fragment Data: _Chunk Size_ - `6` bytes
|
|
|
|
|
|
|
|
: It contains:
|
|
|
|
|
|
|
|
* An optional [alpha subchunk](#alpha) for the fragment.
|
|
|
|
* The [bitstream subchunk](#bitstream-vp8vp8l) for the fragment.
|
2012-11-12 20:34:08 +01:00
|
|
|
* An optional list of [unknown chunks](#unknown-chunks).
|
2012-10-31 00:06:36 +01:00
|
|
|
|
|
|
|
Note: The width and height of the fragment is obtained from the bitstream
|
|
|
|
subchunk.
|
|
|
|
|
2012-11-02 23:59:39 +01:00
|
|
|
The fragments of a frame SHOULD have the following properties:
|
2012-10-31 00:06:36 +01:00
|
|
|
|
2012-11-02 23:59:39 +01:00
|
|
|
* They collectively cover the whole frame.
|
2012-10-31 00:06:36 +01:00
|
|
|
|
2012-11-02 23:59:39 +01:00
|
|
|
* No pair of fragments have any overlapping region on the frame.
|
2012-10-31 00:06:36 +01:00
|
|
|
|
|
|
|
* No portion of any fragment should be located outside of the canvas.
|
|
|
|
|
2012-02-08 00:06:32 +01:00
|
|
|
#### Alpha
|
|
|
|
|
|
|
|
0 1 2 3
|
|
|
|
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
| ChunkHeader('ALPH') |
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
2012-05-22 11:36:22 +02:00
|
|
|
|Rsv| P | F | C | Alpha Bitstream... |
|
2012-02-08 00:06:32 +01:00
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
|
2012-11-02 23:27:37 +01:00
|
|
|
Reserved (Rsv): 2 bits
|
2012-05-22 11:36:22 +02:00
|
|
|
|
2012-11-02 23:27:37 +01:00
|
|
|
: SHOULD be `0`.
|
2012-05-22 11:36:22 +02:00
|
|
|
|
2012-11-02 23:27:37 +01:00
|
|
|
Pre-processing (P): 2 bits
|
|
|
|
|
|
|
|
: These INFORMATIVE bits are used to signal the pre-processing that has
|
|
|
|
been performed during compression. The decoder can use this information to
|
|
|
|
e.g. dither the values or smooth the gradients prior to display.
|
|
|
|
|
|
|
|
* `0`: no pre-processing
|
|
|
|
* `1`: level reduction
|
2012-05-22 11:36:22 +02:00
|
|
|
|
|
|
|
Filtering method (F): 2 bits
|
2011-10-04 17:53:54 +02:00
|
|
|
|
2012-02-08 00:06:32 +01:00
|
|
|
: The filtering method used:
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-02-08 00:06:32 +01:00
|
|
|
* `0`: None.
|
|
|
|
* `1`: Horizontal filter.
|
|
|
|
* `2`: Vertical filter.
|
|
|
|
* `3`: Gradient filter.
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-07-11 04:50:30 +02:00
|
|
|
For each pixel, filtering is performed using the following calculations.
|
|
|
|
Assume the alpha values surrounding the current `X` position are labeled as:
|
|
|
|
|
|
|
|
C | B |
|
|
|
|
---+---+
|
|
|
|
A | X |
|
|
|
|
|
|
|
|
We seek to compute the alpha value at position `X`. First, a prediction is
|
|
|
|
made depending on the filtering method:
|
|
|
|
|
|
|
|
* Method `0`: predictor = 0
|
|
|
|
* Method `1`: predictor = A
|
|
|
|
* Method `2`: predictor = B
|
|
|
|
* Method `3`: predictor = clip(A + B - C)
|
|
|
|
|
|
|
|
where `clip(v)` is equal to:
|
|
|
|
|
|
|
|
* 0 if v < 0
|
|
|
|
* 255 if v > 255
|
|
|
|
* v otherwise
|
|
|
|
|
|
|
|
The final value is derived by adding the decompressed value `X` to the
|
2012-10-31 00:06:36 +01:00
|
|
|
predictor and using modulo-256 arithmetic to wrap the \[256-511\] range
|
|
|
|
into the \[0-255\] one:
|
2012-07-11 04:50:30 +02:00
|
|
|
|
|
|
|
`alpha = (predictor + X) % 256`
|
|
|
|
|
|
|
|
There are special cases for left-most and top-most pixel positions:
|
|
|
|
|
|
|
|
* Top-left value at location (0,0) uses 0 as predictor value. Otherwise,
|
|
|
|
* For horizontal or gradient filtering methods, the left-most pixels at
|
|
|
|
location (0, y) are predicted using the location (0, y-1) just above.
|
|
|
|
* For vertical or gradient filtering methods, the top-most pixels at
|
|
|
|
location (x, 0) are predicted using the location (x-1, 0) on the left.
|
|
|
|
|
|
|
|
|
2012-05-22 11:36:22 +02:00
|
|
|
Decoders are not required to use this information in any specified way.
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-11-02 23:27:37 +01:00
|
|
|
Compression method (C): 2 bits
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-11-02 23:27:37 +01:00
|
|
|
: The compression method used:
|
|
|
|
|
|
|
|
* `0`: No compression.
|
|
|
|
* `1`: Compressed using the WebP lossless format.
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-05-22 11:36:22 +02:00
|
|
|
Alpha bitstream: _Chunk Size_ - `1` bytes
|
2011-11-22 10:10:41 +01:00
|
|
|
|
2012-02-08 00:06:32 +01:00
|
|
|
: Encoded alpha bitstream.
|
2011-11-22 10:10:41 +01:00
|
|
|
|
2012-11-02 23:59:39 +01:00
|
|
|
This optional chunk contains encoded alpha data for this frame/fragment. A
|
|
|
|
frame/fragment containing a 'VP8L' chunk SHOULD NOT contain this chunk.
|
2012-07-18 21:16:51 +02:00
|
|
|
|
2012-11-02 23:59:39 +01:00
|
|
|
**Rationale**: The transparency information is already part of the 'VP8L'
|
|
|
|
chunk.
|
2011-11-22 10:10:41 +01:00
|
|
|
|
2012-07-13 04:19:39 +02:00
|
|
|
The alpha channel data is stored as uncompressed raw data (when
|
2012-05-22 11:36:22 +02:00
|
|
|
compression method is '0') or compressed using the lossless format
|
|
|
|
(when the compression method is '1').
|
2011-11-22 10:10:41 +01:00
|
|
|
|
2012-06-22 01:03:20 +02:00
|
|
|
* Raw data: consists of a byte sequence of length width * height,
|
2012-07-13 04:19:39 +02:00
|
|
|
containing all the 8-bit transparency values in scan order.
|
2012-05-24 16:20:11 +02:00
|
|
|
|
2012-06-22 01:03:20 +02:00
|
|
|
* Lossless format compression: the byte sequence is a compressed
|
|
|
|
image-stream (as described in the [WebP Lossless Bitstream Format]
|
2012-07-13 04:19:39 +02:00
|
|
|
[webpllspec]) of implicit dimension width x height. That is, this
|
|
|
|
image-stream does NOT contain any headers describing the image dimension.
|
2012-05-24 16:20:11 +02:00
|
|
|
|
|
|
|
**Rationale**: the dimension is already known from other sources,
|
|
|
|
so storing it again would be redundant and error-prone.
|
|
|
|
|
|
|
|
Once the image-stream is decoded into ARGB color values, following
|
|
|
|
the process described in the lossless format specification, the
|
|
|
|
transparency information must be extracted from the *green* channel
|
|
|
|
of the ARGB quadruplet.
|
|
|
|
|
|
|
|
**Rationale**: the green channel is allowed extra transformation
|
2012-07-13 04:19:39 +02:00
|
|
|
steps in the specification -- unlike the other channels -- that can
|
2012-05-24 16:20:11 +02:00
|
|
|
improve compression.
|
|
|
|
|
2012-06-22 01:03:20 +02:00
|
|
|
#### Bitstream (VP8/VP8L)
|
|
|
|
|
2012-11-02 23:59:39 +01:00
|
|
|
This chunk contains compressed bitstream data for a single frame/fragment.
|
2012-06-22 01:03:20 +02:00
|
|
|
|
|
|
|
A bitstream chunk may be either (i) a VP8 chunk, using "VP8 " (note the
|
2012-07-13 21:16:16 +02:00
|
|
|
significant fourth-character space) as its tag _or_ (ii) a VP8L chunk, using
|
2012-06-22 01:03:20 +02:00
|
|
|
"VP8L" as its tag.
|
|
|
|
|
2012-07-13 04:19:39 +02:00
|
|
|
The formats of VP8 and VP8L chunks are as described in sections
|
|
|
|
[Simple file format (lossy)](#simple-file-format-lossy)
|
|
|
|
and [Simple file format (lossless)](#simple-file-format-lossless) respectively.
|
2012-06-22 01:03:20 +02:00
|
|
|
|
2013-03-14 02:16:30 +01:00
|
|
|
#### Color profile
|
2012-10-30 23:58:54 +01:00
|
|
|
|
|
|
|
0 1 2 3
|
|
|
|
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
| ChunkHeader('ICCP') |
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
| Color Profile |
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
|
|
|
|
Color Profile: _Chunk Size_ bytes
|
|
|
|
|
|
|
|
: ICC profile.
|
|
|
|
|
2012-11-02 23:59:39 +01:00
|
|
|
This chunk MUST appear before the image data.
|
2012-10-30 23:58:54 +01:00
|
|
|
|
|
|
|
There SHOULD be at most one such chunk. If there are more such chunks, readers
|
|
|
|
MAY ignore all except the first one.
|
|
|
|
See the [ICC Specification][iccspec] for details.
|
|
|
|
|
|
|
|
If this chunk is not present, sRGB SHOULD be assumed.
|
|
|
|
|
2013-03-14 02:16:30 +01:00
|
|
|
#### Metadata
|
2012-10-31 00:00:45 +01:00
|
|
|
|
|
|
|
Metadata can be stored in 'EXIF' or 'XMP ' chunks.
|
|
|
|
|
|
|
|
There SHOULD be at most one chunk of each type ('EXIF' and 'XMP '). If there
|
|
|
|
are more such chunks, readers MAY ignore all except the first one. Also, a file
|
|
|
|
may possibly contain both 'EXIF' and 'XMP ' chunks.
|
|
|
|
|
|
|
|
The chunks are defined as follows:
|
|
|
|
|
|
|
|
EXIF chunk:
|
|
|
|
|
|
|
|
0 1 2 3
|
|
|
|
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
| ChunkHeader('EXIF') |
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
| EXIF Metadata |
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
|
|
|
|
EXIF Metadata: _Chunk Size_ bytes
|
|
|
|
|
|
|
|
: image metadata in EXIF format.
|
|
|
|
|
|
|
|
|
|
|
|
XMP chunk:
|
|
|
|
|
|
|
|
0 1 2 3
|
|
|
|
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
| ChunkHeader('XMP ') |
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
| XMP Metadata |
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
|
|
|
|
XMP Metadata: _Chunk Size_ bytes
|
|
|
|
|
|
|
|
: image metadata in XMP format.
|
|
|
|
|
|
|
|
Additional guidance about handling metadata can be found in the
|
|
|
|
Metadata Working Group's [Guidelines for Handling Metadata][metadata].
|
|
|
|
|
2012-11-15 20:01:41 +01:00
|
|
|
#### Unknown Chunks _\[status: experimental\]_
|
2012-02-08 00:06:32 +01:00
|
|
|
|
2012-11-12 20:34:08 +01:00
|
|
|
A RIFF chunk (described in [this](#terminology-amp-basics) section) whose _chunk
|
|
|
|
tag_ is different from any of the chunks described in this document, is
|
|
|
|
considered an _unknown chunk_.
|
|
|
|
|
|
|
|
**Rationale**: Allowing unknown chunks gives a provision for future extension
|
|
|
|
of the format, and also allows storage of any application-specific data.
|
|
|
|
|
|
|
|
A file MAY contain unknown chunks:
|
|
|
|
|
|
|
|
* At the end of the file as described in [Extended WebP file
|
|
|
|
header](#extended_header) section.
|
|
|
|
* At the end of FRGM and ANMF chunks as described in [Fragments](#fragments)
|
|
|
|
and [Animation](#animation) sections.
|
|
|
|
|
|
|
|
Readers SHOULD ignore these chunks. Writers SHOULD preserve them in their
|
2012-11-13 19:41:13 +01:00
|
|
|
original order (unless they specifically intend to modify these chunks).
|
2012-02-08 00:06:32 +01:00
|
|
|
|
2013-03-14 02:16:30 +01:00
|
|
|
### Assembling the Canvas from fragments/frames
|
2012-10-31 00:06:36 +01:00
|
|
|
|
2012-11-02 23:59:39 +01:00
|
|
|
Here we provide an overview of how a reader should assemble a canvas in case
|
|
|
|
of a fragmented-image and in case of an animated image. The notation
|
|
|
|
_VP8X.field_ means the field in the 'VP8X' chunk with the same description.
|
2012-10-31 00:06:36 +01:00
|
|
|
|
|
|
|
Displaying a _fragmented image_ canvas MUST be equivalent to the following
|
2013-03-14 02:16:30 +01:00
|
|
|
pseudocode: _\[status: experimental\]_
|
2012-10-31 00:06:36 +01:00
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
assert VP8X.flags.hasFragments
|
|
|
|
canvas ← new black image of size VP8X.canvasWidth x VP8X.canvasHeight.
|
|
|
|
frgm_params ← nil
|
|
|
|
for chunk in image_data:
|
|
|
|
assert chunk.tag is "FRGM"
|
|
|
|
frgm_params.fragmentX = Fragment X
|
|
|
|
frgm_params.fragmentY = Fragment Y
|
|
|
|
for subchunk in 'Fragment Data':
|
|
|
|
if subchunk.tag == "ALPH":
|
|
|
|
assert alpha subchunks not found in 'Fragment Data' earlier
|
|
|
|
frgm_params.alpha = alpha_data
|
|
|
|
else if subchunk.tag == "VP8 " OR subchunk.tag == "VP8L":
|
|
|
|
assert bitstream subchunks not found in 'Fragment Data' earlier
|
|
|
|
frgm_params.bitstream = bitstream_data
|
|
|
|
frgm_params.fragmentWidth = Width extracted from bitstream subchunk
|
|
|
|
frgm_params.fragmentHeight = Height extracted from bitstream subchunk
|
|
|
|
assert VP8X.canvasWidth >=
|
|
|
|
frgm_params.fragmentX + frgm_params.fragmentWidth
|
|
|
|
assert VP8X.canvasHeight >=
|
|
|
|
frgm_params.fragmentY + frgm_params.fragmentHeight
|
|
|
|
assert fragment has the properties mentioned in "Image Fragments" section.
|
|
|
|
render fragment with frame_params.alpha and frame_params.bitstream on canvas
|
|
|
|
with top-left corner in (frgm_params.fragmentX, frgm_params.fragmentY).
|
|
|
|
canvas contains the decoded canvas.
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2012-11-02 23:59:39 +01:00
|
|
|
Displaying an _animated image_ canvas MUST be equivalent to the following
|
|
|
|
pseudocode:
|
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
assert VP8X.flags.hasAnimation
|
|
|
|
canvas ← new image of size VP8X.canvasWidth x VP8X.canvasHeight with
|
|
|
|
background color ANIM.background_color.
|
|
|
|
loop_count ← ANIM.loopCount
|
|
|
|
dispose_method ← ANIM.disposeMethod
|
|
|
|
if loop_count == 0:
|
|
|
|
loop_count = ∞
|
|
|
|
frame_params ← nil
|
|
|
|
for loop = 0, ..., loop_count - 1
|
|
|
|
assert next chunk in image_data is ANMF
|
|
|
|
frame_params.frameX = Frame X
|
|
|
|
frame_params.frameY = Frame Y
|
|
|
|
frame_params.frameWidth = Frame Width Minus One + 1
|
|
|
|
frame_params.frameHeight = Frame Height Minus One + 1
|
|
|
|
frame_params.frameDuration = Frame Duration
|
|
|
|
assert VP8X.canvasWidth >= frame_params.frameX + frame_params.frameWidth
|
|
|
|
assert VP8X.canvasHeight >= frame_params.frameY + frame_params.frameHeight
|
|
|
|
if VP8X.flags.hasFragments and first subchunk in 'Frame Data' is FRGM
|
|
|
|
// Fragmented frame.
|
|
|
|
frame_params.{bitstream,alpha} = canvas decoded from subchunks in
|
|
|
|
'Frame Data' as per the pseudocode for
|
|
|
|
_fragmented image_ above.
|
|
|
|
else
|
|
|
|
// Non-fragmented frame.
|
|
|
|
for subchunk in 'Frame Data':
|
|
|
|
if subchunk.tag == "ALPH":
|
|
|
|
assert alpha subchunks not found in 'Frame Data' earlier
|
|
|
|
frame_params.alpha = alpha_data
|
|
|
|
else if subchunk.tag == "VP8 " OR subchunk.tag == "VP8L":
|
|
|
|
assert bitstream subchunks not found in 'Frame Data' earlier
|
|
|
|
frame_params.bitstream = bitstream_data
|
|
|
|
render frame with frame_params.alpha and frame_params.bitstream on canvas
|
|
|
|
with top-left corner in (frame_params.frameX, frame_params.frameY), using
|
|
|
|
dispose method dispose_method.
|
|
|
|
Show the contents of the image for frame_params.frameDuration * 1ms.
|
|
|
|
canvas contains the decoded canvas.
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2012-02-08 00:06:32 +01:00
|
|
|
Example file layouts
|
|
|
|
--------------------
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-07-13 21:16:16 +02:00
|
|
|
A lossy encoded image with alpha may look as follows:
|
2012-02-08 00:06:32 +01:00
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
RIFF/WEBP
|
|
|
|
+- VP8X (descriptions of features used)
|
2012-07-13 21:16:16 +02:00
|
|
|
+- ALPH (alpha bitstream)
|
|
|
|
+- VP8 (bitstream)
|
2012-06-22 01:03:20 +02:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2012-07-13 21:16:16 +02:00
|
|
|
A losslessly encoded image may look as follows:
|
2012-06-22 01:03:20 +02:00
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
RIFF/WEBP
|
|
|
|
+- VP8X (descriptions of features used)
|
|
|
|
+- XYZW (unknown chunk)
|
|
|
|
+- VP8L (lossless bitstream)
|
2012-02-08 00:06:32 +01:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2011-10-04 19:11:15 +02:00
|
|
|
|
2012-10-31 00:00:45 +01:00
|
|
|
A lossless image with ICC profile and XMP metadata may
|
|
|
|
look as follows:
|
2012-10-30 23:58:54 +01:00
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
RIFF/WEBP
|
|
|
|
+- VP8X (descriptions of features used)
|
|
|
|
+- ICCP (color profile)
|
|
|
|
+- VP8L (lossless bitstream)
|
2012-10-31 00:00:45 +01:00
|
|
|
+- XMP (metadata)
|
2012-10-30 23:58:54 +01:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2012-10-31 00:06:36 +01:00
|
|
|
A fragmented image may look as follows:
|
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
RIFF/WEBP
|
|
|
|
+- VP8X (descriptions of features used)
|
|
|
|
+- FRGM (fragment1 parameters + data)
|
|
|
|
+- FRGM (fragment2 parameters + data)
|
|
|
|
+- FRGM (fragment3 parameters + data)
|
|
|
|
+- FRGM (fragment4 parameters + data)
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2012-11-02 23:59:39 +01:00
|
|
|
An animated image with EXIF metadata may look as follows:
|
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
RIFF/WEBP
|
|
|
|
+- VP8X (descriptions of features used)
|
|
|
|
+- ANIM (global animation parameters)
|
|
|
|
+- ANMF (frame1 parameters + data)
|
|
|
|
+- ANMF (frame2 parameters + data)
|
|
|
|
+- ANMF (frame3 parameters + data)
|
|
|
|
+- ANMF (frame4 parameters + data)
|
|
|
|
+- EXIF (metadata)
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2012-01-17 21:52:27 +01:00
|
|
|
[vp8spec]: http://tools.ietf.org/html/rfc6386
|
2012-06-22 01:03:20 +02:00
|
|
|
[webpllspec]: https://gerrit.chromium.org/gerrit/gitweb?p=webm/libwebp.git;a=blob;f=doc/webp-lossless-bitstream-spec.txt;hb=master
|
2012-10-30 23:58:54 +01:00
|
|
|
[iccspec]: http://www.color.org/icc_specs2.xalter
|
2012-10-31 00:00:45 +01:00
|
|
|
[metadata]: http://www.metadataworkinggroup.org/pdf/mwg_guidance.pdf
|
2012-02-08 00:06:32 +01:00
|
|
|
[rfc 2119]: http://tools.ietf.org/html/rfc2119
|