LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (December 1999, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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!


Back to: Top of message | Previous page | Main SAS-L page