[][src]Enum lodepng::Image

pub enum Image {
    RawData(Bitmap<u8>),
    Grey(Bitmap<Grey<u8>>),
    Grey16(Bitmap<Grey<u16>>),
    GreyAlpha(Bitmap<GreyAlpha<u8>>),
    GreyAlpha16(Bitmap<GreyAlpha<u16>>),
    RGBA(Bitmap<RGBA>),
    RGB(Bitmap<RGB<u8>>),
    RGBA16(Bitmap<RGBA<u16>>),
    RGB16(Bitmap<RGB<u16>>),
}

Bitmap types.

Images with >=8bpp are stored with pixel per vec element. Images with <8bpp are represented as a bunch of bytes, with multiple pixels per byte.

Variants

RawData(Bitmap<u8>)

Bytes of the image. See bpp how many pixels per element there are

Grey(Bitmap<Grey<u8>>)
Grey16(Bitmap<Grey<u16>>)
GreyAlpha(Bitmap<GreyAlpha<u8>>)
GreyAlpha16(Bitmap<GreyAlpha<u16>>)
RGBA(Bitmap<RGBA>)
RGB(Bitmap<RGB<u8>>)
RGBA16(Bitmap<RGBA<u16>>)
RGB16(Bitmap<RGB<u16>>)

Trait Implementations

impl Debug for Image[src]

Auto Trait Implementations

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.