How do i set Preset "High Resolution" in save as EPS script

Copy link to clipboard
Copied
Hi,
I am writing my own Illustrator scripts to automate the workflow.
I haven't been able to fix a Preset "High Resolution" in the transparency section of the EPS-option dialog.
Is there a way to set that option by script?
It would be great if anyone help an idea of how to solve it.
MOhan
Explore related tutorials & articles

Copy link to clipboard
Copied
For Eps using the script as
save current document in file newFilePath as eps ¬
with options {class:EPS save options ¬
, compatibility:Illustrator 14 ¬
, preview:color Macintosh ¬
, embed linked files:true ¬
, include document thumbnails:true ¬
, embed all fonts:true ¬
, CMYK PostScript:true ¬
, PostScript:level 3}
in this If I add "preset:high resolution" than it show's error.
It will be great if any one help me how to add this.
MOhan
Copy link to clipboard
Copied
The reason you get an error is that NO such property of EPS options exists…

Copy link to clipboard
Copied
Thanks.
My issue is as per my workflow need to supply PDF to clients.
Same is converted from Adobe Illustrator>Concert to EPS>Distill and PDF is ready.
While converting through Script process some of the text's converting in pixels.
Same if converted without script it comes in good quality.
Please advise.
Copy link to clipboard
Copied
To be honest EPS has almost NO place in my work flow these days the same can be said for Distiller too… From both AI & ID I export directly to PDF using presets… You have asked for all fonts to be embeddded… I don't think this has anyting to do with resolution and is more likely a font related issue…

Copy link to clipboard
Copied
Thanks Muppet Mark,
Got the solution. Actually the text was kept "Multiply".
Due to which it converts in pixels.
Thanks a lot for your comments.

