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)Compositing with blending operations is supported for premultiplied images with linear gamma.
```rust use pix::hwb::SHwb8; use pix::rgb::SRgb8; use pix::Raster;
let mut r = Raster::withclear(256, 256);
for (y, row) in r.rowsmut(()).enumerate() {
for (x, p) in row.itermut().enumerate() {
let h = ((x + y) >> 1) as u8;
let w = y.saturatingsub(x) as u8;
let b = x.saturatingsub(y) as u8;
*p = SHwb8::new(h, w, b);
}
}
// Convert to SRgb8 color model
let raster = Raster::