Forrest logo
back to context overview

dwebp

List of commands for dwebp:

  • dwebp:tldr:07700 dwebp: Convert a `webp` file and flip the output.
    $ dwebp ${path-to-input-webp} -o ${path-to-output-png} -flip
    try on your machine
    explain this command
  • dwebp:tldr:17d5f dwebp: Convert a `webp` file, using multi-threading if possible.
    $ dwebp ${path-to-input-webp} -o ${path-to-output-png} -mt
    try on your machine
    explain this command
  • dwebp:tldr:3773a dwebp: Convert a `webp` file and don't use in-loop filtering to speed up the decoding process.
    $ dwebp ${path-to-input-webp} -o ${path-to-output-png} -nofilter
    try on your machine
    explain this command
  • dwebp:tldr:37931 dwebp: Convert a `webp` file, but also crop and scale at the same time.
    $ dwebp ${input-webp} -o ${output-png} -crop ${x_pos} ${y_pos} ${width} ${height} -scale ${width} ${height}
    try on your machine
    explain this command
  • dwebp:tldr:4a6a4 dwebp: Convert a `webp` file into a `png` file.
    $ dwebp ${path-to-input-webp} -o ${path-to-output-png}
    try on your machine
    explain this command
  • dwebp:tldr:bba0a dwebp: Convert a `webp` file into a specific filetype.
    $ dwebp ${path-to-input-webp} -bmp|-tiff|-pam|-ppm|-pgm|-yuv -o ${path-to-output}
    try on your machine
    explain this command
back to context overview