[−][src]Enum image::DynamicImage
A Dynamic Image
Variants
ImageLuma8(GrayImage)Each pixel in this image is 8-bit Luma
ImageLumaA8(GrayAlphaImage)Each pixel in this image is 8-bit Luma with alpha
ImageRgb8(RgbImage)Each pixel in this image is 8-bit Rgb
ImageRgba8(RgbaImage)Each pixel in this image is 8-bit Rgb with alpha
Methods
impl DynamicImage[src]
impl DynamicImagepub fn new_luma8(w: u32, h: u32) -> DynamicImage[src]
pub fn new_luma8(w: u32, h: u32) -> DynamicImageCreates a dynamic image backed by a buffer of grey pixels.
pub fn new_luma_a8(w: u32, h: u32) -> DynamicImage[src]
pub fn new_luma_a8(w: u32, h: u32) -> DynamicImageCreates a dynamic image backed by a buffer of grey pixels with transparency.
pub fn new_rgb8(w: u32, h: u32) -> DynamicImage[src]
pub fn new_rgb8(w: u32, h: u32) -> DynamicImageCreates a dynamic image backed by a buffer of RGB pixels.
pub fn new_rgba8(w: u32, h: u32) -> DynamicImage[src]
pub fn new_rgba8(w: u32, h: u32) -> DynamicImageCreates a dynamic image backed by a buffer of RGBA pixels.
pub fn to_rgb(&self) -> RgbImage[src]
pub fn to_rgb(&self) -> RgbImageReturns a copy of this image as an RGB image.
pub fn to_rgba(&self) -> RgbaImage[src]
pub fn to_rgba(&self) -> RgbaImageReturns a copy of this image as an RGBA image.
pub fn to_luma(&self) -> GrayImage[src]
pub fn to_luma(&self) -> GrayImageReturns a copy of this image as a Luma image.
pub fn to_luma_alpha(&self) -> GrayAlphaImage[src]
pub fn to_luma_alpha(&self) -> GrayAlphaImageReturns a copy of this image as a LumaA image.
pub fn crop(&mut self, x: u32, y: u32, width: u32, height: u32) -> DynamicImage[src]
pub fn crop(&mut self, x: u32, y: u32, width: u32, height: u32) -> DynamicImageReturn a cut out of this image delimited by the bounding rectangle.
pub fn as_rgb8(&self) -> Option<&RgbImage>[src]
pub fn as_rgb8(&self) -> Option<&RgbImage>Return a reference to an 8bit RGB image
pub fn as_mut_rgb8(&mut self) -> Option<&mut RgbImage>[src]
pub fn as_mut_rgb8(&mut self) -> Option<&mut RgbImage>Return a mutable reference to an 8bit RGB image
pub fn as_rgba8(&self) -> Option<&RgbaImage>[src]
pub fn as_rgba8(&self) -> Option<&RgbaImage>Return a reference to an 8bit RGBA image
pub fn as_mut_rgba8(&mut self) -> Option<&mut RgbaImage>[src]
pub fn as_mut_rgba8(&mut self) -> Option<&mut RgbaImage>Return a mutable reference to an 8bit RGBA image
pub fn as_luma8(&self) -> Option<&GrayImage>[src]
pub fn as_luma8(&self) -> Option<&GrayImage>Return a reference to an 8bit Grayscale image
pub fn as_mut_luma8(&mut self) -> Option<&mut GrayImage>[src]
pub fn as_mut_luma8(&mut self) -> Option<&mut GrayImage>Return a mutable reference to an 8bit Grayscale image
pub fn as_luma_alpha8(&self) -> Option<&GrayAlphaImage>[src]
pub fn as_luma_alpha8(&self) -> Option<&GrayAlphaImage>Return a reference to an 8bit Grayscale image with an alpha channel
pub fn as_mut_luma_alpha8(&mut self) -> Option<&mut GrayAlphaImage>[src]
pub fn as_mut_luma_alpha8(&mut self) -> Option<&mut GrayAlphaImage>Return a mutable reference to an 8bit Grayscale image with an alpha channel
pub fn raw_pixels(&self) -> Vec<u8>[src]
pub fn raw_pixels(&self) -> Vec<u8>Return this image's pixels as a byte vector.
pub fn color(&self) -> ColorType[src]
pub fn color(&self) -> ColorTypeReturn this image's color type.
pub fn grayscale(&self) -> DynamicImage[src]
pub fn grayscale(&self) -> DynamicImageReturn a grayscale version of this image.
pub fn invert(&mut self)[src]
pub fn invert(&mut self)Invert the colors of this image. This method operates inplace.
pub fn resize(
&self,
nwidth: u32,
nheight: u32,
filter: FilterType
) -> DynamicImage[src]
pub fn resize(
&self,
nwidth: u32,
nheight: u32,
filter: FilterType
) -> DynamicImageResize this image using the specified filter algorithm.
Returns a new image. The image's aspect ratio is preserved.
The image is scaled to the maximum possible size that fits
within the bounds specified by nwidth and nheight.
pub fn resize_exact(
&self,
nwidth: u32,
nheight: u32,
filter: FilterType
) -> DynamicImage[src]
pub fn resize_exact(
&self,
nwidth: u32,
nheight: u32,
filter: FilterType
) -> DynamicImageResize this image using the specified filter algorithm.
Returns a new image. Does not preserve aspect ratio.
nwidth and nheight are the new image's dimensions
pub fn thumbnail(&self, nwidth: u32, nheight: u32) -> DynamicImage[src]
pub fn thumbnail(&self, nwidth: u32, nheight: u32) -> DynamicImageScale this image down to fit within a specific size.
Returns a new image. The image's aspect ratio is preserved.
The image is scaled to the maximum possible size that fits
within the bounds specified by nwidth and nheight.
This method uses a fast integer algorithm where each source pixel contributes to exactly one target pixel. May give aliasing artifacts if new size is close to old size.
pub fn thumbnail_exact(&self, nwidth: u32, nheight: u32) -> DynamicImage[src]
pub fn thumbnail_exact(&self, nwidth: u32, nheight: u32) -> DynamicImageScale this image down to a specific size.
Returns a new image. Does not preserve aspect ratio.
nwidth and nheight are the new image's dimensions.
This method uses a fast integer algorithm where each source
pixel contributes to exactly one target pixel.
May give aliasing artifacts if new size is close to old size.
pub fn resize_to_fill(
&self,
nwidth: u32,
nheight: u32,
filter: FilterType
) -> DynamicImage[src]
pub fn resize_to_fill(
&self,
nwidth: u32,
nheight: u32,
filter: FilterType
) -> DynamicImageResize this image using the specified filter algorithm.
Returns a new image. The image's aspect ratio is preserved.
The image is scaled to the maximum possible size that fits
within the larger (relative to aspect ratio) of the bounds
specified by nwidth and nheight, then cropped to
fit within the other bound.
pub fn blur(&self, sigma: f32) -> DynamicImage[src]
pub fn blur(&self, sigma: f32) -> DynamicImagePerforms a Gaussian blur on this image.
sigma is a measure of how much to blur by.
pub fn unsharpen(&self, sigma: f32, threshold: i32) -> DynamicImage[src]
pub fn unsharpen(&self, sigma: f32, threshold: i32) -> DynamicImagePerforms an unsharpen mask on this image.
sigma is the amount to blur the image by.
threshold is a control of how much to sharpen.
See https://en.wikipedia.org/wiki/Unsharp_masking#Digital_unsharp_masking
pub fn filter3x3(&self, kernel: &[f32]) -> DynamicImage[src]
pub fn filter3x3(&self, kernel: &[f32]) -> DynamicImageFilters this image with the specified 3x3 kernel.
pub fn adjust_contrast(&self, c: f32) -> DynamicImage[src]
pub fn adjust_contrast(&self, c: f32) -> DynamicImageAdjust the contrast of this image.
contrast is the amount to adjust the contrast by.
Negative values decrease the contrast and positive values increase the contrast.
pub fn brighten(&self, value: i32) -> DynamicImage[src]
pub fn brighten(&self, value: i32) -> DynamicImageBrighten the pixels of this image.
value is the amount to brighten each pixel by.
Negative values decrease the brightness and positive values increase it.
pub fn huerotate(&self, value: i32) -> DynamicImage[src]
pub fn huerotate(&self, value: i32) -> DynamicImageHue rotate the supplied image.
value is the degrees to rotate each pixel by.
0 and 360 do nothing, the rest rotates by the given degree value.
just like the css webkit filter hue-rotate(180)
pub fn flipv(&self) -> DynamicImage[src]
pub fn flipv(&self) -> DynamicImageFlip this image vertically
pub fn fliph(&self) -> DynamicImage[src]
pub fn fliph(&self) -> DynamicImageFlip this image horizontally
pub fn rotate90(&self) -> DynamicImage[src]
pub fn rotate90(&self) -> DynamicImageRotate this image 90 degrees clockwise.
pub fn rotate180(&self) -> DynamicImage[src]
pub fn rotate180(&self) -> DynamicImageRotate this image 180 degrees clockwise.
pub fn rotate270(&self) -> DynamicImage[src]
pub fn rotate270(&self) -> DynamicImageRotate this image 270 degrees clockwise.
pub fn write_to<W: Write, F: Into<ImageOutputFormat>>(
&self,
w: &mut W,
format: F
) -> ImageResult<()>[src]
pub fn write_to<W: Write, F: Into<ImageOutputFormat>>(
&self,
w: &mut W,
format: F
) -> ImageResult<()>Encode this image and write it to w
pub fn save<Q>(&self, path: Q) -> Result<()> where
Q: AsRef<Path>, [src]
pub fn save<Q>(&self, path: Q) -> Result<()> where
Q: AsRef<Path>, Saves the buffer to a file at the path specified.
The image format is derived from the file extension.
Trait Implementations
impl GenericImage for DynamicImage[src]
impl GenericImage for DynamicImagetype Pixel = Rgba<u8>
The type of pixel.
fn dimensions(&self) -> (u32, u32)[src]
fn dimensions(&self) -> (u32, u32)The width and height of this image.
fn bounds(&self) -> (u32, u32, u32, u32)[src]
fn bounds(&self) -> (u32, u32, u32, u32)The bounding rectangle of this image.
fn get_pixel(&self, x: u32, y: u32) -> Rgba<u8>[src]
fn get_pixel(&self, x: u32, y: u32) -> Rgba<u8>Returns the pixel located at (x, y) Read more
fn put_pixel(&mut self, x: u32, y: u32, pixel: Rgba<u8>)[src]
fn put_pixel(&mut self, x: u32, y: u32, pixel: Rgba<u8>)Put a pixel at location (x, y) Read more
fn blend_pixel(&mut self, x: u32, y: u32, pixel: Rgba<u8>)[src]
fn blend_pixel(&mut self, x: u32, y: u32, pixel: Rgba<u8>)DEPRECATED: Use iterator pixels_mut to blend the pixels directly.
fn get_pixel_mut(&mut self, _: u32, _: u32) -> &mut Rgba<u8>[src]
fn get_pixel_mut(&mut self, _: u32, _: u32) -> &mut Rgba<u8>DEPRECATED: Do not use is function: It is unimplemented!
fn width(&self) -> u32[src]
fn width(&self) -> u32The width of this image.
fn height(&self) -> u32[src]
fn height(&self) -> u32The height of this image.
fn in_bounds(&self, x: u32, y: u32) -> bool[src]
fn in_bounds(&self, x: u32, y: u32) -> boolReturns true if this x, y coordinate is contained inside the image.
unsafe fn unsafe_get_pixel(&self, x: u32, y: u32) -> Self::Pixel[src]
unsafe fn unsafe_get_pixel(&self, x: u32, y: u32) -> Self::PixelReturns the pixel located at (x, y) Read more
unsafe fn unsafe_put_pixel(&mut self, x: u32, y: u32, pixel: Self::Pixel)[src]
unsafe fn unsafe_put_pixel(&mut self, x: u32, y: u32, pixel: Self::Pixel)Puts a pixel at location (x, y) Read more
ⓘImportant traits for Pixels<'a, I>fn pixels(&self) -> Pixels<Self>[src]
fn pixels(&self) -> Pixels<Self>Returns an Iterator over the pixels of this image. The iterator yields the coordinates of each pixel along with their value Read more
ⓘImportant traits for MutPixels<'a, I>fn pixels_mut(&mut self) -> MutPixels<Self>[src]
fn pixels_mut(&mut self) -> MutPixels<Self>: This cannot be implemented safely in Rust. Please use the image buffer directly.
Returns an Iterator over mutable pixels of this image. The iterator yields the coordinates of each pixel along with a mutable reference to them. Read more
fn copy_from<O>(&mut self, other: &O, x: u32, y: u32) -> bool where
O: GenericImage<Pixel = Self::Pixel>, [src]
fn copy_from<O>(&mut self, other: &O, x: u32, y: u32) -> bool where
O: GenericImage<Pixel = Self::Pixel>, Copies all of the pixels from another image into this image. Read more
fn sub_image(
&mut self,
x: u32,
y: u32,
width: u32,
height: u32
) -> SubImage<Self> where
Self: 'static,
<Self::Pixel as Pixel>::Subpixel: 'static,
Self::Pixel: 'static, [src]
fn sub_image(
&mut self,
x: u32,
y: u32,
width: u32,
height: u32
) -> SubImage<Self> where
Self: 'static,
<Self::Pixel as Pixel>::Subpixel: 'static,
Self::Pixel: 'static, Returns a subimage that is a view into this image.
impl Clone for DynamicImage[src]
impl Clone for DynamicImagefn clone(&self) -> DynamicImage[src]
fn clone(&self) -> DynamicImageReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
Auto Trait Implementations
impl Send for DynamicImage
impl Send for DynamicImageimpl Sync for DynamicImage
impl Sync for DynamicImageBlanket Implementations
impl<T> From for T[src]
impl<T> From for Timpl<T, U> Into for T where
U: From<T>, [src]
impl<T, U> Into for T where
U: From<T>, impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, type Owned = T
fn to_owned(&self) -> T[src]
fn to_owned(&self) -> TCreates owned data from borrowed data, usually by cloning. Read more
fn clone_into(&self, target: &mut T)[src]
fn clone_into(&self, target: &mut T)🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T, U> TryFrom for T where
T: From<U>, [src]
impl<T, U> TryFrom for T where
T: From<U>, type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>try_from)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized, [src]
impl<T> Borrow for T where
T: ?Sized, impl<T> BorrowMut for T where
T: ?Sized, [src]
impl<T> BorrowMut for T where
T: ?Sized, fn borrow_mut(&mut self) -> &mut T[src]
fn borrow_mut(&mut self) -> &mut TMutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
impl<T, U> TryInto for T where
U: TryFrom<T>, type Error = <U as TryFrom<T>>::Error
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>try_from)Performs the conversion.
impl<T> Any for T where
T: 'static + ?Sized, [src]
impl<T> Any for T where
T: 'static + ?Sized, fn get_type_id(&self) -> TypeId[src]
fn get_type_id(&self) -> TypeId🔬 This is a nightly-only experimental API. (get_type_id)
this method will likely be replaced by an associated static
Gets the TypeId of self. Read more