Stránky

Friday, May 20, 2011

Free Convert Multiple Image to EPS on Mac

First download and install the ImageMagick. It installs the great convert commmand line utility.

Then run following script in the terminal, in the image directory (change appropriate extension)

for i in `ls *.png | sed -e 's/\.[a-zA-Z]*$//'`; do convert $i.png $i.eps; done

DONE