Type Alias read_fonts::tables::sbix::Strike

source ·
pub type Strike<'a> = TableRef<'a, StrikeMarker>;
Expand description

Strike header table

Aliased Type§

struct Strike<'a> { /* private fields */ }

Implementations§

source§

impl<'a> Strike<'a>

source

pub fn read(data: FontData<'a>, num_glyphs: u16) -> Result<Self, ReadError>

A constructor that requires additional arguments.

This type requires some external state in order to be parsed.

source§

impl<'a> Strike<'a>

source

pub fn ppem(&self) -> u16

The PPEM size for which this strike was designed.

source

pub fn ppi(&self) -> u16

The device pixel density (in PPI) for which this strike was designed. (E.g., 96 PPI, 192 PPI.)

source

pub fn glyph_data_offsets(&self) -> &'a [BigEndian<u32>]

Offset from the beginning of the strike data header to bitmap data for an individual glyph ID.

source§

impl<'a> Strike<'a>

source

pub fn glyph_data( &self, glyph_id: GlyphId, ) -> Result<Option<GlyphData<'a>>, ReadError>

Trait Implementations§

source§

impl<'a> Debug for Strike<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a> FontReadWithArgs<'a> for Strike<'a>

source§

fn read_with_args(data: FontData<'a>, args: &u16) -> Result<Self, ReadError>

read an item, using the provided args. Read more
source§

impl ReadArgs for Strike<'_>

source§

impl<'a> SomeTable<'a> for Strike<'a>

source§

fn type_name(&self) -> &str

The name of this table
source§

fn get_field(&self, idx: usize) -> Option<Field<'a>>

Access this table’s fields, in declaration order.