Hi,
I was uning SAS EG to generate some image and output the images to PDF using ODS PDF. The images look blurry. But when i do the same work in SAS 9.4 for Window, the images was vector images and does not blurry after magnification. My SAS EG was for Linux system. The output difference was like the following picture.
Can you tell me how to output the vector image using ODS PDF.
Thank you very much.
The image was more clear when adding option DPI=300, but the image was not vector image. When using SAS for Windows the image was an ector image. I don't know how the difference come about.
No. You can't , unless you specify it is a vector image (e.g. SVG file).
ods pdf file="c:\temp\Test.pdf";
ods graphics on / reset=all outputfmt=svg;
proc sgplot data=sashelp.class;
scatter x=height y=weight;
ellipse x=height y=weight;
run;
ods pdf close;
Hi,
This method was usefull in Windows system but not in SAS for Linux. It not suppsort SVG image in Linux.
@Jinlf wrote:
Hi,
This method was usefull in Windows system but not in SAS for Linux. It not suppsort SVG image in Linux.
So it is not an Enterprise Guide issue.
What is the version of SAS that your Enterprise Guide project is using?
What operating system is your SAS session running on?
Hi,
Thanks for your reply. My SAS version is 9.4 M7 and was running on Linux for X64.
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.