pub struct XYZScaler { /* private fields */ }Expand description
Converts image to CIE XYZ components scales it and convert back
Implementations§
Source§impl XYZScaler
impl XYZScaler
pub fn new(filter: ResamplingFunction) -> Self
Available on crate feature
colorspaces only.Source§impl XYZScaler
impl XYZScaler
pub fn set_threading_policy(&mut self, threading_policy: ThreadingPolicy)
Available on crate feature
colorspaces only.pub fn plan_rgb_resampling( &self, source_size: ImageSize, target_size: ImageSize, ) -> Result<Arc<Resampling<u8, 3>>, PicScaleError>
Available on crate feature
colorspaces only.pub fn plan_rgba_resampling( &self, source_size: ImageSize, target_size: ImageSize, premultiply_alpha: bool, ) -> Result<Arc<Resampling<u8, 4>>, PicScaleError>
Available on crate feature
colorspaces only.Trait Implementations§
impl Copy for XYZScaler
Available on crate feature
colorspaces only.Auto Trait Implementations§
impl Freeze for XYZScaler
impl RefUnwindSafe for XYZScaler
impl Send for XYZScaler
impl Sync for XYZScaler
impl Unpin for XYZScaler
impl UnsafeUnpin for XYZScaler
impl UnwindSafe for XYZScaler
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more