Brief Index      Full Index      I.M. Reference

Show_Font


Functions

void Show_Font (const char *name, char *options, int *data_length, void *data)
void Show_Font_Size (const char *name, char *options, int *data_length)

Function Documentation

void Show_Font ( const char *  name,
char *  options,
int *  data_length,
void *  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

See also:
Define_Font, Set_Text_Font, Define_Callback_Name, Insert_Text_With_Encoding

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()

Main Index
Brief Index      Full Index      I.M. Functions