/* The following SAS program may be used to create a driver (DJ1600C) which will support the HPGL/2 language mode on the HP DeskJet 1600C 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, 6.09 AND 6.10 OF SAS/GRAPH SOFTWARE. */ *libname gdevice0 'your.sas.library'; proc gdevice c=SASHELP.devices nofs; copy hpxl300 from=sashelp.devices newname=dj1600c; modify DJ1600C des='HP DeskJet 1600C' lrows=50 lcols=72 horigin=0.000 hsize=0.000 xmax=8.000 ymax=10.000 xpixels=8128 ypixels=10160 gprolog='1B252D31323334355840504A4C20454E544552204C414E'x '47554147453D50434C0A1B451B253142494E3B5452303B'x gepilog='1B2531411B252D313233343558'x ; run; quit;