oximedia-calibrate 0.1.8

Professional color calibration and matching tools for OxiMedia
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! ICC profile generation, parsing, and application.
//!
//! This module provides tools for working with ICC color profiles.

pub mod apply;
pub mod generate;
pub mod parse;

pub use apply::IccProfileApplicator;
pub use generate::IccProfileGenerator;
pub use parse::{
    parse_iccmax, IccMaxProfile, IccMaxTag, IccProfile, IccProfileVersion, SpectralData,
};