#颜色 #图像 #减少 #设置 #减少 #rgb

已删除 颜色减少

一个将图像颜色减少到指定颜色集的库

3 个版本

0.1.2 2022年3月14日
0.1.1 2021年7月12日
0.1.0 2021年7月12日

#15#减少

MIT 许可协议

6KB

颜色减少

Crates.io

一个Rust库,可以将图像颜色减少到指定的颜色集。

使用方法

Old Image

... 与 ... 结合 ...

use color_reduction::reduce_colors;
use color_reduction::image::Rgb;
use color_reduction::image;

fn main() {
    let image = image::open("./old-image.jpg")
        .expect("error loading image");
    let new_image = reduce_colors(image, &[
        Rgb::from([240,207,149]),
        Rgb::from([24,30,75]),
        Rgb::from([10,6,11]),
        Rgb::from([142,117,98]),
        Rgb::from([67,62,70]),
        Rgb::from([28,42,84]),
        Rgb::from([19,13,20]),
        Rgb::from([248,217,158]),
        Rgb::from([9,4,7]),
        Rgb::from([62,53,52]),
        Rgb::from([62,71,99]),
        Rgb::from([134,125,118]),
        Rgb::from([198,154,106]),
        Rgb::from([15,14,59]),
        Rgb::from([113,90,78]),
        Rgb::from([255, 255, 255]),
        Rgb::from([255, 249, 189]),
    ]);

    new_image.save("./new.jpg").expect("error saving image");
}

... 变成 ...

New Image

依赖项

~13MB
~58K SLoC