Usage Note 23641: In ODS, how can I name the GIF files that get created?
The GPLOT and GCHART procedures have the NAME= option, which goes on
the PLOT, VBAR, and HBAR statements. Note that prior to SAS 9.2, the NAME= option limits the name of the GIF file to 8 characters. You can also specify the FILENAME statement in conjunction with the goptions GSFNAME and the device=GIF.
Operating System and Release Information
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
The following GCHART procedures produces an image file named test.gif.
goptions device=gif;
ods html path="c:\temp"(url=none) file="name.html";
proc gchart data=sashelp.class;
vbar age / name="test";
run;
quit;
ods html close;
Ex2.
filename output 'c:\temp\test.gif';
goptions device=gif gsfname=output;
proc gchart data=sashelp.class;
vbar age;
run;
quit;
| Type: | Usage Note |
| Priority: | low |
| Topic: | SAS Reference ==> ODS (Output Delivery System) Query and Reporting ==> Creating Reports ==> Graphical Third Party ==> Output ==> HTML Third Party ==> Output ==> PDF Third Party ==> Output ==> Postscript Third Party ==> Output ==> RTF
|
| Date Modified: | 2008-10-17 11:54:32 |
| Date Created: | 2004-01-06 14:42:12 |