Gabe Schaffer-3 wrote:
>
> 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 );
>
Thanks. While that does not work within our environment, it is good to know
about the capability.
--
View this message in context:
http://www.nabble.com/convert-is-bitmapping-my-fonts-during-PS--%3E-EPS-conversion-tf3232295.html#a8998676
Sent from the Magick-users mailing list archive at Nabble.com.
_______________________________________________
Magick-users mailing list
[email protected]
http://studio.imagemagick.org/mailman/listinfo/magick-users