act2pal 0.1.2

Converts Adobe Color Tables to .pal files.
Documentation
  • Coverage
  • 100%
    9 out of 9 items documented0 out of 5 items with examples
  • Size
  • Source code size: 15.3 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.75 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 15s Average build duration of successful builds.
  • all releases: 20s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • tipsypastels

act2pal

Converts Adobe Color Tables to .pal files.

Usage (CLI)

cargo install act2pal
act2pal -i input.act -o output.pal

Usage (Rust)

use act2pal::Palette;

let act = std::fs::read("input.act")?;
let pal = Palette::from_act(&act)?;

std::fs::write("output.pal", pal.to_string())?;