kytschBASIC

Put down that phone!
Please view me on real computer.

BITMAPFONT
FONT

The ability to use a font when writing on a bitmap.

Example

SCREEN "the-traveller"

	WINDOW "intro"

		WINDOWBODY

			RGB 0, 0, 0

			BITMAP 0, 0, 800, 400

				RGB 255, 0, 0

				BITMAPFONT _ROOT + "/kytschi/fonts/Sixtyfour.ttf"

				BITMAPTEXT "The Traveller", 32, 0, 120, 150

			END BITMAP

		END WINDOWBODY

	END WINDOW

END SCREEN

Output

intro

Parameters

Parameter Type Description
FONT string Font to load

See also