You can use ODS LAYOUT along with the ODS PDF. Here is an example: /*Assuming that you already have barcode saved in a folder*/ ods pdf startpage=never style=journal file="C:\FileName.PDF" notoc ; ods region height=.5in width =.5in x=.5in y=.15in; PROC GSLIDE; GOPTIONS CBACK=black iback="C:\barcode.jpg" imagestyle=fit; RUN;QUIT; ODS PDF CLOSE; /*You can print barcode with angle or text rotation option in GSLIDE as well. Something like below assuming that font barcode would work fine with GSLIDE*/ note move=(35,40) color=black font=simplex HEIGHT=4 j=right "BARCODE TEXT";
... View more