Skip to main content

TextObject

Struct TextObject 

Source
pub struct TextObject {
    pub segments: Box<[TextSegment]>,
    pub position: Point,
    pub matrix: Affine,
    pub font: Option<(Arc<Font>, f32)>,
    pub font_source: Option<ObjRef>,
    pub render_mode: TextRenderMode,
    pub type3_metrics: BTreeMap<u32, Type3Metrics>,
}
Expand description

One run of glyphs sharing a position and a font.

Equality compares the font by identity, as TextState does.

Fields§

§segments: Box<[TextSegment]>

The character codes, split into runs by the adjustments between them.

§position: Point

Where the run starts, in page space.

§matrix: Affine

The matrix glyphs are drawn with, translation excluded.

§font: Option<(Arc<Font>, f32)>

The font and size.

§font_source: Option<ObjRef>

The /Font resource the font came from, for a regenerated stream to name. None for a font loaded from an inline dictionary.

§render_mode: TextRenderMode

How the glyphs are painted.

§type3_metrics: BTreeMap<u32, Type3Metrics>

For a Type 3 font only: what each shown character’s glyph procedure declares about itself, keyed by character code.

A Type 3 glyph has no program to measure — its advance and box come from the d0/d1 operator inside its content stream — so a consumer that needs either has no way to get them from the font alone. The interpreter has already opened those streams, so it records the answer here rather than making every consumer re-interpret them.

Trait Implementations§

Source§

impl Clone for TextObject

Source§

fn clone(&self) -> TextObject

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for TextObject

Source§

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

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

impl PartialEq for TextObject

Source§

fn eq(&self, other: &Self) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more

Auto Trait Implementations§

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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, S> SimdFrom<T, S> for T
where S: Simd,

Source§

fn simd_from(_simd: S, value: T) -> T

Source§

impl<F, T, S> SimdInto<T, S> for F
where T: SimdFrom<F, S>, S: Simd,

Source§

fn simd_into(self, simd: S) -> T

Source§

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

Source§

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>,

Source§

type Error = !

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

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

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

Source§

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.