gimp_palette

Converts RGB color values to a GIMP gpl palette

License

MIT

Usage

```rust extern crate gimp_palette;

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