SDL_ttf
SDL_ttf > Functions > Attributes
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));
