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

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

Get the width in pixels of an image

Get the height in pixels of an image

Implementors