/* The following SAS program may be used to create drivers which will support multiple paper sizes using the HPGL/2 and PostScript emulation modes on the Lexmark Optra C printer. It is assumed that the new driver entries will be stored in the SASHELP.DEVICES catalog. If you do not have update access to this catalog, create the driver entries 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.11 OF SAS/GRAPH SOFTWARE. */ *libname gdevice0 'your.sas.library'; proc gdevice c=SASHELP.devices nofs; copy clj from=sashelp.devices newname=optcgla; mod optcgla des='Lexmark Optra C - HPGL/2 - letter size' vsize=10.250 IN prows=52 ; copy cljps from=sashelp.devices newname=optcpsa; mod optcpsa des='Lexmark Optra C - PS - letter size' xpixels=5100 ypixels=6600 vsize=10.25 IN prows=83 ; copy cljpsa4 from=sashelp.devices newname=optcpsa4; mod optcpsa4 des='Lexmark Optra C - PS - A4 size' xpixels=4960 ypixels=7014 vsize=26.190 CM vorigin=2.380 CM prows=83 ; run; quit;