The convert program is a member of the ImageMagick(1) suite of tools. Use it to convert between image formats as well as resize an image, blur, crop, despeckle, dither, draw on, flip, join, re-sample, and much more.Ubuntu Manpage: convert
Instalar ImageMagick:
sudo apt-get install imagemagick
Conversão para WebP:
convert image.jpg -quality 80 image.webp
Conversão para MozJPEG:
convert image.jpg PNM:- | cjpeg -quality 80 -outfile image-mozpeg.jpg