pub struct CompositeOptions {
pub x: Vec<i32>,
pub y: Vec<i32>,
pub compositing_space: Interpretation,
pub premultiplied: bool,
}Expand description
Options for composite operation
Fields§
§x: Vec<i32>x: Vec<i32> -> Array of x coordinates to join at
y: Vec<i32>y: Vec<i32> -> Array of y coordinates to join at
compositing_space: Interpretationcompositing_space: Interpretation -> Composite images in this colour space
Error -> VIPS_INTERPRETATION_ERROR = -1
Multiband -> VIPS_INTERPRETATION_MULTIBAND = 0
BW -> VIPS_INTERPRETATION_B_W = 1
Histogram -> VIPS_INTERPRETATION_HISTOGRAM = 10
Xyz -> VIPS_INTERPRETATION_XYZ = 12
Lab -> VIPS_INTERPRETATION_LAB = 13
Cmyk -> VIPS_INTERPRETATION_CMYK = 15
Labq -> VIPS_INTERPRETATION_LABQ = 16
Rgb -> VIPS_INTERPRETATION_RGB = 17
Cmc -> VIPS_INTERPRETATION_CMC = 18
Lch -> VIPS_INTERPRETATION_LCH = 19
Lab -> VIPS_INTERPRETATION_LABS = 21
Srgb -> VIPS_INTERPRETATION_sRGB = 22 [DEFAULT]
Yxy -> VIPS_INTERPRETATION_YXY = 23
Fourier -> VIPS_INTERPRETATION_FOURIER = 24
Rgb16 -> VIPS_INTERPRETATION_RGB16 = 25
Grey16 -> VIPS_INTERPRETATION_GREY16 = 26
Matrix -> VIPS_INTERPRETATION_MATRIX = 27
Scrgb -> VIPS_INTERPRETATION_scRGB = 28
Hsv -> VIPS_INTERPRETATION_HSV = 29
Last -> VIPS_INTERPRETATION_LAST = 30
premultiplied: boolpremultiplied: bool -> Images have premultiplied alpha
default: false
Trait Implementations§
Source§impl Clone for CompositeOptions
impl Clone for CompositeOptions
Source§fn clone(&self) -> CompositeOptions
fn clone(&self) -> CompositeOptions
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more