Usage Note 24229: Can I get images in my titles with ODS PRINTER?
In SAS 8.2, ODS PRINTER can put images in the title area
with the PREIMAGE= or POSTIMAGE= attribute.
Try out the following code, which demonstrates this
feature as well as other new features for SAS 8.2, such as inline formatting:
ods escapechar='^';
ods printer pdf file="foo.pdf";
ods printer(2) ps file="foo.ps";
title j=l '^S={preimage="saslogo.gif"}'
j=c 'the title^{super *} text'
j=r '^S={postimage="saslogo.gif"}';
footnote j=l f=helvetica h=1.5
'^{super *}Nifty, ^S={foreground=red}eh?';
proc print data=sashelp.class(obs=3)
style={rules=none background=red}; run;
ods _all_ close;
See
New Features for ODS Destinations in SAS 8.2 for more new 8.2 features.
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.
| Type: | Usage Note |
| Priority: | low |
| Topic: | Query and Reporting ==> Creating Reports ==> Graphical SAS Reference ==> ODS (Output Delivery System) System Administration ==> Printing
|
| Date Modified: | 2005-06-20 17:16:32 |
| Date Created: | 2005-02-15 10:15:37 |