• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

SaveAs EPS (Preset to [High Resolution])

Enthusiast ,
Nov 13, 2018 Nov 13, 2018

Copy link to clipboard

Copied

Hi All,

Could you please help for the below request that am struggling for long time..

We need to SaveAs the Illustrator file to ."eps" format as per below screenshot.

Screen Shot 2018-11-13 at 4.59.15 PM.png

var currentDoc  = activeDocument; 

var epsFile  = new File (currentDoc.fullName); 

var epsOptions = new EPSSaveOptions();

epsOptions.cmykPostscript = true;

epsOptions.compatibility = Compatibility.ILLUSTRATOR16;

epsOptions.compatibleGradientPrinting = false;

epsOptions.embedAllFonts = true;   //ok

epsOptions.embedLinkedFiles = true;

epsOptions.flattenOutput = OutputFlattening.PRESERVEAPPEARANCE;

epsOptions.includeDocumentThumbnials = false;

epsOptions.overprint = PDFOverprint.PRESERVEPDFOVERPRINT;  //ok

epsOptions.postScript = EPSPostScriptLevelEnum.LEVEL2;  //ok

epsOptions.preview = EPSPreview.COLORTIFF;

currentDoc.saveAs (epsFile, epsOptions);

Everything is fine... But the below properties "Preset" is missing.

Screen Shot 2018-11-13 at 4.59.30 PM.png

Could you please help that all images "Preset" should be "[High Resolution]".

Thanks in Advance

TOPICS
Scripting

Views

585

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe
Engaged ,
Nov 13, 2018 Nov 13, 2018

Copy link to clipboard

Copied

LATEST

I don't see an option to call a preset for transparency for EPS. What types of items are transparent?

I am thinking maybe you could set the RasterizeOptions.resolution property?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines