How to convert webp files to jpg, to png or to other image formats
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
-
Download dwebp decoder tool from https://developers.google.com/speed/webp/download.
-
Unzip the package and inside the bin folder you will find the executables. Run the executable file and follows the steps.
-
Run:
dwebp.exe file.webp -o file.jpg dwebp.exe file.webp -o file.png
macOS
- Install webp using Homebrew:
brew install webp dwebp file.webp -o file.jpg dwebp file.webp -o file.png
Leave a comment