read_fonts::tables::bitmap

Type Alias IndexSubtable1

Source
pub type IndexSubtable1<'a> = TableRef<'a, IndexSubtable1Marker>;
Expand description

IndexSubTable1: variable-metrics glyphs with 4-byte offsets.

Aliased Type§

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

Implementations§

Source§

impl<'a> IndexSubtable1<'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<u32>]

Trait Implementations§

Source§

impl<'a> FontRead<'a> for IndexSubtable1<'a>

Source§

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

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