Hi,
I set up a background image for pdf output, but the background image fills only half of the page. Is there an option that would make the picture to fill the pdf page entirely ? I use this code:
proc template;
define style Styles.mystyle;
parent = Styles.Normal;
STYLE body /
backgroundimage='/user/test/bck_image.jpg'
BOTTOMMARGIN=0
TOPMARGIN=0
RIGHTMARGIN=0
LEFTMARGIN=0
;
end;
run;
options nodate nocenter orientation=landscape;
ods pdf file="/user/test/test.pdf" style=mystyle;
proc print data=sashelp.class; quit;
ods pdf close;
Many thanks.