Enum font_kit::hinting::HintingOptions

source ·
pub enum HintingOptions {
    None,
    Vertical(f32),
    VerticalSubpixel(f32),
    Full(f32),
}
Expand description

Specifies how hinting (grid fitting) is to be performed (or not performed) for a glyph.

This affects both outlines and rasterization.

Variants§

§

None

No hinting is performed unless absolutely necessary to assemble the glyph.

This corresponds to what macOS and FreeType in its “no hinting” mode do.

§

Vertical(f32)

Hinting is performed only in the vertical direction. The specified point size is used for grid fitting.

This corresponds to what DirectWrite and FreeType in its light hinting mode do.

§

VerticalSubpixel(f32)

Hinting is performed only in the vertical direction, and further tweaks are applied to make subpixel antialiasing look better. The specified point size is used for grid fitting.

This matches DirectWrite, GDI in its ClearType mode, and FreeType in its LCD hinting mode.

§

Full(f32)

Hinting is performed in both horizontal and vertical directions. The specified point size is used for grid fitting.

This corresponds to what GDI in non-ClearType modes and FreeType in its normal hinting mode do.

Implementations§

source§

impl HintingOptions

source

pub fn grid_fitting_size(&self) -> Option<f32>

Returns the point size that will be used for grid fitting, if any.

Trait Implementations§

source§

impl Clone for HintingOptions

source§

fn clone(&self) -> HintingOptions

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 Debug for HintingOptions

source§

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

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

impl PartialEq for HintingOptions

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for HintingOptions

source§

impl StructuralPartialEq for HintingOptions

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