-
-
Notifications
You must be signed in to change notification settings - Fork 3
zlib.Inflater
Andrew Lambert edited this page Oct 10, 2017
·
19 revisions
zlib.Inflater
Public Class Inflater
This class performs decompression of a deflate
stream. If you don't need low-level control over the decompression process then the easier to use ZStream class should be preferred.
This example gunzips a string:
Dim gzstring As String ' assume a gzipped string
Dim inf As New zlib.Inflater(zlib.GZIP_ENCODING)
Dim uncompressed As String = inf.Inflate(gzstring)
Wiki home | Project page | Bugs | Become a sponsor
Text and code examples are Copyright ©2014-24 Andrew Lambert, offered under the CC BY-SA 3.0 License.