On 20 Jul 2003 at 23:45, Harish Narayanan wrote:
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
mogrify -format jpg *.bmp
I'd recommend using GraphicsMagick instead of ImageMagick, too http://www.graphicsmagick.org
Why?
HTH, Michael _______________________________________________ Gimp-user mailing list [EMAIL PROTECTED] http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user
-- Until later: Geoffrey [EMAIL PROTECTED]
The latest, most widespread virus? Microsoft end user agreement. Think about it...
_______________________________________________ Gimp-user mailing list [EMAIL PROTECTED] http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user
