The squishiest image format!
Find a file
2024-07-28 19:57:50 -05:00
src Removed image crate, moved main file to lib 2024-07-28 19:57:50 -05:00
.gitignore Significantly improved speed of decompression and paralellized it 2024-07-25 04:32:12 -05:00
Cargo.toml Removed image crate, moved main file to lib 2024-07-28 19:57:50 -05:00
LICENSE Added MIT license 2024-07-28 19:55:21 -05:00
README.md Update README.md to add logo 2024-07-27 03:51:39 -05:00

dpf

dpf (dangoware picture format) is a simple image format designed for ease of encoding and decoding while maintaining a relatively good compression ratio for various purposes. The general idea is to make something "good enough" while being simple.

This reference implementation fits in around 400 lines of relatively simple Rust, while maintaining decent decompression speeds.

Currently, only a lossless encoding scheme is supported. In the future, a simple lossy encoding would be an interesting addition.