pub struct JzazbzScaler { /* private fields */ }Expand description
Converts image to Jzazbz components scales it and convert back
Implementations§
Source§impl JzazbzScaler
impl JzazbzScaler
Sourcepub fn new(
filter: ResamplingFunction,
display_luminance: f32,
transfer_function: TransferFunction,
) -> Self
Available on crate feature colorspaces only.
pub fn new( filter: ResamplingFunction, display_luminance: f32, transfer_function: TransferFunction, ) -> Self
colorspaces only.§Arguments
transfer_function- Transfer function to move into linear colorspace and backdisplay_luminance- Display luminance for Jzazbz
Trait Implementations§
Source§impl Clone for JzazbzScaler
Available on crate feature colorspaces only.
impl Clone for JzazbzScaler
Available on crate feature
colorspaces only.Source§fn clone(&self) -> JzazbzScaler
fn clone(&self) -> JzazbzScaler
Returns a duplicate 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 JzazbzScaler
Available on crate feature colorspaces only.
impl Debug for JzazbzScaler
Available on crate feature
colorspaces only.Source§impl Scaling for JzazbzScaler
Available on crate feature colorspaces only.
impl Scaling for JzazbzScaler
Available on crate feature
colorspaces only.Source§fn set_threading_policy(&mut self, threading_policy: ThreadingPolicy)
fn set_threading_policy(&mut self, threading_policy: ThreadingPolicy)
Sets threading policy Read more
Source§fn resize_plane<'a>(
&'a self,
_: &ImageStore<'a, u8, 1>,
_: &mut ImageStoreMut<'a, u8, 1>,
) -> Result<(), PicScaleError>
fn resize_plane<'a>( &'a self, _: &ImageStore<'a, u8, 1>, _: &mut ImageStoreMut<'a, u8, 1>, ) -> Result<(), PicScaleError>
Performs rescaling for planar image Read more
Source§fn resize_cbcr8<'a>(
&'a self,
_: &ImageStore<'a, u8, 2>,
_: &mut ImageStoreMut<'a, u8, 2>,
) -> Result<(), PicScaleError>
fn resize_cbcr8<'a>( &'a self, _: &ImageStore<'a, u8, 2>, _: &mut ImageStoreMut<'a, u8, 2>, ) -> Result<(), PicScaleError>
Performs rescaling for CbCr8 ( or 2 interleaved channels ) Read more
Source§fn resize_gray_alpha<'a>(
&'a self,
_: &ImageStore<'a, u8, 2>,
_: &mut ImageStoreMut<'a, u8, 2>,
_: bool,
) -> Result<(), PicScaleError>
fn resize_gray_alpha<'a>( &'a self, _: &ImageStore<'a, u8, 2>, _: &mut ImageStoreMut<'a, u8, 2>, _: bool, ) -> Result<(), PicScaleError>
Performs rescaling for Gray Alpha ( or 2 interleaved channels with aloha ) Read more
Source§fn resize_rgb<'a>(
&'a self,
store: &ImageStore<'a, u8, 3>,
into: &mut ImageStoreMut<'a, u8, 3>,
) -> Result<(), PicScaleError>
fn resize_rgb<'a>( &'a self, store: &ImageStore<'a, u8, 3>, into: &mut ImageStoreMut<'a, u8, 3>, ) -> Result<(), PicScaleError>
Performs rescaling for RGB, channel order does not matter Read more
Source§fn resize_rgba<'a>(
&'a self,
store: &ImageStore<'a, u8, 4>,
into: &mut ImageStoreMut<'a, u8, 4>,
premultiply_alpha: bool,
) -> Result<(), PicScaleError>
fn resize_rgba<'a>( &'a self, store: &ImageStore<'a, u8, 4>, into: &mut ImageStoreMut<'a, u8, 4>, premultiply_alpha: bool, ) -> Result<(), PicScaleError>
Performs rescaling for RGBA Read more
impl Copy for JzazbzScaler
Available on crate feature
colorspaces only.Auto Trait Implementations§
impl Freeze for JzazbzScaler
impl RefUnwindSafe for JzazbzScaler
impl Send for JzazbzScaler
impl Sync for JzazbzScaler
impl Unpin for JzazbzScaler
impl UnwindSafe for JzazbzScaler
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