Class TTextureFont
Unit
CastleFonts
Declaration
type TTextureFont = class(TCastleFont)
Description
Font using a texture initialized from a FreeType font file.
This can load a font file, or it can use ready data in TTextureFontData. The latter allows to use this for fonts embedded in a Pascal source code, since our texture-font-to-pascal can convert a font ttf to a unit that defines ready TTextureFontData instance.
Hierarchy
- TObject
- TPersistent
- TComponent
- TCastleFont
- TTextureFont
Overview
Methods
 |
constructor Create(AOwner: TComponent); override; |
 |
destructor Destroy; override; |
 |
constructor Create(const URL: string; const ASize: Integer; const AnAntiAliased: boolean; const ACharacters: TUnicodeCharList = nil); reintroduce; deprecated 'use Create(Owner: TComponent), then Load'; |
 |
procedure Load(const URL: string; const ASize: Integer; const AnAntiAliased: boolean; const ACharacters: TUnicodeCharList = nil); |
 |
constructor Create(const URL: string; const ASize: Integer; const AnAntiAliased: boolean; const ACharacters: TSetOfChars); deprecated 'use Create(Owner: TComponent), then Load'; |
 |
constructor Create(const Data: TTextureFontData; const OwnsData: boolean = false); reintroduce; deprecated 'use Create(Owner: TComponent), then Load'; |
 |
procedure Load(const Data: TTextureFontData; const OwnsData: boolean = false); |
 |
procedure PrepareResources; override; |
 |
procedure Print(const X, Y: Single; const Color: TCastleColor; const S: string); override; |
 |
function TextWidth(const S: string): Single; override; |
 |
function TextHeight(const S: string): Single; override; |
 |
function TextHeightBase(const S: string): Single; override; |
 |
function TextMove(const S: string): TVector2; override; |
Properties
Description
Methods
 |
constructor Create(AOwner: TComponent); override; |
|
The default component constructor. If you construct font this way, you must call Load before doing anything else with the font.
|
 |
destructor Destroy; override; |
|
|
 |
constructor Create(const URL: string; const ASize: Integer; const AnAntiAliased: boolean; const ACharacters: TUnicodeCharList = nil); reintroduce; deprecated 'use Create(Owner: TComponent), then Load'; |
|
Warning: this symbol is deprecated: use Create(Owner: TComponent), then Load
Create by reading a FreeType font file, like ttf.
Providing charaters list as Nil means that we only create glyphs for SimpleAsciiCharacters, which includes only the basic ASCII characters. The ACharacters instance does not become owned by this object, so remember to free it after calling this constructor.
Loading a font data also changes Size to the underlying (optimal to render) font data size.
|
 |
procedure Load(const URL: string; const ASize: Integer; const AnAntiAliased: boolean; const ACharacters: TUnicodeCharList = nil); |
|
|
 |
constructor Create(const URL: string; const ASize: Integer; const AnAntiAliased: boolean; const ACharacters: TSetOfChars); deprecated 'use Create(Owner: TComponent), then Load'; |
|
Warning: this symbol is deprecated: use Create(Owner: TComponent), then Load |
 |
constructor Create(const Data: TTextureFontData; const OwnsData: boolean = false); reintroduce; deprecated 'use Create(Owner: TComponent), then Load'; |
|
Warning: this symbol is deprecated: use Create(Owner: TComponent), then Load
Create from a ready TTextureFontData instance.
Parameters
- Data
- TTextureFontData instance containing loaded image and glyphs parameters.
- OwnsData
- If
True, the Data instance becomes owned by this class (will be freed in our constructor). Usually you do not want this, since usually you pass Data from a unit generated by texture-font-to-pascal. In this case, the finalization of CastleTextureFont_Xxx unit will already free the TTextureFontData instance.
|
 |
procedure PrepareResources; override; |
|
|
 |
procedure Print(const X, Y: Single; const Color: TCastleColor; const S: string); override; |
|
|
 |
function TextWidth(const S: string): Single; override; |
|
|
 |
function TextHeight(const S: string): Single; override; |
|
|
 |
function TextHeightBase(const S: string): Single; override; |
|
|
 |
function TextMove(const S: string): TVector2; override; |
|
|
Properties
 |
property Scale: Single read GetScale write SetScale; |
|
Scale applied to the rendered font, compared to FontData.Size. Changing this is equivalent to changing the Size property.
|
Generated by PasDoc 0.16.0.