-
-
Notifications
You must be signed in to change notification settings - Fork 3
zlib.Inflater
Andrew Lambert edited this page Nov 26, 2022
·
19 revisions
zlib.Inflater
Protected Class Inflater
This class represents a decompression stream. If you don't need low-level control over the decompression process then the easier to use ZStream class should be preferred.
- Avail_In
- Avail_Out
- Constructor
- Inflate
- InflateMark
- LastError
- Reset
- SyncToNextFlush
- Total_In
- Total_Out
- DataType As UInt32
- Dictionary As MemoryBlock
- Encoding As Integer
- IgnoreChecksums As Boolean
- IsOpen As Boolean
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.