[][src]Trait rin::graphics::image::GenericImageView

pub trait GenericImageView where
    <Self::InnerImageView as GenericImageView>::Pixel == Self::Pixel
{ type Pixel: Pixel; type InnerImageView: GenericImageView; fn dimensions(&self) -> (u32, u32);
fn bounds(&self) -> (u32, u32, u32, u32);
fn get_pixel(&self, x: u32, y: u32) -> Self::Pixel;
fn inner(&self) -> &Self::InnerImageView; fn width(&self) -> u32 { ... }
fn height(&self) -> u32 { ... }
fn in_bounds(&self, x: u32, y: u32) -> bool { ... }
unsafe fn unsafe_get_pixel(&self, x: u32, y: u32) -> Self::Pixel { ... }
fn pixels(&self) -> Pixels<Self> { ... }
fn view(
        &self,
        x: u32,
        y: u32,
        width: u32,
        height: u32
    ) -> SubImage<&Self::InnerImageView> { ... } }

Trait to inspect an image.

Associated Types

The type of pixel.

Underlying image type. This is mainly used by SubImages in order to always have a reference to the original image. This allows for less indirections and it eases the use of nested SubImages.

Required Methods

The width and height of this image.

The bounding rectangle of this image.

Returns the pixel located at (x, y)

Panics

Panics if (x, y) is out of bounds.

TODO: change this signature to &P

Returns a reference to the underlying image.

Provided Methods

The width of this image.

The height of this image.

Returns true if this x, y coordinate is contained inside the image.

Returns the pixel located at (x, y)

This function can be implemented in a way that ignores bounds checking.

Important traits for Pixels<'a, I>

Returns an Iterator over the pixels of this image. The iterator yields the coordinates of each pixel along with their value

Returns an subimage that is an immutable view into this image.

Implementors

impl GenericImageView for DynamicImage
[src]

Important traits for Pixels<'a, I>

impl<I> GenericImageView for SubImage<I> where
    I: Deref,
    <I as Deref>::Target: GenericImageView,
    <I as Deref>::Target: Sized
[src]

Important traits for Pixels<'a, I>

impl<P, Container> GenericImageView for ImageBuffer<P, Container> where
    Container: Deref<Target = [<P as Pixel>::Subpixel]> + Deref,
    P: Pixel + 'static,
    <P as Pixel>::Subpixel: 'static, 
[src]

Returns the pixel located at (x, y), ignoring bounds checking.

Important traits for Pixels<'a, I>