Type Alias image::buffer_::GrayAlpha16Image

source ·
pub(crate) type GrayAlpha16Image = ImageBuffer<LumaA<u16>, Vec<u16>>;
Expand description

Sendable 16-bit grayscale + alpha channel image buffer

Aliased Type§

struct GrayAlpha16Image {
    width: u32,
    height: u32,
    _phantom: PhantomData<LumaA<u16>>,
    data: Vec<u16>,
}

Fields§

§width: u32§height: u32§_phantom: PhantomData<LumaA<u16>>§data: Vec<u16>