blob: 11493ac2200826ee9f6c8970def0befbf4af4ab3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//! 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;
#[allow(deprecated)]
pub use self::encoder::{IcoEncoder, IcoFrame};
mod decoder;
mod encoder;
|