Skip to main content

gamut_icc/
reader.rs

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