//! Colorspace — compatibility shim.
//!
//! Re-exports from `crate::micropdf::colorspace`.
pub use crate::micropdf::colorspace::MpColorspace as Colorspace;
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_shim_reexport() {
let cs = Colorspace::device_rgb();
assert_eq!(cs.name(), "DeviceRGB");
assert_eq!(cs.n(), 3);
}
}