[][src]Trait embedded_graphics::image::ImageDimensions

pub trait ImageDimensions {
    fn width(&self) -> u32;
fn height(&self) -> u32; }

A trait to get the dimensions of an image.

This trait provides an interface to get the width and height of an image. It should be implemented along with IntoPixelIter for full embedded-graphics integration.

Required methods

fn width(&self) -> u32

Get the width in pixels of an image

fn height(&self) -> u32

Get the height in pixels of an image

Loading content...

Implementors

impl<'_, C, BO> ImageDimensions for ImageRaw<'_, C, BO> where
    C: PixelColor + From<<C as PixelColor>::Raw>,
    BO: ByteOrder
[src]

Loading content...