Syntax:
LOADFONT bmp$
Loads the file bmp$ and uses it as the current font for the commands PRINT and INPUT.Font-bmps must be the size of 16*x and 8*y pixels. Use the DiNGSFont utility to make a bmp-font from a TrueTypeFont.
Sample:
PRINT “Hello World”, 100, 100LOADFONT “comp_fnt.bmp”PRINT “Computer”, 100, 150SHOWSCREENMOUSEWAIT