Struct fast_image_resize::images::Image

source ·
pub struct Image<'a> { /* private fields */ }
Expand description

Simple dynamic container of image data that provides IntoImageView and IntoImageViewMut.

Implementations§

source§

impl Image<'static>

source

pub fn new(width: u32, height: u32, pixel_type: PixelType) -> Self

Create an empty image with given dimensions and pixel type.

source

pub fn from_vec_u8( width: u32, height: u32, buffer: Vec<u8>, pixel_type: PixelType, ) -> Result<Self, ImageBufferError>

Create an image from vector with pixels data.

source§

impl<'a> Image<'a>

source

pub fn from_slice_u8( width: u32, height: u32, buffer: &'a mut [u8], pixel_type: PixelType, ) -> Result<Self, ImageBufferError>

Create an image with from slice with pixels data.

source

pub fn pixel_type(&self) -> PixelType

source

pub fn width(&self) -> u32

source

pub fn height(&self) -> u32

source

pub fn buffer(&self) -> &[u8]

Buffer with image pixels data.

source

pub fn buffer_mut(&mut self) -> &mut [u8]

Mutable buffer with image pixels data.

source

pub fn into_vec(self) -> Vec<u8>

source

pub fn copy(&self) -> Image<'static>

Creates a copy of the image.

source

pub fn typed_image<P: InnerPixel>(&self) -> Option<TypedImageRef<'_, P>>

Get the typed version of the image.

source

pub fn typed_image_mut<P: InnerPixel>(&mut self) -> Option<TypedImage<'_, P>>

Get the typed mutable version of the image.

Trait Implementations§

source§

impl<'a> Debug for Image<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a> IntoImageView for Image<'a>

source§

fn pixel_type(&self) -> Option<PixelType>

Returns pixel’s type of the image.
source§

fn width(&self) -> u32

source§

fn height(&self) -> u32

source§

fn image_view<P: PixelTrait>(&self) -> Option<impl ImageView<Pixel = P>>

source§

impl<'a> IntoImageViewMut for Image<'a>

source§

fn image_view_mut<P: PixelTrait>( &mut self, ) -> Option<impl ImageViewMut<Pixel = P>>

Auto Trait Implementations§

§

impl<'a> Freeze for Image<'a>

§

impl<'a> RefUnwindSafe for Image<'a>

§

impl<'a> Send for Image<'a>

§

impl<'a> Sync for Image<'a>

§

impl<'a> Unpin for Image<'a>

§

impl<'a> !UnwindSafe for Image<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.