Hi,

You could use "convert" from the ImageMagick suite and a small bash 
script like:

#!/bin/bash
for image in *.bmp; do
target=`echo $image | sed s/.bmp/.jpg/`
convert $image $target
done

Or something similar.

Harish

Phillip Bruce wrote:

> Hi,
>
>   I have a bunch of bmp images that I want to convert
>   to jpeg format. How can I do this without having to
>   go thru each image at a time?
>
>   I'm running gimp on a unix platform.
>

_______________________________________________
Gimp-user mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user

Reply via email to