Add ColorSpace type

This commit is contained in:
Ivan Smirnov 2021-11-29 22:23:39 +00:00
commit 9ef519164b
2 changed files with 60 additions and 0 deletions

View file

@ -1,3 +1,4 @@
mod colorspace;
mod consts;
mod decode;
mod encode;
@ -5,6 +6,7 @@ mod error;
mod header;
mod pixel;
pub use crate::colorspace::ColorSpace;
pub use crate::decode::qoi_decode_to_vec;
pub use crate::encode::qoi_encode_to_vec;
pub use crate::error::{Error, Result};