安装 webp-tools
1
2
3
4
5
6
7
8
#ubuntu
apt-get install webp
#centos
yum -y install libwebp-devel libwebp-tools
#macOS
brew install webp
会生成几个工具:
- cwebp → WebP encoder tool
- dwebp → WebP decoder tool
- vwebp → WebP file viewer
- webpmux → WebP muxing tool
- gif2webp → Tool for converting GIF images to WebP
convert from webp to png
dwebp可以将webp图片转换成无损的png图片格式,有了png,则可以使用imagemagic之类的工具再转换成jpg.
1
dwebp mycat.webp -o mycat.png
Convert from JPG to WebP
cwebp可以将jpg转换成webp,将png转换成webp
1
cwebp some.jpg -o target.webp