Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
sk-zk committed Jul 3, 2024
1 parent 5d0f054 commit 20e066d
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
# GisDeflate

GDeflate decompression in C# with zero native dependencies.

## Install
`nuget install GisDeflate`

## Usage
```cs
byte[] compressed = File.ReadAllBytes("foo.bin");
byte[] decompressed = GDeflate.Decompress(compressed);
```

## Credits
Naturally, this code is a port of the reference implementation by [Microsoft](https://github.com/microsoft/DirectStorage/tree/main/GDeflate)
and [NVIDIA](https://github.com/NVIDIA/libdeflate/tree/3bb5c6924b32a91e6e6a8f54ba00a21f037a8db5).
and [NVIDIA](https://github.com/NVIDIA/libdeflate/tree/3bb5c6924b32a91e6e6a8f54ba00a21f037a8db5).

0 comments on commit 20e066d

Please sign in to comment.