pub struct Font { /* private fields */ }Expand description
A font that contains the printpdf object font needed to render text and the freetype font needed to measure text.
Implementations§
Source§impl Font
impl Font
Sourcepub fn from_file<P: AsRef<Path>>(
path: P,
library: &Library,
document: &mut Document,
) -> Result<Font>
pub fn from_file<P: AsRef<Path>>( path: P, library: &Library, document: &mut Document, ) -> Result<Font>
Creates a font from a path to a file.
Sourcepub fn from_bytes(
bytes: &[u8],
library: &Library,
document: &mut Document,
) -> Result<Font>
pub fn from_bytes( bytes: &[u8], library: &Library, document: &mut Document, ) -> Result<Font>
Creates a font from a byte array.
Sourcepub fn char_width(&self, c: char, scale: Pt) -> Pt
pub fn char_width(&self, c: char, scale: Pt) -> Pt
Computes the width of a char of the font at a specified size.
Sourcepub fn text_width(&self, text: &str, scale: Pt) -> Pt
pub fn text_width(&self, text: &str, scale: Pt) -> Pt
Computes the text width of the font at a specified size.
Sourcepub fn printpdf(&self) -> &IndirectFontRef
pub fn printpdf(&self) -> &IndirectFontRef
Returns a reference to the printpdf font.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Font
impl RefUnwindSafe for Font
impl !Send for Font
impl !Sync for Font
impl Unpin for Font
impl UnwindSafe for Font
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more