How to convert .webp images to .png on Linux
Tested on Linux Ubuntu 20.04
This question is the top hit for the Google search of “linux convert .webp image to png”. Therefore, for anyone stumbling here and just wanting that simple answer, here it is:
# 1. Install the `webp` tool
sudo apt update
sudo apt install webp
# 2. Use it: convert in.webp to out.png
dwebp in.webp -o out.png
Done! You now have out.png
.
References
- I learned about
dwebp
from the question itself