Struct image::SubImage
[−]
[src]
pub struct SubImage<'a, I: 'a> { // some fields omitted }
A View into another image
Methods
impl<'a, I: GenericImage + 'static> SubImage<'a, I> where I::Pixel: 'static, I::Pixel::Subpixel: 'static
fn new(image: &mut I, x: u32, y: u32, width: u32, height: u32) -> SubImage<I>
Construct a new subimage
fn inner_mut(&mut self) -> &mut I
Returns a mutable reference to the wrapped image.
fn change_bounds(&mut self, x: u32, y: u32, width: u32, height: u32)
Change the coordinates of this subimage.
fn to_image(&self) -> ImageBuffer<I::Pixel, Vec<I::Pixel::Subpixel>>
Convert this subimage to an ImageBuffer
Trait Implementations
impl<'a, I: GenericImage + 'static> GenericImage for SubImage<'a, I> where I::Pixel: 'static, I::Pixel::Subpixel: 'static
type Pixel = I::Pixel
fn dimensions(&self) -> (u32, u32)
fn bounds(&self) -> (u32, u32, u32, u32)
fn get_pixel(&self, x: u32, y: u32) -> I::Pixel
fn put_pixel(&mut self, x: u32, y: u32, pixel: I::Pixel)
fn blend_pixel(&mut self, x: u32, y: u32, pixel: I::Pixel)
DEPRECATED: This method will be removed. Blend the pixel directly instead.