Update README.md

This commit is contained in:
G2 2024-07-28 20:07:03 -05:00 committed by GitHub
parent c65ba5aaa0
commit a74e5b2e95
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,15 +1,16 @@
<p align="center"> <p align="center">
<img width="400px" src="https://github.com/user-attachments/assets/a20467f1-7831-4fa4-8d2c-39f1fe749e57"> <img width="400px" src="https://github.com/user-attachments/assets/98f94c1c-ed6f-49a3-b906-c328035d981e">
</p> </p>
# dpf # SQP
**dpf** (dangoware picture format) is a simple image format designed **SQP** (Squishy Picture) is a simple image format designed
for ease of encoding and decoding while maintaining a relatively good for ease of encoding and decoding while maintaining a relatively good
compression ratio for various purposes. The general idea is to make compression ratio for various purposes. The general idea is to make
something "good enough" while being simple. something "good enough" while being simple.
This reference implementation fits in around 400 lines of relatively This reference implementation fits in under 1000 lines of relatively
simple Rust, while maintaining decent decompression speeds. simple Rust, while maintaining decent compression and decompression
speeds.
Currently, only a lossless encoding scheme is supported. In the future, Additionally, it also supports both lossless and lossy encoding schemes,
a simple lossy encoding would be an interesting addition. with the lossy version using Discrete Cosine Transform encoding like JPEG.