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.
Calculates the rendered size of the text, or Err
on failure. The height will be same as MetricExt::height
.
Trait Implementations
Returns whether the font is fixed width.
Returns the family name of the font.
Returns the style name of the font.
Returns the current hinting of the font.
Sets the hinting of the font.
Disables the font kerning.
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.
fn render_wrapped(
&self,
text: &str,
wrap_length: u32,
mode: RenderMode
) -> Result<TtfSurface>
fn render_wrapped(
&self,
text: &str,
wrap_length: u32,
mode: RenderMode
) -> Result<TtfSurface>
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.