Skip to content

zlib.Inflater.Constructor

Andrew Lambert edited this page Nov 26, 2022 · 11 revisions

zlib.Inflater.Constructor

Method Signature

 Sub Constructor(Encoding As Integer = zlib.DEFLATE_ENCODING)
 Sub Constructor(CopyStream As zlib.Inflater)

Parameters

Constructor(Integer)

Name Type Comment
Encoding Integer Optional. The type of compression.

Constructor(zlib.Inflater)

Name Type Comment
CopyStream zlib.Inflater An instance of Inflater to duplicate

Remarks

Constructs a new Inflater, or duplicates an existing Inflater. Duplication can be useful when randomly accessing a long stream. The first pass through the stream can periodically record a duplicate of the inflate state, allowing restarting inflate at those points when randomly accessing the stream.

Entry-level points of interest denoted by "☜"



Clone this wiki locally