mirror of
https://github.com/Dangoware/sqp.git
synced 2025-04-19 07:12:55 -05:00
13 lines
290 B
Rust
13 lines
290 B
Rust
//! SQP (SQuishy Picture Format) is an image format. It can be used to store
|
|
//! image data in lossless or lossy compressed form, while remaining relatively
|
|
//! simple.
|
|
|
|
mod compression {
|
|
pub mod dct;
|
|
pub mod lossless;
|
|
}
|
|
mod binio;
|
|
mod operations;
|
|
|
|
pub mod picture;
|
|
pub mod header;
|