Struct freetype::library::Library [] [src]

pub struct Library { /* fields omitted */ }

Methods

impl Library
[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.

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

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

Get the underlying library object

Trait Implementations

impl Drop for Library
[src]

A method called when the value goes out of scope. Read more