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.)
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
>
|