[][src]Struct libavif::RgbPixels

pub struct RgbPixels<'a> { /* fields omitted */ }

Implementations

impl<'a> RgbPixels<'a>[src]

pub fn new(width: u32, height: u32, rgb: &'a [u8]) -> Result<Self, Error>[src]

pub fn width(&self) -> u32[src]

width of the image in pixels

pub fn height(&self) -> u32[src]

height of the image in pixels

pub fn pixel(&self, x: u32, y: u32) -> (u8, u8, u8, u8)[src]

pub fn as_slice(&'a self) -> &'a [u8][src]

Extracts a slice containg all of the pixels without doing clones or allocation.

pub fn to_vec(&self) -> Vec<u8>[src]

Converts self into a new vector by cloning all of the pixels.

pub fn to_image(&self, yuv_format: YuvFormat) -> AvifImage[src]

Trait Implementations

impl<'a> Deref for RgbPixels<'a>[src]

type Target = [u8]

The resulting type after dereferencing.

impl<'_> Drop for RgbPixels<'_>[src]

impl<'a, '_> From<&'_ AvifImage> for RgbPixels<'a>[src]

impl<'a> From<AvifImage> for RgbPixels<'a>[src]

impl<'a> From<avifRGBImage> for RgbPixels<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for RgbPixels<'a>

impl<'a> !Send for RgbPixels<'a>

impl<'a> !Sync for RgbPixels<'a>

impl<'a> Unpin for RgbPixels<'a>

impl<'a> UnwindSafe for RgbPixels<'a>

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.