How to do the same convert on a lot of images at once
Posted: 2007-12-11T08:30:12-07:00
Hello,
I am new to this app, but have a problem I need to resolve. I used ImageMagick to convert a BG color to transparent like this:
Worked great. Trouble is that I have 100s of images that I need to do the same thing to, some GIF and some JPG. Is there a way to do the above to a whole directory full of images so that it will convert each image and save it as the original name? Something like:
Thanks for your help,
Mike
I am new to this app, but have a problem I need to resolve. I used ImageMagick to convert a BG color to transparent like this:
Code: Select all
convert c:\ADR_141.gif -transparent "#FFFFEF" c:\ADR_141.gif
Code: Select all
convert c:\*.* -transparent "#FFFFEF" c:\*.*
Mike