Trait embedded_graphics::image::IntoPixelIter
source · [−]pub trait IntoPixelIter<C> where
C: PixelColor + From<<C as PixelColor>::Raw>, {
type PixelIterator: Iterator<Item = Pixel<C>>;
fn pixel_iter(self) -> Self::PixelIterator;
}
Expand description
Conversion into an iterator over the pixels of the image.
Associated Types
type PixelIterator: Iterator<Item = Pixel<C>>
type PixelIterator: Iterator<Item = Pixel<C>>
Iterator over pixels in the image
Required methods
fn pixel_iter(self) -> Self::PixelIterator
fn pixel_iter(self) -> Self::PixelIterator
Get an iterator over the pixels of the image