How to convert webp files to jpg, to png or to other image formats

less than 1 minute read

Linux

Debian-based (Debian, Ubuntu, Mint, etc…)

sudo apt-get install webp

dwebp file.webp -o file.jpg
dwebp file.webp -o file.png

RPM-based (Red Hat Linux, CentOS, Fedora, openSuse, Mandrake Linux)

sudo yum install libwebp libwebp-tools

dwebp file.webp -o file.jpg
dwebp file.webp -o file.png

Windows

  1. Download dwebp decoder tool from https://developers.google.com/speed/webp/download.

  2. Unzip the package and inside the bin folder you will find the executables. Run the executable file and follows the steps.

  3. Run:

    dwebp.exe file.webp -o file.jpg
    dwebp.exe file.webp -o file.png
    

macOS

  1. Install webp using Homebrew:
     brew install webp
    
     dwebp file.webp -o file.jpg
     dwebp file.webp -o file.png
    

Categories:

Updated:

Leave a comment