pub struct LinearScaler { /* private fields */ }Expand description
Converts image to linear f32 components scales it and convert back. This is more precise and slower than scaling in linear u8 If you want just scale faster use LinearApproxScaler
Implementations§
Source§impl LinearScaler
impl LinearScaler
Sourcepub fn new(filter: ResamplingFunction) -> Self
pub fn new(filter: ResamplingFunction) -> Self
Creates new instance with sRGB transfer function
Sourcepub fn new_with_transfer(
filter: ResamplingFunction,
transfer_function: TransferFunction,
) -> Self
pub fn new_with_transfer( filter: ResamplingFunction, transfer_function: TransferFunction, ) -> Self
Creates new instance with requested transfer function
Trait Implementations§
Source§impl Clone for LinearScaler
impl Clone for LinearScaler
Source§fn clone(&self) -> LinearScaler
fn clone(&self) -> LinearScaler
Returns a copy of the value. Read more
1.0.0 · 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 LinearScaler
impl Debug for LinearScaler
Source§impl Scaling for LinearScaler
impl Scaling for LinearScaler
fn set_threading_policy(&mut self, threading_policy: ThreadingPolicy)
Source§fn resize_rgb(
&self,
new_size: ImageSize,
store: ImageStore<'_, u8, 3>,
) -> Result<ImageStore<'_, u8, 3>, PicScaleError>
fn resize_rgb( &self, new_size: ImageSize, store: ImageStore<'_, u8, 3>, ) -> Result<ImageStore<'_, u8, 3>, PicScaleError>
Performs rescaling for RGB, channel order does not matter
Source§fn resize_rgba<'a>(
&'a self,
new_size: ImageSize,
store: ImageStore<'a, u8, 4>,
premultiply_alpha: bool,
) -> Result<ImageStore<'a, u8, 4>, PicScaleError>
fn resize_rgba<'a>( &'a self, new_size: ImageSize, store: ImageStore<'a, u8, 4>, premultiply_alpha: bool, ) -> Result<ImageStore<'a, u8, 4>, PicScaleError>
Performs rescaling for RGBA, for pre-multiplying alpha, converting to LUV or LAB alpha must be last channel
impl Copy for LinearScaler
Auto Trait Implementations§
impl Freeze for LinearScaler
impl RefUnwindSafe for LinearScaler
impl Send for LinearScaler
impl Sync for LinearScaler
impl Unpin for LinearScaler
impl UnwindSafe for LinearScaler
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)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