#palette #gpl #gimp

bin+lib gimp_palette

一个用于读取和写入 GIMP 调色板格式的库

2 个版本

使用旧的 Rust 2015

0.1.1 2017年5月4日
0.1.0 2017年5月3日

#6 in #gpl

MIT 许可证

8KB
172

gimp_palette

将 RGB 颜色值转换为 GIMP gpl 调色板

许可证

MIT

用法

extern crate gimp_palette;

fn main() {
    let colors = vec![ gimp_palette::Color { r: 0, g: 50, b: 255 } ];
    let palette = gimp_palette::Palette::new("Example", colors).unwrap();
    palette.write_to_file("test.gpl").expect(&format!("Failed to write {} to test.gpl", palette.get_name()));
}

无运行时依赖