[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

3.3.7 TTF_FontLineSkip

int TTF_FontLineSkip(TTF_Font *font)

font
The loaded font to get the line skip height of

Get the reccomended pixel height of a rendered line of text of the loaded font. This is usually larger than the TTF_FontHeight of the font.

NOTE: Passing a NULL font into this function will cause a segfault.

Returns: The maximum pixel height of all glyphs in the font.

 
// get the loaded font's max descent
//TTF_Font *font;

printf("The font descent is: %d\n", TTF_FontDescent(font));

See Also:
3.3.4 TTF_FontHeight,
3.3.5 TTF_FontAscent,
3.3.6 TTF_FontDescent,
3.3.12 TTF_GlyphMetrics



This document was generated on May, 2 2005 using texi2html