logo
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

Iterator over pixels in the image

Required methods

Get an iterator over the pixels of the image

Implementors