Usage Note 24319: Can I add a watermark to my ODS PDF output?
Starting in SAS 9.1, code like the following can place an image behind a table. The size of the image is not controlled by SAS.
proc template;
define style watermark;
parent=styles.printer;
style header from header /
background=_undef_;
style body from document /
background=_undef_
backgroundimage="watermark.jpg";
end;
run;
ods pdf file="test.pdf" style=watermark;
proc report data = sashelp.class nowd;
run;
ods pdf close;
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: | System Administration ==> Printing Third Party ==> Output ==> PDF SAS Reference ==> ODS (Output Delivery System)
|
| Date Modified: | 2005-08-19 16:25:06 |
| Date Created: | 2005-07-29 08:28:01 |