Show_Font
Functions | |
void | Show_Font (const char *name, char *options, int *data_length, char *data) |
Describes a specific set of simple geometry to be used as the actual shapes when drawing text characters. More... | |
void | Show_Font_Size (const char *name, char *options, int *data_length) |
Finds the size in bytes of a particular font. This is useful in determining the size of the data structure that must hold data More... | |
Detailed Description
Function Documentation
◆ Show_Font()
void Show_Font | ( | const char * | name, |
char * | options, | ||
int * | data_length, | ||
char * | data | ||
) |
Describes a specific set of simple geometry to be used as the actual shapes when drawing text characters.
- Parameters
-
name - The name associated with this font definition. Passed by reference always. options - A string describing general characteristics of the font. Returned to caller. data_length - Number of bytes in data. Passed by reference always. Returned to caller. data - Information about extents of character shapes and how to of bytes draw them. Returned to caller.
DETAILS
Show_Font() allows you to retrieve font definition data previously defined by Define_Font() . Call Show_Font_Size() to find out the minimum size of the data buffer necessary to contain the data returned by Show_Font.
NOTES
RESTRICTIONS
◆ Show_Font_Size()
void Show_Font_Size | ( | const char * | name, |
char * | options, | ||
int * | data_length | ||
) |
Finds the size in bytes of a particular font. This is useful in determining the size of the data structure that must hold data
- Parameters
-
name - The name associated with this font definition. Passed by reference always. options - A string describing general characteristics of the font. Returned to caller. data_length - Number of bytes in data. Passed by reference always. Returned to caller.
DETAILS
No additional details. See Show_Font()