2011-03-02 01:01:47 +01:00
|
|
|
.\" Hey, EMACS: -*- nroff -*-
|
2012-08-03 00:10:31 +02:00
|
|
|
.TH DWEBP 1 "August 2, 2012"
|
2011-03-02 01:01:47 +01:00
|
|
|
.SH NAME
|
2011-04-19 03:50:34 +02:00
|
|
|
dwebp \- decompress a WebP file to an image file
|
2011-03-02 01:01:47 +01:00
|
|
|
.SH SYNOPSIS
|
|
|
|
.B dwebp
|
|
|
|
.RI [ options ] " input_file.webp
|
|
|
|
.br
|
|
|
|
.SH DESCRIPTION
|
|
|
|
This manual page documents the
|
|
|
|
.B dwebp
|
|
|
|
command.
|
|
|
|
.PP
|
2012-07-21 01:06:06 +02:00
|
|
|
\fBdwebp\fP decompresses WebP files into PNG, PAM, PPM or PGM images.
|
2011-03-02 01:01:47 +01:00
|
|
|
.SH OPTIONS
|
|
|
|
The basic options are:
|
|
|
|
.TP
|
|
|
|
.B \-h
|
|
|
|
Print usage summary.
|
|
|
|
.TP
|
2011-03-28 20:12:39 +02:00
|
|
|
.B \-version
|
|
|
|
Print the version number (as major.minor.revision) and exit.
|
|
|
|
.TP
|
2011-03-02 01:01:47 +01:00
|
|
|
.B \-o string
|
|
|
|
Specify the name of the output file (as PNG format by default).
|
|
|
|
.TP
|
2012-07-21 01:06:06 +02:00
|
|
|
.B \-pam
|
|
|
|
Change the output format to PAM (retains alpha).
|
|
|
|
.TP
|
2011-03-02 01:01:47 +01:00
|
|
|
.B \-ppm
|
2012-07-21 01:06:06 +02:00
|
|
|
Change the output format to PPM (discards alpha).
|
2011-03-02 01:01:47 +01:00
|
|
|
.TP
|
|
|
|
.B \-pgm
|
|
|
|
Change the output format to PGM. The output consist of luma/chroma
|
|
|
|
samples instead of RGB, using the ICM4 layout. This option is mainly
|
|
|
|
for verification and debugging purpose.
|
|
|
|
.TP
|
2011-06-20 09:45:15 +02:00
|
|
|
.B \-nofancy
|
|
|
|
Don't use the fancy upscaler for YUV420. This may lead to jaggy
|
|
|
|
edges (especially the red ones), but should be faster.
|
|
|
|
.TP
|
|
|
|
.B \-nofilter
|
|
|
|
Don't use the in-loop filtering process even if it is required by
|
|
|
|
the bitstream. This may produce visible blocks on the non-compliant output,
|
|
|
|
but will make the decoding faster.
|
|
|
|
.TP
|
2011-07-22 22:09:10 +02:00
|
|
|
.B \-mt
|
|
|
|
Use multi-threading for decoding, if possible.
|
|
|
|
.TP
|
2011-06-20 09:45:15 +02:00
|
|
|
.B \-crop x_position y_position width height
|
|
|
|
Crop the decoded picture to a rectangle with top-left corner at coordinates
|
|
|
|
(\fBx_position\fP, \fBy_position\fP) and size \fBwidth\fP x \fBheight\fP.
|
|
|
|
This cropping area must be fully contained within the source rectangle.
|
|
|
|
The top-left corner will be snapped to even coordinates if needed.
|
|
|
|
This option is meant to reduce the memory needed for cropping large images.
|
|
|
|
Note: the cropping is applied \fIbefore\fP any scaling.
|
|
|
|
.TP
|
|
|
|
.B \-scale width height
|
2011-11-04 00:20:20 +01:00
|
|
|
Rescale the decoded picture to dimension \fBwidth\fP x \fBheight\fP. This
|
|
|
|
option is mostly intended to reducing the memory needed to decode large images,
|
|
|
|
when only a small version is needed (thumbnail, preview, etc.). Note: scaling
|
|
|
|
is applied \fIafter\fP cropping.
|
2011-06-20 09:45:15 +02:00
|
|
|
.TP
|
2011-03-02 01:01:47 +01:00
|
|
|
.B \-v
|
|
|
|
Print extra information (decoding time in particular).
|
2011-06-11 00:10:18 +02:00
|
|
|
.TP
|
|
|
|
.B \-noasm
|
|
|
|
Disable all assembly optimizations.
|
2011-03-02 01:01:47 +01:00
|
|
|
|
2012-01-25 02:39:05 +01:00
|
|
|
.SH BUGS
|
|
|
|
Please report all bugs to our issue tracker:
|
|
|
|
http://code.google.com/p/webp/issues
|
|
|
|
.br
|
|
|
|
Patches welcome! See this page to get started:
|
|
|
|
http://www.webmproject.org/code/contribute/submitting-patches/
|
|
|
|
|
2011-11-04 00:10:27 +01:00
|
|
|
.SH EXAMPLES
|
|
|
|
dwebp picture.webp \-o output.png
|
2011-03-02 01:01:47 +01:00
|
|
|
.br
|
2011-11-04 00:10:27 +01:00
|
|
|
dwebp picture.webp \-ppm \-o output.ppm
|
2011-03-02 01:01:47 +01:00
|
|
|
|
2011-11-04 00:10:27 +01:00
|
|
|
.SH AUTHORS
|
2011-03-02 01:01:47 +01:00
|
|
|
\fBdwebp\fP was written by the WebP team.
|
|
|
|
.br
|
|
|
|
The latest source tree is available at http://www.webmproject.org/code
|
|
|
|
.PP
|
|
|
|
This manual page was written by Pascal Massimino <pascal.massimino@gmail.com>,
|
|
|
|
for the Debian project (and may be used by others).
|
2012-01-25 02:39:05 +01:00
|
|
|
|
|
|
|
.SH SEE ALSO
|
2012-11-16 19:25:16 +01:00
|
|
|
.BR cwebp (1),
|
|
|
|
.BR webpmux (1),
|
|
|
|
.BR gif2webp (1).
|
2012-01-25 02:39:05 +01:00
|
|
|
.br
|
2012-07-21 01:19:12 +02:00
|
|
|
Please refer to http://developers.google.com/speed/webp/ for additional
|
|
|
|
information.
|
2012-08-03 00:10:31 +02:00
|
|
|
.SS Output file format details
|
|
|
|
PAM: http://netpbm.sourceforge.net/doc/pam.html
|
|
|
|
.br
|
|
|
|
PGM: http://netpbm.sourceforge.net/doc/pgm.html
|
|
|
|
.br
|
|
|
|
PPM: http://netpbm.sourceforge.net/doc/ppm.html
|
|
|
|
.br
|
|
|
|
PNG: http://www.libpng.org/pub/png/png-sitemap.html#info
|