[][src]Struct ndless_freetype::library::Library

pub struct Library { /* fields omitted */ }

Methods

impl Library[src]

pub fn init() -> FtResult<Self>[src]

This function is used to create a new FreeType library instance and add the default modules. It returns a struct encapsulating the freetype library. The library is correctly discarded when the struct is dropped.

pub fn new_face(
    &self,
    path: impl Into<String>,
    face_index: isize
) -> FtResult<Face>
[src]

Open a font file using its pathname. face_index should be 0 if there is only 1 font in the file.

pub fn new_stroker(&self) -> FtResult<Stroker>[src]

pub fn new_memory_face(
    &self,
    buffer: impl Into<Rc<Vec<u8>>>,
    face_index: isize
) -> FtResult<Face>
[src]

Similar to new_face, but loads file data from a byte array in memory

pub fn set_lcd_filter(&self, lcd_filter: LcdFilter) -> FtResult<()>[src]

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

Get the underlying library object

Trait Implementations

impl Drop for Library[src]

Auto Trait Implementations

impl !Send for Library

impl !Sync for Library

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]