[magick-users] convert is bitmapping my fonts during PS -> EPS
conversion
Gabe Schaffer
magick at gabe.com
Thu Feb 15 12:44:17 CST 2007
On 2/15/07, brycenesbitt <bryce1 at obviously.com> 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
More information about the Magick-users
mailing list