Batch convert BMP images to JPEG, PNG, or GIF (Linux, Mac OS X)
Monday, December 5th, 2011I ran into a situation recently where I wanted to batch convert a number of BMP images into JPEG images. Fortunately, as a Linux command line user, I didn’t have a problem using ImageMagick, and their mogrify command.
In short, I was able to convert the images from the Linux command line like this:
mogrify -format jpg *.bmp
I found this information at this URL on the ImageMagick website.
Batch image processing on Mac OS X
If you don’t happen to be a Linux command line user, I’ve also written about how to do similar things on Apple Mac OS X computer systems. Here are links to some of my Mac image processing tutorials:
- Batch convert Mac OS X BMP, JPG, PNG image files
- Mac - Convert BMP image to JPEG, PNG, TIFF, GIF, or PDF
- Free Mac batch image resizing with Automator
If you’re looking for different ways to convert images from one format to another on Mac OS X system, or resize images on a Mac, I hope those examples and tutorials are helpful.


