Glam Prestige Journal

Bright entertainment trends with youth appeal.

My screen capture program saves .bmp images, which are not usable in Google Docs, which will accept .jpg

Is there a clever way to create a set of .jpg from the .bmp files via the command line? Bonus for use of a command that is native to Ubuntu install. If not, please communicate line of reasoning for selecting software. Thank you

0

1 Answer

First install imagemagick:

sudo apt-get install imagemagick

Than use imagemagick's tool mogrify:

mogrify -format jpg /path/to/your/bmps/*.bmp

Why? 'cause it works.

1