Dear Users, I am trying to output my graph image in a *.eps file format. However, I was getting the ERROR message ERROR: Unsupported image file format for output file. Therefore, I am using EPSI image format and that ran successfully. The issue is that when I try to open the *.epsi file using Adobe Acrobat, I am getting an error. Please let me know if there is a way I could output *.eps image format using ODS GRAPHICS, otherwise, please let me know if there is any workaround to get rid of the error showing up while opening it using Adobe Acrobat. For some reason filename statement and gsfname goptions is not working for me and therefore I am using ods listing gpath. The code and the error are attached. goptions reset=all ftext="Helvetica";
ods listing gpath="&somepath";
ods graphics on/reset=index
imagename="XX"
noborder
scale=on
antialiasmax=1500
imagefmt=epsi;
proc sgplot data = XXX noautolegend;
reg x=xvar y=yvar /markerattrs=(symbol=plus);
quit;
ods graphics off;
... View more