ultrahdr-core 0.1.1

Core gain map math and metadata for Ultra HDR - no codec dependencies
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Metadata handling for Ultra HDR images.
//!
//! Supports both XMP (Adobe hdrgm namespace) and ISO 21496-1 binary format.

pub mod iso21496;
pub mod mpf;
pub mod xmp;

pub use iso21496::*;
pub use mpf::*;
pub use xmp::*;