[][src]Struct tiny_skia::PixmapRef

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

A container that references premultiplied RGBA pixels.

Can be created from Pixmap or from a user provided data.

The data is not aligned, therefore width == stride.

Implementations

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

pub fn from_bytes(data: &'a [u8], width: u32, height: u32) -> Option<Self>[src]

Creates a new PixmapRef from bytes.

The size must be at least size.width() * size.height() * BYTES_PER_PIXEL. Zero size in an error. Width is limited by i32::MAX/4.

The data is assumed to have premultiplied RGBA pixels (byteorder: ABGR).

pub fn to_owned(&self) -> Pixmap[src]

Creates a new Pixmap from the current data.

Clones the underlying data.

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

Returns pixmap's width.

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

Returns pixmap's height.

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

Returns the internal data.

Bytes are ordered as RGBA.

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

Returns a pixel color.

Returns None when position is out of bounds.

pub fn pixels(&self) -> &'a [PremultipliedColorU8][src]

Returns a slice of pixels.

pub fn clone_rect(&self, rect: IntRect) -> Option<Pixmap>[src]

Returns a copy of the pixmap that intersects the rect.

Returns None when Pixmap's rect doesn't contain rect.

Trait Implementations

impl<'a> Clone for PixmapRef<'a>[src]

impl<'a> Copy for PixmapRef<'a>[src]

impl Debug for PixmapRef<'_>[src]

impl<'a> PartialEq<PixmapRef<'a>> for PixmapRef<'a>[src]

impl<'a> StructuralPartialEq for PixmapRef<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for PixmapRef<'a>[src]

impl<'a> Send for PixmapRef<'a>[src]

impl<'a> Sync for PixmapRef<'a>[src]

impl<'a> Unpin for PixmapRef<'a>[src]

impl<'a> UnwindSafe for PixmapRef<'a>[src]

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.