/* The following SAS program may be used to create a driver (PHASR540) which will support the Tektronix Phaser 540 printer. It is assumed that the new driver entry will be stored in the SASHELP.DEVICES catalog. If you do not have update access to this catalog, create the driver entry in your own catalog, GDEVICE0.DEVICES. You may do this by uncommenting the LIBNAME statement below and changing SASHELP to GDEVICE0 on the PROC GDEVICE statement. NOTE: THIS CODE IS FOR USE WITH RELEASE 6.08 AND ABOVE OF SAS/GRAPH SOFTWARE. */ *libname gdevice0 'your.sas.library'; proc gdevice c=SASHELP.devices nofs; copy pscolor from=sashelp.devices newname=PHASR540; mod PHASR540 des='Tektronix Phaser 540 Color Printer' xpixels=5100 ypixels=6600 hsize=8.0 vsize=10.25 horigin=.25 vorigin=.40 prows=83 pcols=80 prompt=0 gprolog='04'x gepilog='04'x lfactor=3 ; run; quit;