Re: bmp to jpg conversion

2001-01-22 Thread aidanc
Thanks to everyone who helped me with this! I took the advice from the list and checked out magicfilter and the mogrify command: mogrify -format jpg *.bmp did the trick! Thanks again, Aidan

Re: bmp to jpg conversion

2001-01-19 Thread Carl Fink
On Fri, Jan 19, 2001 at 10:10:12AM -0500, Peter S Galbraith wrote: > The only mogrify I know of _is_ part of ImageMagick. Sorry, I meant to type that I like mogrify over *convert*. -- Carl Fink [EMAIL PROTECTED]

Re: bmp to jpg conversion

2001-01-18 Thread Carl Fink
Although ImageMagick is clearly the common choice, I personally like Mogrify because it handles globbing better and is fast and efficient. -- Carl Fink [EMAIL PROTECTED]

Re: bmp to jpg conversion

2001-01-18 Thread Jon Pennington
On Thu, Jan 18, 2001 at 01:39:04PM -0500, aidanc wrote: > I'm not sure where to start, but I need to convert about 280 .bmp files > to .jpg format. Is there a utility or script that would convert them all > at once? I'd use `convert' from the ImageMagick package. Something like: $ conver

Re: bmp to jpg conversion

2001-01-18 Thread Pascal Hos
On Thursday 18 January 2001 12:39 pm, aidanc wrote: > I'm not sure where to start, but I need to convert about 280 .bmp > files to .jpg format. Is there a utility or script that would > convert them all at once? > TIA > Aidan apt-get install imagemagick then use "convert" to change your image form

Re: bmp to jpg conversion

2001-01-18 Thread Tom Gilbert
* aidanc ([EMAIL PROTECTED]) wrote: > I'm not sure where to start, but I need to convert about 280 .bmp files > to .jpg format. Is there a utility or script that would convert them all > at once? > TIA > Aidan apt-get install imagemagick for file in *.bmp; do convert $file `echo $file | sed -e 's

bmp to jpg conversion

2001-01-18 Thread aidanc
I'm not sure where to start, but I need to convert about 280 .bmp files to .jpg format. Is there a utility or script that would convert them all at once? TIA Aidan

RE: bmp to jpg conversion

2001-01-18 Thread Sean 'Shaleh' Perry
On 18-Jan-2001 aidanc wrote: > I'm not sure where to start, but I need to convert about 280 .bmp files > to .jpg format. Is there a utility or script that would convert them all > at once? imagemagick has what you need.