C#, Decompress a stream using zlib

11.3k Views Asked by At

I am trying to decompress a byte array.

byte[] bloc = { 120, 156, 211, 97, 144, 76, 247, 142, 98, 228, 98, 0, 2, 70, 101, 6, 166, 8, 16, 131, 133, 131, 145, 129, 209, 134, 129, 133, 1, 44, 12, 4, 202, 118, 12, 0, 70, 22, 2, 148 };

As you can see the header is 120 165 (78 9c in hex) witch is the zlib default Compression algorithme. I used the ComponentAce.Compression.ZipForge from the zlib site. I couldn't find samples on how to unzip streams(not files).

1

There are 1 best solutions below

0
On

Use SharpZipLib. It includes a full interface to zlib, and will decompress zlib streams as well as other compressed data formats such as gzip, zip, bzip2, and raw deflate.

You should avoid the .NET components provided by Microsoft as they are buggy (in particular in not properly detecting invalid input) and Microsoft has stated that they will not fix it.