On 2/15/07, brycenesbitt <[EMAIL PROTECTED]> wrote:
Anthony Thyssen wrote:
>
> ImageMagick is NOT designed for vector formats like these...
>
> You are better of getting Illustrator to convert to postscript
> instead, as it will generate vector postscript.
>
The problem is that Illustrator is not scriptable in this way, so converting
200 images once a month is too much work.
What version of Illustrator are you using? Here's a script for CS2
that will save the current document as EPS:
// Save a document to the home folder of the current user
// as EPS with specific options
var newFile = new File("~/sample.eps");
var saveDoc;
if ( app.documents.length == 0 )
saveDoc = app.documents.add();
else
saveDoc = app.activeDocument;
var saveOpts = new EPSSaveOptions();
saveOpts.cmykPostScript = true;
saveOpts.compatibility = Compatibility.ILLUSTRATOR8;
saveOpts.embedAllFonts = true;
saveDoc.saveAs( newFile, saveOpts );
GNS
_______________________________________________
Magick-users mailing list
[email protected]
http://studio.imagemagick.org/mailman/listinfo/magick-users