image - Batch process .png to .webp -
image - Batch process .png to .webp -
i have around 100 .png images, , of them have converted .webp (google's image format). using google's cli tool. thought how batch process them.
you can help of simple bash
script.
navigate directory images reside , execute this:
$ file in * > > cwebp -q 80 "$file" -o "$file.webp" > done
you can alter output file name, want. should end .webp
extension.
image bash png webp
Comments
Post a Comment