summaryrefslogtreecommitdiffstats
path: root/third_party/rust/image/src/ico/mod.rs
blob: fd65df1f6e9db121089eb628cbc0636ea2cf3ec1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//!  Decoding and Encoding of ICO files
//!
//!  A decoder and encoder for ICO (Windows Icon) image container files.
//!
//!  # Related Links
//!  * <https://msdn.microsoft.com/en-us/library/ms997538.aspx>
//!  * <https://en.wikipedia.org/wiki/ICO_%28file_format%29>

pub use self::decoder::IcoDecoder;
pub use self::encoder::ICOEncoder;

mod decoder;
mod encoder;