Struct rich_sdl2_ttf_rust::font::Font[][src]

pub struct Font<'ttf> { /* fields omitted */ }
Expand description

A font data structure.

Implementations

Constructs a font data from file name and point size. The font face in the font file can be selected by an optional index, which will be 0 if None.

Panics

Panics if file_name is empty.

Returns the glyph of the font if exists.

Calculates the rendered size of the text, or Err on failure. The height will be same as MetricExt::height.

Returns the rendered width in pixels and the numbers of characters until reaching expected_width. Err will be returned on out of memory.

Trait Implementations

Returns the numbers of the faces, the sub-font in the font.

Returns whether the font is fixed width.

Returns the family name of the font.

Returns the style name of the font.

Executes the destructor for this type. Read more

Returns the current hinting of the font.

Sets the hinting of the font.

Disables the font kerning.

Returns whether the font supports Singed Distance Field.

Sets whether the font supports Singed Distance Field.

Returns the maximum height of the glyph in the font, in pixels.

Returns the maximum ascent, the hight above baseline of the glyph in the font, in pixels.

Returns the maximum ascent, the hight below baseline of the glyph in the font, in pixels.

Returns the line skip height of the font, the recommended height of a rendered line of text, in pixels. It is usually larger than MetricExt::height().

Renders the text into the TtfSurface, or Err on failure.

Renders the wrapped text into the TtfSurface, or Err on failure.

Renders the character into the TtfSurface, or Err on failure.

Returns the current font style.

Sets the font style.

Returns the current outline width in pixels.

Sets the outline width in pixels.

Sets the font size in points, or Err on failure.

Sets the font size in points and dpi, or Err on failure.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.