picto

Crates.io Crates.io WTFPL Build Status

An image handling library.

Usage

Add the following to the Cargo.toml in your project:

toml [dependencies] picto = "0.2"

Supported Formats

| Format | Decoding | Encoding | |--------|----------|----------| | PNG | ✔ | ✔ | | JPEG | ✔ | ✘ | | GIF | ✔ | ✔ | | BMP | ✔ | ✔ | | TGA | ✔ | ✔ | | XYZ | ✔ | ✘ |

Documentation

Documentation is available here.

Example

The following example turns an image to gray scale (maintaining the alpha), then upscales it, and blurs it.

```rust extern crate picto; use picto::{read, write}; use picto::color::{Rgba, Lumaa}; use picto::processing::prelude::*;

use std::env;

fn main() { write::topath(env::args().nth(2).unwrap(), &read::frompath::(env::args().nth(1).unwrap()).unwrap() .convert::() .scale_by::(2.0) .blur::(4.0)).unwrap(); } ```

sRGB and friends

The RGB types and operations provided by picto assume the colors are given in linear RGB space, but many images contain the data in sRGB color space, this means some conversion needs to happen to have accurate operations.

The following code will load an image, and convert it to a Buffer usable from an sRGB space.

```rust use picto; use picto::color::{Rgb, Srgb};

let image = picto::read::frompath::("path-to-image.jpg") .convertwith::(|p| Srgb::new(p.red, p.green, p.blue).into()); ```