| Date: | Mon, 20 Dec 1999 21:51:48 -0800 |
| Reply-To: | Walter Smith <wjsmith1NOwjSPAM@FEDEX.COM.INVALID> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Walter Smith <wjsmith1NOwjSPAM@FEDEX.COM.INVALID> |
| Organization: | http://www.remarq.com: The World's Usenet/Discussions Start Here |
| Subject: | Re: Graphic Output |
|---|
Here's how I've done it (with good success):
1) Create a custom version of the gif driver to get higher resolution:
<pre>
libname gdevice0 "&mypath";
proc gdevice c=gdevice0.devices nofs;
copy gif from=sashelp.devices newname=gif1k; run;
modify gif1k xpixels=1024 ypixels=768
description="GIF 1024x768"; run;
list gif1k; run;
title "Contents of Device Driver Catalog at &mypath";
list _all_; run;
quit;
</pre>
2) Use the custom driver with this:
<pre>
libname gdevice0 "&mypath";
filename gsfile "&fname";
goptions device=gif1k gsfname=gsfile gsfmode=replace gaccess=sasgastd;
</pre>
You can then port the gif files to your PC and view them with any gif
viewer, paste them into Word, PPT, etc.
Hope this helps.
* Sent from RemarQ http://www.remarq.com The Internet's Discussion Network *
The fastest and easiest way to search and participate in Usenet - Free!
|