act2pal
Converts Adobe Color Tables to .pal files.
Usage (CLI)
The --assert-len flag can be used to early exit if the number of colors in the palette is not as expected.
Usage (Rust)
use Palette;
let act = read?;
let pal = from_act?;
write?;
The Palette type implements Deref<Target = [Color]> and FromIterator<Color> and can thus be manipulated freely.