From a74e5b2e9579927586ccecd73ae73af6394fc310 Mon Sep 17 00:00:00 2001 From: G2 Date: Sun, 28 Jul 2024 20:07:03 -0500 Subject: [PATCH] Update README.md --- README.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 865acb9..5b650fb 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,16 @@

- +

-# dpf -**dpf** (dangoware picture format) is a simple image format designed +# SQP +**SQP** (Squishy Picture) 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. +This reference implementation fits in under 1000 lines of relatively +simple Rust, while maintaining decent compression and decompression +speeds. -Currently, only a lossless encoding scheme is supported. In the future, -a simple lossy encoding would be an interesting addition. +Additionally, it also supports both lossless and lossy encoding schemes, +with the lossy version using Discrete Cosine Transform encoding like JPEG.