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>>),
}
Expand description

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

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.