Home  /  Autodocs  /  graphics.library

NAME

SetFont
Set the text font and attributes in a RastPort.

SYNOPSIS

SetFont(rp, font)
A1 A0

void SetFont(struct RastPort *, struct TextFont *);

FUNCTION

This function sets the font in the RastPort to that described by font, and updates the text attributes to reflect that change. This function clears the effect of any previous soft styles.

INPUTS

rp
the RastPort in which the text attributes are to be changed

font
pointer to a TextFont structure returned from OpenFont() or OpenDiskFont()

NOTES

This function had previously been documented that it would accept a null font. This practice is discouraged.

As of V36, the following Amiga font variants are no longer directly supported:

Attempts to SetFont these one of these font variants will cause the system to modify your font to make it acceptable.

BUGS

Calling SetFont() on in-code TextFonts (ie fonts not OpenFont()ed) will result in a loss of 24 bytes from the system as of V36.

This can be resolved by calling StripFont().

SEE ALSO

OpenFont() StripFont() diskfont.library/OpenDiskFont() <graphics/text.h>