#include <Font.hpp>
Public Member Functions | |
Font () | |
Default constructor. | |
bool | LoadFromFile (const std::string &Filename, unsigned int CharSize=30, std::wstring Charset=L"") |
Load the font from a file. | |
bool | LoadFromMemory (const char *Data, std::size_t SizeInBytes, unsigned int CharSize=30, std::wstring Charset=L"") |
Load the font from a file in memory. | |
Static Public Member Functions | |
static const Font & | GetDefaultFont () |
Get the SFML default built-in font (Arial). | |
Friends | |
class | String |
Classes | |
struct | Character |
Defines the drawing attributes of a character. |
This class is meant to be used by sf::String
Definition at line 50 of file Font.hpp.
sf::Font::Font | ( | ) |
Default constructor.
bool sf::Font::LoadFromFile | ( | const std::string & | Filename, | |
unsigned int | CharSize = 30 , |
|||
std::wstring | Charset = L"" | |||
) |
Load the font from a file.
Filename | : Font file to load | |
CharSize | : Size of characters in bitmap - the bigger, the higher quality (30 by default) | |
Charset | : Characters set to generate (empty by default - takes the ASCII range [31, 255]) |
bool sf::Font::LoadFromMemory | ( | const char * | Data, | |
std::size_t | SizeInBytes, | |||
unsigned int | CharSize = 30 , |
|||
std::wstring | Charset = L"" | |||
) |
Load the font from a file in memory.
Data | : Pointer to the data to load | |
SizeInBytes | : Size of the data, in bytes | |
CharSize | : Size of characters in bitmap - the bigger, the higher quality (30 by default) | |
Charset | : Characters set to generate (empty by default - takes the ASCII range [31, 255]) |
static const Font& sf::Font::GetDefaultFont | ( | ) | [static] |
Get the SFML default built-in font (Arial).