pub struct OklabScaler { /* private fields */ }Available on crate feature
colorspaces only.Expand description
Converts image to Oklab components scales it and convert back
Implementations§
Source§impl OklabScaler
impl OklabScaler
Sourcepub fn new(
filter: ResamplingFunction,
transfer_function: TransferFunction,
) -> Self
pub fn new( filter: ResamplingFunction, transfer_function: TransferFunction, ) -> Self
§Arguments
transfer_function- Transfer function to move into linear colorspace and back
Source§impl OklabScaler
impl OklabScaler
pub fn set_threading_policy( &mut self, threading_policy: ThreadingPolicy, ) -> Self
pub fn plan_rgb_resampling( &self, source_size: ImageSize, target_size: ImageSize, ) -> Result<Arc<Resampling<u8, 3>>, PicScaleError>
pub fn plan_rgba_resampling( &self, source_size: ImageSize, target_size: ImageSize, premultiply_alpha: bool, ) -> Result<Arc<Resampling<u8, 4>>, PicScaleError>
Trait Implementations§
Source§impl Clone for OklabScaler
impl Clone for OklabScaler
Source§fn clone(&self) -> OklabScaler
fn clone(&self) -> OklabScaler
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for OklabScaler
impl Debug for OklabScaler
impl Copy for OklabScaler
Auto Trait Implementations§
impl Freeze for OklabScaler
impl RefUnwindSafe for OklabScaler
impl Send for OklabScaler
impl Sync for OklabScaler
impl Unpin for OklabScaler
impl UnsafeUnpin for OklabScaler
impl UnwindSafe for OklabScaler
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