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>
impl<'a> FontRef<'a>
sourcepub fn new(data: &'a [u8]) -> Result<FontRef<'a>, ReadError>
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 slice must begin with a table directory to be considered valid.
sourcepub fn from_index(data: &'a [u8], index: u32) -> Result<FontRef<'a>, ReadError>
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.
sourcepub fn table_data(&self, tag: Tag) -> Option<FontData<'a>>
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> TableProvider<'a> for FontRef<'a>
impl<'a> TableProvider<'a> for FontRef<'a>
fn data_for_tag(&self, tag: Tag) -> Option<FontData<'a>>
fn expect_data_for_tag(&self, tag: Tag) -> Result<FontData<'a>, ReadError>
fn expect_table<T>(&self) -> Result<T, ReadError>where T: TopLevelTable + FontRead<'a>,
fn head(&self) -> Result<TableRef<'a, HeadMarker>, ReadError>
fn name(&self) -> Result<TableRef<'a, NameMarker>, ReadError>
fn hhea(&self) -> Result<TableRef<'a, HheaMarker>, ReadError>
fn vhea(&self) -> Result<TableRef<'a, VheaMarker>, ReadError>
fn hmtx(&self) -> Result<TableRef<'a, HmtxMarker>, ReadError>
fn vmtx(&self) -> Result<TableRef<'a, VmtxMarker>, ReadError>
fn fvar(&self) -> Result<TableRef<'a, FvarMarker>, ReadError>
fn avar(&self) -> Result<TableRef<'a, AvarMarker>, ReadError>
fn hvar(&self) -> Result<TableRef<'a, HvarMarker>, ReadError>
fn vvar(&self) -> Result<TableRef<'a, VvarMarker>, ReadError>
fn mvar(&self) -> Result<TableRef<'a, MvarMarker>, ReadError>
fn maxp(&self) -> Result<TableRef<'a, MaxpMarker>, ReadError>
fn os2(&self) -> Result<TableRef<'a, Os2Marker>, ReadError>
fn post(&self) -> Result<TableRef<'a, PostMarker>, ReadError>
source§fn loca(&self, is_long: impl Into<Option<bool>>) -> Result<Loca<'a>, ReadError>
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.
fn glyf(&self) -> Result<TableRef<'a, GlyfMarker>, ReadError>
fn gvar(&self) -> Result<TableRef<'a, GvarMarker>, ReadError>
fn cff(&self) -> Result<Cff<'a>, ReadError>
fn cff2(&self) -> Result<Cff2<'a>, ReadError>
fn cmap(&self) -> Result<TableRef<'a, CmapMarker>, ReadError>
fn gdef(&self) -> Result<TableRef<'a, GdefMarker>, ReadError>
fn gpos(&self) -> Result<TableRef<'a, GposMarker>, ReadError>
fn gsub(&self) -> Result<TableRef<'a, GsubMarker>, ReadError>
fn colr(&self) -> Result<TableRef<'a, ColrMarker>, ReadError>
fn cpal(&self) -> Result<TableRef<'a, CpalMarker>, ReadError>
fn stat(&self) -> Result<TableRef<'a, StatMarker>, ReadError>
Auto Trait Implementations§
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> 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<'a, T> MetadataProvider<'a> for Twhere
T: TableProvider<'a>,
impl<'a, T> MetadataProvider<'a> for Twhere T: TableProvider<'a>,
source§fn attributes(&self) -> Attributes
fn attributes(&self) -> Attributes
Returns the primary attributes for font classification– stretch,
style and weight.
source§fn axes(&self) -> AxisCollection<'a>
fn axes(&self) -> AxisCollection<'a>
Returns the collection of variation axes.
source§fn named_instances(&self) -> NamedInstanceCollection<'a>
fn named_instances(&self) -> NamedInstanceCollection<'a>
Returns the collection of named variation instances.
source§fn localized_strings(&self, id: StringId) -> LocalizedStrings<'a> ⓘ
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
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>
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.