10 releases

Uses old Rust 2015

0.2.0 Jan 11, 2017
0.1.0 Dec 22, 2016
0.0.8 Dec 21, 2016
0.0.5 Oct 31, 2016

#604 in Images

Download history 323/week @ 2023-10-28 384/week @ 2023-11-04 278/week @ 2023-11-11 360/week @ 2023-11-18 450/week @ 2023-11-25 324/week @ 2023-12-02 363/week @ 2023-12-09 367/week @ 2023-12-16 368/week @ 2023-12-23 244/week @ 2023-12-30 407/week @ 2024-01-06 511/week @ 2024-01-13 349/week @ 2024-01-20 320/week @ 2024-01-27 289/week @ 2024-02-03 339/week @ 2024-02-10

1,341 downloads per month
Used in 7 crates (5 directly)

MIT license

89KB
1.5K SLoC

Raster

Build Status

An image processing library for Rust.

Documentation

API and detailed documentation can be found here

License

  • MIT License

lib.rs:

Raster

Raster is an image processing lib for Rust.

It provides a simplified API for processing raster images (JPEG, PNG and GIF).

Installation

Add this to your Cargo.toml file:

[dependencies]

raster = "x.x.x"

Where x are version numbers of the latest version of raster. Eg.: 0.1.0

Then add the raster crate in your main.rs:

extern crate raster; // In your main rust file

Creating Images

From an image file

// Create an image from file
let image = raster::open("tests/in/sample.png").unwrap();

Raster will detect the image format based on the file name.

Create a blank image

use raster::Image; // Include the Image struct

// Create a blank 150x100 image. Defaults to a black background.
let image = Image::blank(150, 100);

Saving Images

Save the opened image file:

// Create an image from file
let image = raster::open("tests/in/sample.png").unwrap();

// Save opened image
raster::save(&image, "tests/out/test_open_save.png").unwrap();

Blending 2 Images

Here are two images blended using the normal mode.

More blending modes and options are available, see the blend API.

Resizing Images

An example of images resized to "fit" in a 200x200 box.

More modes available, see the resize API.

Rotating Images

Images can be rotated both clockwise and counter-clockwise at any arbitrary angle with a custom background color.

And Many More...

More options are available, checkout the modules below.

Dependencies

~13MB
~86K SLoC