I am using imagemagick with Windows 7. I just unzipped the download and put all the ImageMagick files in a folder. I have a folder with about 20 *.eps files. I would like to change all the eps files to jpg format. I have tried every syntax in all the examples but I can't get it to work. Does anybody know the correct syntax. I think I need to specify the path, etc., but the -path switch does not seem to work.
For example, assuming the ImageMagick files are in: c:\data\IM\
and the .eps files are in folder: c:\data\test\
from the windows dos command line, c:\data\IM\mogrify -format jpg c:\data\test\*.eps
batch change eps to jpg
Re: batch change eps to jpg
Did you try changing to the c:\data\test directory and then running
Not sure why anyone would want to change eps to jpg though, unless they like the artistic effect of the artifacts.
Code: Select all
c:\data\IM\mogrify -format jpg *.eps
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: batch change eps to jpg
Does IM work at all? Does "convert logo: g.png" work? If not, reinstall IM.
Which download did you get? Most Windows downloads are .exe files that need to be run, not unzipped. The "portable" version is a zip file, but I don't know how that works.I just unzipped the download and put all the ImageMagick files in a folder.
snibgo's IM pages: im.snibgo.com
Re: batch change eps to jpg
I think it is something with my installation of Imagemagick, I am going to delete/uninstall and get the correct Windows 64 version and install IM properly and I'm sure it will work then.