Linux – Convert a bunch of BMP files to JPEG on Linux

bmpconversionjpeglinux

Someone sent me a bunch of BMP files and I need them in JPEG. I could convert them one by one using GIMP, but I'd rather do it all in one go. I have Ubuntu.

Best Answer

You can use ImageMagick's mogrify tool

mogrify -format jpg *.bmp
Related Question