Crates.io | pix |
lib.rs | pix |
version | |
source | src |
created_at | 2019-04-09 02:45:20.853773+00 |
updated_at | 2025-03-15 18:59:02.178347+00 |
description | Pixel / raster image library |
homepage | https://github.com/DougLau/pix |
repository | https://github.com/DougLau/pix |
max_upload_size | |
id | 126727 |
Cargo.toml error: | TOML parse error at line 26, column 1 | 26 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
Library for image conversion and compositing.
A raster image can be cheaply converted to and from raw byte buffers, enabling interoperability with other crates.
Many image formats are supported:
RGB
/ BGR
(red, green, blue)CMY
(cyan, magenta, yellow)Gray
(luma / relative luminance)HSV
(hue, saturation, value)HSL
(hue, saturation, lightness)HWB
(hue, whiteness, blackness)YCbCr
(used by JPEG)Matte
(alpha only)OkLab
(lightness, green/red, blue/yellow)XYZ
(CIE 1931 XYZ)use pix::{hwb::SHwb8, rgb::SRgb8, Raster};
let mut r = Raster::with_clear(256, 256);
for (y, row) in r.rows_mut(()).enumerate() {
for (x, p) in row.iter_mut().enumerate() {
let h = ((x + y) >> 1) as u8;
let w = y.saturating_sub(x) as u8;
let b = x.saturating_sub(y) as u8;
*p = SHwb8::new(h, w, b);
}
}
// Convert to SRgb8 color model
let raster = Raster::<SRgb8>::with_raster(&r);
Compositing is supported for premultiplied images with linear gamma.
use pix::{ops::SrcOver, rgb::Rgba8p, Raster};
let mut r0 = Raster::with_clear(100, 100);
let r1 = Raster::with_color(5, 5, Rgba8p::new(80, 0, 80, 200));
r0.composite_raster((40, 40), &r1, (), SrcOver);