pub trait ImageDimensions {
    fn dimensions(&self) -> [u32; 2];
}
Expand description

Images within the given image map must know their dimensions in pixels.

Required methods

The dimensions of the image in pixels.

Implementors