Forrest logo
back to context overview

cwebp

List of commands for cwebp:

  • cwebp:tldr:b161e cwebp: Compress a WebP file and drop alpha channel information.
    $ cwebp ${path-to-image_file} -o ${path-to-output-webp} -noalpha
    try on your machine
    explain this command
  • cwebp:tldr:b7158 cwebp: Compress a WebP file with the best [q]uality and largest file size.
    $ cwebp ${path-to-image_file} -o ${path-to-output-webp} -q ${100}
    try on your machine
    explain this command
  • cwebp:tldr:bba8d cwebp: Compress a WebP file with default settings (q = 75) to the [o]utput file.
    $ cwebp ${path-to-image_file} -o ${path-to-output-webp}
    try on your machine
    explain this command
  • cwebp:tldr:bf062 cwebp: Compress a WebP file and apply resize to image.
    $ cwebp ${path-to-image_file} -o ${path-to-output-webp} -resize ${width} ${height}
    try on your machine
    explain this command
back to context overview