Struct resize::Resizer[][src]

pub struct Resizer<Format: PixelFormat> { /* fields omitted */ }

Resampler with preallocated buffers and coeffecients for the given dimensions and filter type.

Implementations

impl<Format: PixelFormat> Resizer<Format>[src]

pub fn new(
    source_width: usize,
    source_heigth: usize,
    dest_width: usize,
    dest_height: usize,
    pixel_format: Format,
    filter_type: Type
) -> Result<Self>
[src]

Create a new resizer instance.

impl<Format: PixelFormat> Resizer<Format>[src]

pub fn resize(
    &mut self,
    src: &[Format::InputPixel],
    dst: &mut [Format::OutputPixel]
) -> Result<()>
[src]

Resize src image data into dst.

pub fn resize_stride(
    &mut self,
    src: &[Format::InputPixel],
    src_stride: usize,
    dst: &mut [Format::OutputPixel]
) -> Result<()>
[src]

Resize src image data into dst, skipping stride pixels each row.

Trait Implementations

impl<Format: Debug + PixelFormat> Debug for Resizer<Format> where
    Format::Accumulator: Debug
[src]

Auto Trait Implementations

impl<Format> RefUnwindSafe for Resizer<Format> where
    Format: RefUnwindSafe,
    <Format as PixelFormat>::Accumulator: RefUnwindSafe

impl<Format> Send for Resizer<Format> where
    Format: Send,
    <Format as PixelFormat>::Accumulator: Send

impl<Format> Sync for Resizer<Format> where
    Format: Sync,
    <Format as PixelFormat>::Accumulator: Sync

impl<Format> Unpin for Resizer<Format> where
    Format: Unpin,
    <Format as PixelFormat>::Accumulator: Unpin

impl<Format> UnwindSafe for Resizer<Format> where
    Format: UnwindSafe,
    <Format as PixelFormat>::Accumulator: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.