pub unsafe trait CIBicubicScaleTransform: CIFilterProtocol {
// Provided methods
unsafe fn inputImage(&self) -> Option<Retained<CIImage>>
where Self: Sized + Message { ... }
unsafe fn setInputImage(&self, input_image: Option<&CIImage>)
where Self: Sized + Message { ... }
unsafe fn scale(&self) -> c_float
where Self: Sized + Message { ... }
unsafe fn setScale(&self, scale: c_float)
where Self: Sized + Message { ... }
unsafe fn aspectRatio(&self) -> c_float
where Self: Sized + Message { ... }
unsafe fn setAspectRatio(&self, aspect_ratio: c_float)
where Self: Sized + Message { ... }
unsafe fn parameterB(&self) -> c_float
where Self: Sized + Message { ... }
unsafe fn setParameterB(&self, parameter_b: c_float)
where Self: Sized + Message { ... }
unsafe fn parameterC(&self) -> c_float
where Self: Sized + Message { ... }
unsafe fn setParameterC(&self, parameter_c: c_float)
where Self: Sized + Message { ... }
}CIFilter and CIFilterBuiltins only.Expand description
The protocol for the Bicubic Scale Transform filter.
Produces a high-quality, scaled version of a source image. The parameters of B and C for this filter determine the sharpness or softness of the resampling. The most commonly used B and C values are 0.0 and 0.75, respectively.
See also Apple’s documentation
Provided Methods§
Sourceunsafe fn inputImage(&self) -> Option<Retained<CIImage>>
Available on crate feature CIImage only.
unsafe fn inputImage(&self) -> Option<Retained<CIImage>>
CIImage only.The image to use as an input for the effect.
Sourceunsafe fn setInputImage(&self, input_image: Option<&CIImage>)
Available on crate feature CIImage only.
unsafe fn setInputImage(&self, input_image: Option<&CIImage>)
CIImage only.Setter for inputImage.
Sourceunsafe fn scale(&self) -> c_float
unsafe fn scale(&self) -> c_float
The scaling factor to use on the image. Values less than 1.0 scale down the images. Values greater than 1.0 scale up the image.
Sourceunsafe fn aspectRatio(&self) -> c_float
unsafe fn aspectRatio(&self) -> c_float
The additional horizontal scaling factor to use on the image.
Sourceunsafe fn setAspectRatio(&self, aspect_ratio: c_float)
unsafe fn setAspectRatio(&self, aspect_ratio: c_float)
Setter for aspectRatio.
Sourceunsafe fn parameterB(&self) -> c_float
unsafe fn parameterB(&self) -> c_float
Specifies the value of B to use for the cubic resampling function.
Sourceunsafe fn setParameterB(&self, parameter_b: c_float)
unsafe fn setParameterB(&self, parameter_b: c_float)
Setter for parameterB.
Sourceunsafe fn parameterC(&self) -> c_float
unsafe fn parameterC(&self) -> c_float
Specifies the value of C to use for the cubic resampling function.
Sourceunsafe fn setParameterC(&self, parameter_c: c_float)
unsafe fn setParameterC(&self, parameter_c: c_float)
Setter for parameterC.