Previous Page | Next Page

The FONTREG Procedure

Example 3: Replacing Existing TrueType Font Files from a Directory


Procedure features:

MODE= option

TRUETYPE statement


This example reads all the TrueType fonts in the specified directory and replaces the ones that already exist in the SAS registry.


Program

 Note about code
proc fontreg mode=replace;
 Note about code
   truetype 'your-font-directory';
run;

Output: SAS Log

53   proc fontreg mode=replace;
54      truetype 'your-font-directory';
55   run;
SUMMARY:
  Files processed: 49
  Unusable files: 3
  Files identified as fonts: 46
  Fonts that were processed: 40
  Fonts replaced in the SAS registry: 40
  Fonts added to the SAS registry: 0
  Fonts that could not be used: 0
  Font Families removed from SAS registry: 0

NOTE: PROCEDURE FONTREG used (Total process time):
      real time           1.39 seconds
      cpu time            0.63 seconds
      

Previous Page | Next Page | Top of Page