Functions
Font.h File Reference
#include <SFML/Graphics/Export.h>
#include <SFML/Graphics/Glyph.h>
#include <SFML/Graphics/Types.h>
#include <SFML/System/InputStream.h>
#include <stddef.h>

Go to the source code of this file.

Functions

CSFML_GRAPHICS_API sfFontsfFont_createFromFile (const char *filename)
 Create a new font from a file.
 
CSFML_GRAPHICS_API sfFontsfFont_createFromMemory (const void *data, size_t sizeInBytes)
 Create a new image font a file in memory.
 
CSFML_GRAPHICS_API sfFontsfFont_createFromStream (sfInputStream *stream)
 Create a new image font a custom stream.
 
CSFML_GRAPHICS_API sfFontsfFont_copy (const sfFont *font)
 Copy an existing font.
 
CSFML_GRAPHICS_API void sfFont_destroy (sfFont *font)
 Destroy an existing font.
 
CSFML_GRAPHICS_API sfGlyph sfFont_getGlyph (sfFont *font, sfUint32 codePoint, unsigned int characterSize, sfBool bold)
 Get a glyph in a font.
 
CSFML_GRAPHICS_API int sfFont_getKerning (sfFont *font, sfUint32 first, sfUint32 second, unsigned int characterSize)
 Get the kerning value corresponding to a given pair of characters in a font.
 
CSFML_GRAPHICS_API int sfFont_getLineSpacing (sfFont *font, unsigned int characterSize)
 Get the line spacing value.
 
CSFML_GRAPHICS_API const
sfTexture
sfFont_getTexture (sfFont *font, unsigned int characterSize)
 Get the texture containing the glyphs of a given size in a font.
 

Function Documentation

CSFML_GRAPHICS_API sfFont* sfFont_copy ( const sfFont font)

Copy an existing font.

Parameters
fontFont to copy
Returns
Copied object
CSFML_GRAPHICS_API sfFont* sfFont_createFromFile ( const char *  filename)

Create a new font from a file.

Parameters
filenamePath of the font file to load
Returns
A new sfFont object, or NULL if it failed
CSFML_GRAPHICS_API sfFont* sfFont_createFromMemory ( const void *  data,
size_t  sizeInBytes 
)

Create a new image font a file in memory.

Parameters
dataPointer to the file data in memory
sizeInBytesSize of the data to load, in bytes
Returns
A new sfFont object, or NULL if it failed
CSFML_GRAPHICS_API sfFont* sfFont_createFromStream ( sfInputStream stream)

Create a new image font a custom stream.

Parameters
streamSource stream to read from
Returns
A new sfFont object, or NULL if it failed
CSFML_GRAPHICS_API void sfFont_destroy ( sfFont font)

Destroy an existing font.

Parameters
fontFont to delete
CSFML_GRAPHICS_API sfGlyph sfFont_getGlyph ( sfFont font,
sfUint32  codePoint,
unsigned int  characterSize,
sfBool  bold 
)

Get a glyph in a font.

Parameters
fontSource font
codePointUnicode code point of the character to get
characterSizeCharacter size, in pixels
boldRetrieve the bold version or the regular one?
Returns
The corresponding glyph
CSFML_GRAPHICS_API int sfFont_getKerning ( sfFont font,
sfUint32  first,
sfUint32  second,
unsigned int  characterSize 
)

Get the kerning value corresponding to a given pair of characters in a font.

Parameters
fontSource font
firstUnicode code point of the first character
secondUnicode code point of the second character
characterSizeCharacter size, in pixels
Returns
Kerning offset, in pixels
CSFML_GRAPHICS_API int sfFont_getLineSpacing ( sfFont font,
unsigned int  characterSize 
)

Get the line spacing value.

Parameters
fontSource font
characterSizeCharacter size, in pixels
Returns
Line spacing, in pixels
CSFML_GRAPHICS_API const sfTexture* sfFont_getTexture ( sfFont font,
unsigned int  characterSize 
)

Get the texture containing the glyphs of a given size in a font.

Parameters
fontSource font
characterSizeCharacter size, in pixels
Returns
Read-only pointer to the texture