libmagie 0.1.0

A magical library for processing images.
Documentation
1
2
3
4
5
6
7
8
9
mod luma;
mod rgb;
mod rgba;
mod ycbcr;

pub trait Color {
    fn to_rgba8(&self) -> rgba::RGBA<u8>;
    fn to_rgba16(&self) -> rgba::RGBA<u16>;
}