Re: [newbie] batch image converting

2004-10-19 Thread Q.H. Wang
No, what I wanna is kinda generally image format converting.  This is exactly 
what convert of ImageMagick does. Anyway, many thanks for your info.


 I think you will have to be more specific. I.E. to convert .wbz to .jpeg
 use webdac.


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] batch image converting

2004-10-18 Thread Stew Benedict

On Mon, 18 Oct 2004, Q.H. Wang wrote:

 Hi Folks,
 
 Is there some way can easily convert all images in a directory from one format 
 to another one? I mean, just using scripts, not tools like GIMP. I found 
 there is such a tool program for GIMP can do that, but unfortunately I need 
 to update GIMP first. Can anyone give me some pointers? Many thanks.
 

convert part of ImageMagick

With a simple shell script you can use this app and convert a number of 
files in a batch mode.

Something like (directory of .bmp files, convert to .jpg):

#!/bin/sh
for i in `ls`;do
base=`basename $i .bmp`
echo convert $i $base.jpg
convert $i $base.jpg
done


-- 
Stew Benedict
Mandrakesoft
---
[This E-mail scanned for viruses by Declude Virus]



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] batch image converting

2004-10-18 Thread Q.H. Wang
Many thanks, Stew. It's done using your script after I installed ImageMagick 
package!

Bests,

Q.H. Wang



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] batch image converting

2004-10-18 Thread Hoyt Bailey
On Monday 18 October 2004 12:52, Q.H. Wang wrote:
 Hi Folks,

 Is there some way can easily convert all images in a directory from
 one format to another one? I mean, just using scripts, not tools like
 GIMP. I found there is such a tool program for GIMP can do that, but
 unfortunately I need to update GIMP first. Can anyone give me some
 pointers? Many thanks.

 Bests,

 Q.H. Wang
I think you will have to be more specific. I.E. to convert .wbz to .jpeg 
use webdac.
-- 
Regards;
Hoyt
Registered Linux User #363264
http://counter.li.org


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com