Use the FONTRENDERING=
system option to specify how
SAS/GRAPH devices that are based on the
SASGDGIF, SASGDTIF, and SASGDIMG modules render fonts. When the operating
system renders fonts, the font size is requested in pixels. When the
FreeType engine renders fonts, the font size is requested in points.
Use the GDEVICE procedure
to determine which module a
SAS/GRAPH device uses:
proc gdevice c=sashelp.devices browse nofs;
list devicename;
quit;
For example,
proc gdevice c=sashelp.devices browse nofs;
list gif;
quit;
The following is partial
output from the GDEVICE procedure output:
GDEVICE procedure
Listing from SASHELP.DEVICES - Entry GIF
Orig Driver: GIF Module: SASGDGIF Model: 6031
Description: GIF File Format Type: EXPORT
*** Institute-supplied ***
Lrows: 43 Xmax: 8.333 IN Hsize: 0.000 IN Xpixels: 800
Lcols: 88 Ymax: 6.250 IN Vsize: 0.000 IN Ypixels: 600
Prows: 0 Horigin: 0.000 IN
Pcols: 0 Vorigin: 0.000 IN
Aspect: 0.000 Rotate:
Driver query: Y Queued messages: N
Paperfeed: 0.000 IN
The
Module
entry
names the module used by the device.