1 | //! Decoding and Encoding of ICO files |
---|---|
2 | //! |
3 | //! A decoder and encoder for ICO (Windows Icon) image container files. |
4 | //! |
5 | //! # Related Links |
6 | //! * <https://msdn.microsoft.com/en-us/library/ms997538.aspx> |
7 | //! * <https://en.wikipedia.org/wiki/ICO_%28file_format%29> |
8 | |
9 | pub use self::decoder::IcoDecoder; |
10 | #[allow(deprecated)] |
11 | pub use self::encoder::{IcoEncoder, IcoFrame}; |
12 | |
13 | mod decoder; |
14 | mod encoder; |
15 |