Struct ttf_parser::colr::Table

source ·
pub struct Table<'a> {
Show 13 fields pub(crate) palettes: Table<'a>, data: &'a [u8], version: u8, base_glyphs: LazyArray16<'a, BaseGlyphRecord>, layers: LazyArray16<'a, LayerRecord>, base_glyph_paints_offset: Offset32, base_glyph_paints: LazyArray32<'a, BaseGlyphPaintRecord>, layer_paint_offsets_offset: Offset32, layer_paint_offsets: LazyArray32<'a, Offset32>, clip_list_offsets_offset: Offset32, clip_list: ClipList<'a>, var_index_map: Option<DeltaSetIndexMap<'a>>, item_variation_store: Option<ItemVariationStore<'a>>,
}
Expand description

A Color Table.

Currently, only version 0 is supported.

Fields§

§palettes: Table<'a>§data: &'a [u8]§version: u8§base_glyphs: LazyArray16<'a, BaseGlyphRecord>§layers: LazyArray16<'a, LayerRecord>§base_glyph_paints_offset: Offset32§base_glyph_paints: LazyArray32<'a, BaseGlyphPaintRecord>§layer_paint_offsets_offset: Offset32§layer_paint_offsets: LazyArray32<'a, Offset32>§clip_list_offsets_offset: Offset32§clip_list: ClipList<'a>§var_index_map: Option<DeltaSetIndexMap<'a>>§item_variation_store: Option<ItemVariationStore<'a>>

Implementations§

source§

impl<'a> Table<'a>

source

pub fn parse(palettes: Table<'a>, data: &'a [u8]) -> Option<Self>

Parses a table from raw data.

source

pub fn is_simple(&self) -> bool

Returns true if the current table has version 0.

A simple table can only emit outline_glyph and paint Painter methods.

source

fn get_v0(&self, glyph_id: GlyphId) -> Option<BaseGlyphRecord>

source

fn get_v1(&self, glyph_id: GlyphId) -> Option<BaseGlyphPaintRecord>

source

fn variation_data(&self) -> VariationData<'a>

source

pub fn contains(&self, glyph_id: GlyphId) -> bool

Whether the table contains a definition for the given glyph.

source

pub fn clip_box( &self, glyph_id: GlyphId, coords: &[NormalizedCoordinate], ) -> Option<ClipBox>

Returns the clip box for a glyph.

source

pub fn paint( &self, glyph_id: GlyphId, palette: u16, painter: &mut dyn Painter<'a>, coords: &[NormalizedCoordinate], foreground_color: RgbaColor, ) -> Option<()>

Paints the color glyph.

source

fn paint_impl( &self, glyph_id: GlyphId, palette: u16, painter: &mut dyn Painter<'a>, recusion_stack: &mut RecursionStack, coords: &[NormalizedCoordinate], foreground_color: RgbaColor, ) -> Option<()>

source

fn paint_v0( &self, base: BaseGlyphRecord, palette: u16, painter: &mut dyn Painter<'_>, foreground_color: RgbaColor, ) -> Option<()>

source

fn paint_v1( &self, base: BaseGlyphPaintRecord, palette: u16, painter: &mut dyn Painter<'a>, recursion_stack: &mut RecursionStack, coords: &[NormalizedCoordinate], foreground_color: RgbaColor, ) -> Option<()>

source

fn parse_paint( &self, offset: usize, palette: u16, painter: &mut dyn Painter<'a>, recursion_stack: &mut RecursionStack, coords: &[NormalizedCoordinate], foreground_color: RgbaColor, ) -> Option<()>

source

fn parse_paint_impl( &self, offset: usize, palette: u16, painter: &mut dyn Painter<'a>, recursion_stack: &mut RecursionStack, s: &mut Stream<'_>, format: u8, coords: &[NormalizedCoordinate], foreground_color: RgbaColor, ) -> Option<()>

source

fn parse_color_line( &self, offset: usize, foreground_color: RgbaColor, ) -> Option<NonVarColorLine<'a>>

source

fn parse_var_color_line( &self, offset: usize, foreground_color: RgbaColor, ) -> Option<VarColorLine<'a>>

Trait Implementations§

source§

impl<'a> Clone for Table<'a>

source§

fn clone(&self) -> Table<'a>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a> Debug for Table<'a>

source§

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

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

impl<'a> Copy for Table<'a>

Auto Trait Implementations§

§

impl<'a> Freeze for Table<'a>

§

impl<'a> RefUnwindSafe for Table<'a>

§

impl<'a> Send for Table<'a>

§

impl<'a> Sync for Table<'a>

§

impl<'a> Unpin for Table<'a>

§

impl<'a> UnwindSafe for Table<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.