The FONTREG Procedure |
Procedure features: | FONTFILE statement |
This example shows how to add a single font file to the SAS registry.
Program |
proc fontreg;
fontfile 'your-font-file';
run; |
Output: SAS Log |
NOTE: PROCEDURE PRINTTO used (Total process time):
real time 0.03 seconds
cpu time 0.00 seconds
20 proc fontreg;
21 fontfile 'your-font-file';
22 run;
SUMMARY:
Files processed: 1
Unusable files: 0
Files identified as fonts: 1
Fonts that were processed: 1
Fonts replaced in the SAS registry: 0
Fonts added to the SAS registry: 1
Fonts that could not be used: 0
Font Families removed from SAS registry: 0
NOTE: PROCEDURE FONTREG used (Total process time):
real time 0.17 seconds
cpu time 0.03 seconds
Copyright © 2010 by SAS Institute Inc., Cary, NC, USA. All rights reserved.