Struct show_image::ImageInfo[][src]

pub struct ImageInfo {
    pub pixel_format: PixelFormat,
    pub width: u32,
    pub height: u32,
    pub stride_x: u32,
    pub stride_y: u32,
}

Information describing the binary data of an image.

Fields

pixel_format: PixelFormat

The pixel format of the image data.

width: u32

The width of the image in pixels.

height: u32

The height of the image in pixels.

stride_x: u32

The X stride of the image data in bytes.

stride_y: u32

The Y stride of the image data in bytes.

Implementations

impl ImageInfo[src]

pub fn new(pixel_format: PixelFormat, width: u32, height: u32) -> Self[src]

Create a new info struct with the given format, width and height.

The row stride is automatically calculated based on the image width and pixel format. If you wish to use a different row stride, construct the struct directly.

pub fn mono8(width: u32, height: u32) -> Self[src]

Create a new info struct for an 8-bit monochrome image with the given width and height.

pub fn mono_alpha8(width: u32, height: u32) -> Self[src]

Create a new info struct for an 8-bit monochrome image with with alpha channel and the given width and height.

pub fn mono_alpha8_premultiplied(width: u32, height: u32) -> Self[src]

Create a new info struct for an 8-bit monochrome image with premultiplied alpha channel and the given width and height.

pub fn bgr8(width: u32, height: u32) -> Self[src]

Create a new info struct for an 8-bit BGR image with the given width and height.

pub fn bgra8(width: u32, height: u32) -> Self[src]

Create a new info struct for an 8-bit BGRA image with the given width and height.

pub fn bgra8_premultiplied(width: u32, height: u32) -> Self[src]

Create a new info struct for an 8-bit BGRA image with premultiplied alpha channel and the given width and height.

pub fn rgb8(width: u32, height: u32) -> Self[src]

Create a new info struct for an 8-bit RGB image with the given width and height.

pub fn rgba8(width: u32, height: u32) -> Self[src]

Create a new info struct for an 8-bit RGBA image with the given width and height.

pub fn rgba8_premultiplied(width: u32, height: u32) -> Self[src]

Create a new info struct for an 8-bit RGBA image with premultiplied alpha channel and the given width and height.

pub fn byte_size(self) -> u64[src]

Get the image size in bytes.

Trait Implementations

impl Clone for ImageInfo[src]

impl Copy for ImageInfo[src]

impl Debug for ImageInfo[src]

impl Eq for ImageInfo[src]

impl PartialEq<ImageInfo> for ImageInfo[src]

impl StructuralEq for ImageInfo[src]

impl StructuralPartialEq for ImageInfo[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> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,