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
01 Answer
First install imagemagick:
sudo apt-get install imagemagickThan use imagemagick's tool mogrify:
mogrify -format jpg /path/to/your/bmps/*.bmpWhy? 'cause it works.
1