From 475899c64b7dd24bea93d475e22818144ecdd995 Mon Sep 17 00:00:00 2001 From: G2 Date: Wed, 24 Jul 2024 09:54:07 -0500 Subject: [PATCH] Create README.md --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..bb88235 --- /dev/null +++ b/README.md @@ -0,0 +1,10 @@ +# 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. + +This reference implementation fits in around400 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.