read_fonts::tables::bitmap

Type Alias IndexSubtable3

Source
pub type IndexSubtable3<'a> = TableRef<'a, IndexSubtable3Marker>;
Expand description

IndexSubTable3: variable-metrics glyphs with 2-byte offsets.

Aliased Type§

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

Implementations§

Source§

impl<'a> IndexSubtable3<'a>

Source

pub fn index_format(&self) -> u16

Format of this IndexSubTable.

Source

pub fn image_format(&self) -> u16

Format of EBDT image data.

Source

pub fn image_data_offset(&self) -> u32

Offset to image data in EBDT table.

Source

pub fn sbit_offsets(&self) -> &'a [BigEndian<u16>]

Trait Implementations§

Source§

impl<'a> FontRead<'a> for IndexSubtable3<'a>

Source§

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

Read an instance of Self from the provided data, performing validation. Read more