How do I convert webp files to JPG format?
Use ImageMagick v7:
magick input.webp output.jpg
Or ImageMagick v6:
convert input.webp output.jpg
If you have lots to do, use mogrify
instead. So, say you want to convert all the WEBP images in the current directory to JPEG:
magick mogrify -format JPEG *.webp
And if you want the converted files in a directory called OUTPUT
, use:
mkdir OUTPUT
magick mogrify -format JPEG -path OUTPUT *.webp
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With