Crate clf_parser

Source
Expand description

§Common LUT Format (CLF) parser

Actions Status Latest version Documentation Lines of code MIT Contributor Covenant MSRV

Banner

https://docs.acescentral.com/specifications/clf

§Supported features

§Operators

  • LUT1D
  • LUT3D
  • Range

§Bit depths

  • 32F

§Usage

Add this to your Cargo.toml:

[dependencies]
clf-parser = "0.2.0"
fn main() -> anyhow::Result<()> {
    let reader = std::fs::OpenOptions::new().read(true).open("my_file.clf")?;
    let clf = clf_parser::load_clf(reader)?;
    Ok(())
}

Modules§

clf

Functions§

load_clf