[][src]Struct printpdf::types::plugins::graphics::xobject::SMask

pub struct SMask {
    pub width: i64,
    pub height: i64,
    pub interpolate: bool,
    pub bits_per_component: i64,
    pub matte: Vec<i64>,
}

SMask dictionary. A soft mask (or SMask) is a greyscale image that is used to mask another image

Fields

width: i64

If self.matte is set to true, this entry must be the same width as the parent image. If not, the SMask is resampled to the parent unit square

height: i64

See width

interpolate: boolbits_per_component: i64

Bits per component, required (warning: this is a grayscale image)

matte: Vec<i64>

Vec of component values

Trait Implementations

impl Debug for SMask[src]

Auto Trait Implementations

impl Unpin for SMask

impl Sync for SMask

impl Send for SMask

impl UnwindSafe for SMask

impl RefUnwindSafe for SMask

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.