sei 0.0.2

A simple parser for .SEI (stacking ePaper image) files.
Documentation
1
2
3
4
5
6
7
8
9
10
#[derive(Debug, Clone, Copy)]
pub enum SeiError {
    IncorrectLength(u32, u32),
    IncorrectMagicBytes,
    InvalidVersion,
    InvalidDataOffset,
    UnsupportedBitDepth,
    UnsupportedTransparency,
    UnreadableFile,
}