Struct skrifa::font::FontRef

source ·
pub struct FontRef<'a> {
    pub table_directory: TableRef<'a, TableDirectoryMarker>,
    /* private fields */
}
Expand description

Reference to an in-memory font.

This is a simple implementation of the TableProvider trait backed by a borrowed slice containing font data.

Fields§

§table_directory: TableRef<'a, TableDirectoryMarker>

Implementations§

source§

impl<'a> FontRef<'a>

source

pub fn new(data: &'a [u8]) -> Result<FontRef<'a>, ReadError>

Creates a new reference to an in-memory font backed by the given data.

The data must be a single font (not a font collection) and must begin with a table directory to be considered valid.

To load a font from a font collection, use FontRef::from_index instead.

source

pub fn from_index(data: &'a [u8], index: u32) -> Result<FontRef<'a>, ReadError>

Creates a new reference to an in-memory font at the specified index backed by the given data.

The data slice must begin with either a table directory or a ttc header to be considered valid.

In other words, this accepts either font collection (ttc) or single font (ttf/otf) files. If a single font file is provided, the index parameter must be 0.

source

pub fn table_data(&self, tag: Tag) -> Option<FontData<'a>>

Returns the data for the table with the specified tag, if present.

Trait Implementations§

source§

impl<'a> Clone for FontRef<'a>

source§

fn clone(&self) -> FontRef<'a>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a> MetadataProvider<'a> for FontRef<'a>

source§

fn attributes(&self) -> Attributes

Returns the primary attributes for font classification– stretch, style and weight.

source§

fn axes(&self) -> AxisCollection<'a>

Returns the collection of variation axes.

source§

fn named_instances(&self) -> NamedInstanceCollection<'a>

Returns the collection of named variation instances.

source§

fn localized_strings(&self, id: StringId) -> LocalizedStrings<'a>

Returns an iterator over the collection of localized strings for the given informational string identifier.

source§

fn metrics(&self, size: Size, location: impl Into<LocationRef<'a>>) -> Metrics

Returns the global font metrics for the specified size and location in normalized variation space.

source§

fn glyph_metrics( &self, size: Size, location: impl Into<LocationRef<'a>>, ) -> GlyphMetrics<'a>

Returns the glyph specific metrics for the specified size and location in normalized variation space.

source§

fn charmap(&self) -> Charmap<'a>

Returns the character to nominal glyph identifier mapping.

source§

fn outline_glyphs(&self) -> OutlineGlyphCollection<'a>

Returns the collection of scalable glyph outlines.

If the font contains multiple outline sources, this method prioritizes glyf, CFF2 and CFF in that order. To select a specific outline source, use the OutlineGlyphCollection::with_format method.

source§

fn color_glyphs(&self) -> ColorGlyphCollection<'a>

source§

impl<'a> TableProvider<'a> for FontRef<'a>

source§

fn data_for_tag(&self, tag: Tag) -> Option<FontData<'a>>

source§

fn expect_data_for_tag(&self, tag: Tag) -> Result<FontData<'a>, ReadError>

source§

fn expect_table<T>(&self) -> Result<T, ReadError>
where T: TopLevelTable + FontRead<'a>,

source§

fn head(&self) -> Result<TableRef<'a, HeadMarker>, ReadError>

source§

fn name(&self) -> Result<TableRef<'a, NameMarker>, ReadError>

source§

fn hhea(&self) -> Result<TableRef<'a, HheaMarker>, ReadError>

source§

fn vhea(&self) -> Result<TableRef<'a, VheaMarker>, ReadError>

source§

fn hmtx(&self) -> Result<TableRef<'a, HmtxMarker>, ReadError>

source§

fn hdmx(&self) -> Result<TableRef<'a, HdmxMarker>, ReadError>

source§

fn vmtx(&self) -> Result<TableRef<'a, VmtxMarker>, ReadError>

source§

fn vorg(&self) -> Result<TableRef<'a, VorgMarker>, ReadError>

source§

fn fvar(&self) -> Result<TableRef<'a, FvarMarker>, ReadError>

source§

fn avar(&self) -> Result<TableRef<'a, AvarMarker>, ReadError>

source§

fn hvar(&self) -> Result<TableRef<'a, HvarMarker>, ReadError>

source§

fn vvar(&self) -> Result<TableRef<'a, VvarMarker>, ReadError>

source§

fn mvar(&self) -> Result<TableRef<'a, MvarMarker>, ReadError>

source§

fn maxp(&self) -> Result<TableRef<'a, MaxpMarker>, ReadError>

source§

fn os2(&self) -> Result<TableRef<'a, Os2Marker>, ReadError>

source§

fn post(&self) -> Result<TableRef<'a, PostMarker>, ReadError>

source§

fn gasp(&self) -> Result<TableRef<'a, GaspMarker>, ReadError>

source§

fn loca(&self, is_long: impl Into<Option<bool>>) -> Result<Loca<'a>, ReadError>

is_long can be optionally provided, if known, otherwise we look it up in head.
source§

fn glyf(&self) -> Result<TableRef<'a, GlyfMarker>, ReadError>

source§

fn gvar(&self) -> Result<TableRef<'a, GvarMarker>, ReadError>

source§

fn cvar(&self) -> Result<TableRef<'a, CvarMarker>, ReadError>

source§

fn cff(&self) -> Result<Cff<'a>, ReadError>

source§

fn cff2(&self) -> Result<Cff2<'a>, ReadError>

source§

fn cmap(&self) -> Result<TableRef<'a, CmapMarker>, ReadError>

source§

fn gdef(&self) -> Result<TableRef<'a, GdefMarker>, ReadError>

source§

fn gpos(&self) -> Result<TableRef<'a, GposMarker>, ReadError>

source§

fn gsub(&self) -> Result<TableRef<'a, GsubMarker>, ReadError>

source§

fn feat(&self) -> Result<TableRef<'a, FeatMarker>, ReadError>

source§

fn ltag(&self) -> Result<TableRef<'a, LtagMarker>, ReadError>

source§

fn ankr(&self) -> Result<TableRef<'a, AnkrMarker>, ReadError>

source§

fn colr(&self) -> Result<TableRef<'a, ColrMarker>, ReadError>

source§

fn cpal(&self) -> Result<TableRef<'a, CpalMarker>, ReadError>

source§

fn cblc(&self) -> Result<TableRef<'a, CblcMarker>, ReadError>

source§

fn cbdt(&self) -> Result<TableRef<'a, CbdtMarker>, ReadError>

source§

fn eblc(&self) -> Result<TableRef<'a, EblcMarker>, ReadError>

source§

fn ebdt(&self) -> Result<TableRef<'a, EbdtMarker>, ReadError>

source§

fn sbix(&self) -> Result<TableRef<'a, SbixMarker>, ReadError>

source§

fn stat(&self) -> Result<TableRef<'a, StatMarker>, ReadError>

source§

fn svg(&self) -> Result<TableRef<'a, SvgMarker>, ReadError>

source§

fn varc(&self) -> Result<TableRef<'a, VarcMarker>, ReadError>

source§

fn ift(&self) -> Result<Ift<'a>, ReadError>

source§

fn iftx(&self) -> Result<Ift<'a>, ReadError>

Auto Trait Implementations§

§

impl<'a> Freeze for FontRef<'a>

§

impl<'a> RefUnwindSafe for FontRef<'a>

§

impl<'a> Send for FontRef<'a>

§

impl<'a> Sync for FontRef<'a>

§

impl<'a> Unpin for FontRef<'a>

§

impl<'a> UnwindSafe for FontRef<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.