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 (August 2007, 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 Aug 2007 11:47:48 -0500
Reply-To:   "data _null_;" <datanull@GMAIL.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   "data _null_;" <datanull@GMAIL.COM>
Subject:   Re: Saving tables as individual picture files (.jpg, .gif, etc.)
Comments:   To: Erik <erik.bourdon@gmail.com>
In-Reply-To:   <1187625504.218806.41740@q4g2000prc.googlegroups.com>
Content-Type:   text/plain; charset=ISO-8859-1

GPRINT might be adequate for your needs. You will need to lookup specific details regarding the GIF device driver.

filename ft55f001 temp;

ods listing file=ft55f001; proc print data=sashelp.class; *TABULATE or REPORT or whatever; run; ods listing;

options device=gif; proc gprint unit=55; run;

On 8/20/07, Erik <erik.bourdon@gmail.com> wrote: > Hello there, > > I am looking for a way to save tables created with PROC TABULATE into > picture files such as a .jpg or .gif. > > I have been able to do this with graphs using "filename grafout" in > combination with "PROC GCHART" but I have not found anything either in > the documentation, in this group or in the SUGI proceedings on saving > tables as pictures. > > Any suggestion would be appreciated. > > Thanks in advance. > > Erik >


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