pub type Ankr<'a> = TableRef<'a, AnkrMarker>;
Expand description
The anchor point table.
Aliased Type§
struct Ankr<'a> { /* private fields */ }
Implementations§
Source§impl<'a> Ankr<'a>
impl<'a> Ankr<'a>
Sourcepub fn lookup_table_offset(&self) -> Offset32
pub fn lookup_table_offset(&self) -> Offset32
Offset to the table’s lookup table; currently this is always 0x0000000C
.
Lookup values are two byte offsets into the glyph data table.
Sourcepub fn lookup_table(&self) -> Result<LookupU16<'a>, ReadError>
pub fn lookup_table(&self) -> Result<LookupU16<'a>, ReadError>
Attempt to resolve lookup_table_offset
.
Sourcepub fn glyph_data_table_offset(&self) -> u32
pub fn glyph_data_table_offset(&self) -> u32
Offset to the glyph data table.
Source§impl<'a> Ankr<'a>
impl<'a> Ankr<'a>
Sourcepub fn anchor_points(
&self,
glyph_id: GlyphId,
) -> Result<&'a [AnchorPoint], ReadError>
pub fn anchor_points( &self, glyph_id: GlyphId, ) -> Result<&'a [AnchorPoint], ReadError>
Returns the set of anchor points for the given glyph.
Source§impl<'a, T> TableRef<'a, T>
impl<'a, T> TableRef<'a, T>
Sourcepub fn resolve_offset<O: Offset, R: FontRead<'a>>(
&self,
offset: O,
) -> Result<R, ReadError>
pub fn resolve_offset<O: Offset, R: FontRead<'a>>( &self, offset: O, ) -> Result<R, ReadError>
Resolve the provided offset from the start of this table.
Sourcepub fn offset_data(&self) -> FontData<'a>
pub fn offset_data(&self) -> FontData<'a>
Return a reference to this table’s raw data.
We use this in the compile crate to resolve offsets.