Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to Convert .Jpeg images to .Bmp

I have JPEG images into my Local Drive. I want to Convert JPEG images to BMP and then apply a pallets to all Converted BMP images.

Please Suggest me What could be the Best way to Do this. pallets are the .pal files.

like image 596
Code Hungry Avatar asked Dec 04 '22 04:12

Code Hungry


1 Answers

Your best bet for converting images would be the command line tool ImageMagick. Your command would be something like:

mogrify -format bmp *.jpg

P.S. are you sure you want to convert to BMP? They take up a huge amount of disk space. If you want lossless compression you can use PNG.

like image 111
DisgruntledGoat Avatar answered Jan 03 '23 02:01

DisgruntledGoat