kyu08 / blog

A blog powered by hugo

Home Page:https://blog.kyu08.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

画像を圧縮する

kyu08 opened this issue · comments

commented

brew install webp
cwebp image.png -o image.webp
https://cruw.co.jp/blog/webp-conversion/

for file in *.{jpg,jpeg,png}; do cwebp "$file" -o "${file%.*}.webp"; done