[][src]Struct libvips::ops::IccTransformOptions

pub struct IccTransformOptions {
    pub pcs: PCS,
    pub intent: Intent,
    pub embedded: bool,
    pub input_profile: String,
    pub depth: i32,
}

Options for icc_transform operation

Fields

pcs: PCS

pcs: PCS -> Set Profile Connection Space Lab -> VIPS_PCS_LAB = 0 [DEFAULT] Xyz -> VIPS_PCS_XYZ = 1 Last -> VIPS_PCS_LAST = 2

intent: Intent

intent: Intent -> Rendering intent Perceptual -> VIPS_INTENT_PERCEPTUAL = 0 Relative -> VIPS_INTENT_RELATIVE = 1 [DEFAULT] Saturation -> VIPS_INTENT_SATURATION = 2 Absolute -> VIPS_INTENT_ABSOLUTE = 3 Last -> VIPS_INTENT_LAST = 4

embedded: bool

embedded: bool -> Use embedded input profile, if available default: false

input_profile: String

input_profile: String -> Filename to load input profile from

depth: i32

depth: i32 -> Output device space depth in bits min: 8, max: 16, default: 8

Trait Implementations

impl Clone for IccTransformOptions[src]

impl Debug for IccTransformOptions[src]

impl Default for IccTransformOptions[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.