[][src]Struct ndless_freetype::glyph::Glyph

pub struct Glyph { /* fields omitted */ }

Represents a retrieved glyph from the library

Note that when this glyph is dropped, so is the library

Methods

impl Glyph[src]

pub unsafe fn from_raw(library_raw: FT_Library, raw: FT_Glyph) -> Self[src]

Create a freetype-rs glyph object from c constituent parts

pub fn transform(
    &self,
    matrix: Option<Matrix>,
    delta: Option<Vector>
) -> FtResult<()>
[src]

Transform a glyph image if its format is scalable.

pub fn get_cbox(&self, bbox_mode: FT_Glyph_BBox_Mode) -> BBox[src]

Return a glyph's ‘control box’. The control box encloses all the outline's points, including Bézier control points. Though it coincides with the exact bounding box for most glyphs, it can be slightly larger in some situations (like when rotating an outline that contains Bézier outside arcs).

Computing the control box is very fast, while getting the bounding box can take much more time as it needs to walk over all segments and arcs in the outline. To get the latter, you can use the ‘ftbbox’ component, which is dedicated to this single task.

pub fn to_bitmap(
    &self,
    render_mode: RenderMode,
    origin: Option<Vector>
) -> FtResult<BitmapGlyph>
[src]

Convert a given glyph object to a bitmap glyph object.

pub fn stroke(&self, stroker: &Stroker) -> FtResult<Glyph>[src]

pub fn stroke_border(&self, stroker: &Stroker, inside: bool) -> FtResult<Glyph>[src]

pub fn advance_x(&self) -> isize[src]

pub fn advance_y(&self) -> isize[src]

pub fn format(&self) -> FT_Glyph_Format[src]

An enumeration type used to describe the format of a given glyph image. Note that this version of FreeType only supports two image formats, even though future font drivers will be able to register their own format.

pub fn raw(&self) -> &FT_GlyphRec[src]

Get the underlying c glyph struct (The system actually calls this a GlyphRec because it can be a different struct in different circumstances)

Trait Implementations

impl Drop for Glyph[src]

impl Clone for Glyph[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl !Send for Glyph

impl !Sync for Glyph

Blanket Implementations

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T