Image
Maintainers: @HeroicKatora, @fintelia
An Image Processing Library
This crate provides basic imaging processing functions and methods for converting to and from image formats.
All image processing functions provided operate on types that implement the GenericImage
trait and return an ImageBuffer
.
1. Documentation
2. Supported Image Formats
image
provides implementations of common image format encoders and decoders.
2.1 Supported Image Formats
Format | Decoding | Encoding |
---|---|---|
PNG | All supported color types | Same as decoding |
JPEG | Baseline and progressive | Baseline JPEG |
GIF | Yes | Yes |
BMP | Yes | RGB(8), RGBA(8), Gray(8), GrayA(8) |
ICO | Yes | Yes |
TIFF | Baseline(no fax support) + LZW + PackBits | RGB(8), RGBA(8), Gray(8) |
WebP | Lossy(Luma channel only) | No |
PNM | PBM, PGM, PPM, standard PAM | Yes |
2.2 The ImageDecoder
Trait
All image format decoders implement the ImageDecoder
trait which provides the following methods:
- dimensions: Return a tuple containing the width and height of the image
- colortype: Return the color type of the image.
- row_len: Returns the length in bytes of one decoded row of the image
- read_scanline: Read one row from the image into buf Returns the row index
- read_image: Decode the entire image and return it as a Vector
- load_rect: Decode a specific region of the image
3 Pixels
image
provides the following pixel types:
- Rgb: RGB pixel
- Rgba: RGBA pixel
- Luma: Grayscale pixel
- LumaA: Grayscale with alpha
All pixels are parameterised by their component type.
4 Images
4.1 The GenericImage
Trait
A trait that provides functions for manipulating images, parameterised over the image's pixel type.
# use ;
4.2 Representation of Images
image
provides two main ways of representing image data:
4.2.1 ImageBuffer
An image parameterised by its Pixel types, represented by a width and height and a vector of pixels. It provides direct access to its pixels and implements the GenericImage
trait.
extern crate image;
use ;
// Construct a new RGB ImageBuffer with the specified width and height.
let img: RgbImage = new;
// Construct a new by repeated calls to the supplied closure.
let mut img = from_fn;
// Obtain the image's width and height.
let = img.dimensions;
// Access the pixel at coordinate (100, 100).
let pixel = img;
// Or use the ```get_pixel``` method from the ```GenericImage``` trait.
let pixel = *img.get_pixel;
// Put a pixel at coordinate (100, 100).
img.put_pixel;
// Iterate over all pixels in the image.
for pixel in img.pixels
4.2.2 DynamicImage
A DynamicImage
is an enumeration over all supported ImageBuffer<P>
types.
Its exact image type is determined at runtime. It is the type returned when opening an image.
For convenience DynamicImage
's reimplement all image processing functions.
DynamicImage
implement the GenericImage
trait for RGBA pixels.
4.2.3 SubImage
A view into another image, delimited by the coordinates of a rectangle. This is used to perform image processing functions on a subregion of an image.
extern crate image;
use ;
let mut img: RgbImage = new;
let subimg = crop;
assert!;
5 Image Processing Functions
These are the functions defined in the imageops
module. All functions operate on types that implement the GenericImage
trait.
- blur: Performs a Gaussian blur on the supplied image.
- brighten: Brighten the supplied image
- huerotate: Hue rotate the supplied image by degrees
- contrast: Adjust the contrast of the supplied image
- crop: Return a mutable view into an image
- filter3x3: Perform a 3x3 box filter on the supplied image.
- flip_horizontal: Flip an image horizontally
- flip_vertical: Flip an image vertically
- grayscale: Convert the supplied image to grayscale
- invert: Invert each pixel within the supplied image This function operates in place.
- resize: Resize the supplied image to the specified dimensions
- rotate180: Rotate an image 180 degrees clockwise.
- rotate270: Rotate an image 270 degrees clockwise.
- rotate90: Rotate an image 90 degrees clockwise.
- unsharpen: Performs an unsharpen mask on the supplied image
6 Examples
6.1 Opening And Saving Images
image
provides the open
function for opening images from a path.
The image format is determined from the path's file extension.
extern crate image;
use GenericImageView;
6.2 Generating Fractals
//! An example of generating julia fractals.
extern crate image;
extern crate num_complex;
Example output:
6.3 Writing raw buffers
If the high level interface is not needed because the image was obtained by other means, image
provides the function save_buffer
to save a buffer to a file.
extern crate image;