table of contents
TTF_SizeUNICODE(3) | SDL_ttf3 FUNCTIONS | TTF_SizeUNICODE(3) |
NAME¶
TTF_SizeUNICODE - Calculate the dimensions of a rendered string of UCS-2 text.
HEADER FILE¶
Defined in SDL3_ttf/SDL_ttf.h
SYNOPSIS¶
#include "SDL3_ttf/SDL_ttf.h"
SDL_bool TTF_SizeUNICODE(TTF_Font *font, const Uint16 *text, int *w, int *h);
DESCRIPTION¶
This will report the width and height, in pixels, of the space that the specified string will take to fully render.
This does not need to render the string to do this calculation.
Please note that this function is named "Unicode" but currently expects UCS-2 encoding (16 bits per codepoint). This does not give you access to large Unicode values, such as emoji glyphs. These codepoints are accessible through the UTF-8 version of this function.
FUNCTION PARAMETERS¶
RETURN VALUE¶
Returns SDL_TRUE on success or SDL_FALSE on failure; call SDL_GetError() for more information.
AVAILABILITY¶
This function is available since SDL_ttf 3.0.0.
SEE ALSO¶
•(3), TTF_SizeUTF8(3)
SDL_ttf 3.0.0 | SDL_ttf |