Type Alias TTCHeader

Source
pub type TTCHeader<'a> = TableRef<'a, TTCHeaderMarker>;
Expand description

Aliased Type§

pub struct TTCHeader<'a> {
    pub(crate) shape: TTCHeaderMarker,
    pub(crate) data: FontData<'a>,
}

Fields§

§shape: TTCHeaderMarker§data: FontData<'a>

Implementations§

Source§

impl<'a> TTCHeader<'a>

Source

pub fn ttc_tag(&self) -> Tag

Font Collection ID string: "ttcf"

Source

pub fn version(&self) -> MajorMinor

Major/minor version of the TTC Header

Source

pub fn num_fonts(&self) -> u32

Number of fonts in TTC

Source

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

Array of offsets to the TableDirectory for each font from the beginning of the file

Source

pub fn dsig_tag(&self) -> Option<u32>

Tag indicating that a DSIG table exists, 0x44534947 (‘DSIG’) (null if no signature)

Source

pub fn dsig_length(&self) -> Option<u32>

The length (in bytes) of the DSIG table (null if no signature)

Source

pub fn dsig_offset(&self) -> Option<u32>

The offset (in bytes) of the DSIG table from the beginning of the TTC file (null if no signature)

Trait Implementations§

Source§

impl<'a> Debug for TTCHeader<'a>

Source§

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

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

impl<'a> FontRead<'a> for TTCHeader<'a>

Source§

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

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

impl<'a> SomeTable<'a> for TTCHeader<'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.