MakeRasterFont.mesa
Michael Plass, February 15, 1984 3:13:52 pm PST
DIRECTORY Font, Rope, RasterFontWriter;
MakeRasterFont: CEDAR DEFINITIONS ~ BEGIN
ROPE: TYPE ~ Rope.ROPE;
FONT: TYPE ~ Font.FONT;
InternalFont: TYPE ~ RasterFontWriter.InternalFont;
FromUnifiedFont: PROC [font: FONT] RETURNS [InternalFont];
ConvertFile: PROC [outputFileName: ROPE, fontName: ROPE, size: REAL, rotation: REAL, bitsPerInch: REAL];
Does a whole file. There is an executive comand to do this.
fontName is the full hierarchial name (i.e., Xerox/Pressfonts/Timesroman/MRR)
size is in pixels
rotation is in degrees
bitsPerInch is only used for AC fonts
output file format is derived from the output name
END.