Type Alias read_fonts::tables::glyf::CompositeGlyph

source ·
pub type CompositeGlyph<'a> = TableRef<'a, CompositeGlyphMarker>;
Expand description

Aliased Type§

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

Implementations§

source§

impl<'a> CompositeGlyph<'a>

source

pub fn number_of_contours(&self) -> i16

If the number of contours is greater than or equal to zero, this is a simple glyph. If negative, this is a composite glyph — the value -1 should be used for composite glyphs.

source

pub fn x_min(&self) -> i16

Minimum x for coordinate data.

source

pub fn y_min(&self) -> i16

Minimum y for coordinate data.

source

pub fn x_max(&self) -> i16

Maximum x for coordinate data.

source

pub fn y_max(&self) -> i16

Maximum y for coordinate data.

source

pub fn component_data(&self) -> &'a [u8]

component flag glyph index of component

source§

impl<'a> CompositeGlyph<'a>

source

pub fn components(&self) -> impl Iterator<Item = Component> + 'a + Clone

Returns an iterator over the components of the composite glyph.

source

pub fn component_glyphs_and_flags( &self, ) -> impl Iterator<Item = (GlyphId16, CompositeGlyphFlags)> + 'a + Clone

Returns an iterator that yields the glyph identifier and flags of each component in the composite glyph.

source

pub fn count_and_instructions(&self) -> (usize, Option<&'a [u8]>)

Returns the component count and TrueType interpreter instructions in a single pass.

source

pub fn instructions(&self) -> Option<&'a [u8]>

Returns the TrueType interpreter instructions.

Trait Implementations§

source§

impl<'a> Debug for CompositeGlyph<'a>

source§

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

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

impl<'a> FontRead<'a> for CompositeGlyph<'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 CompositeGlyph<'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.