gamut-icc 0.1.1

ICC color profile (ICC.1:2022) parser and serializer — header, tag table, and tag element types — for gamut image metadata.
Documentation
1
2
3
4
5
6
7
8
//! The ICC profile reader.

/// Reader for an ICC profile blob.
///
/// Will parse the 128-byte [`crate::ProfileHeader`], the tag table, and each tag's element data
/// (dispatched on its [`crate::TagType`]) into an [`crate::IccProfile`]. Implementation pending
/// (see issue #34).
pub struct IccReader;