-
-
Notifications
You must be signed in to change notification settings - Fork 4
zlib
Andrew Lambert edited this page Dec 8, 2022
·
21 revisions
Protected Module zlibContains all methods, properties, classes, etc. relating to zlib.
- Adler32
- Adler32Combine
Compress- CompressBound
- CRC32
- CRC32Combine
- Deflate
- GUnZip
- GZip
- Inflate
- IsAvailable
- IsDeflated
- IsGZipped
Uncompress- Version
Used in creating or opening a compressed stream to indicate the type of stream.
-
DEFLATE_ENCODINGDeflated data in a zlib wrapper. -
GZIP_ENCODINGDeflated data in a gzip wrapper. -
RAW_ENCODINGDeflated data with no wrapper. -
Z_DETECTTry them all.
Used in creating a compressed stream to indicate the compression level.
Z_BEST_COMPRESSION=9Z_BEST_SPEED=1-
Z_DEFAULT_COMPRESSION=-1(equivalent to level 6) Z_NO_COMPRESSION=0
Used in creating a compressed stream to indicate the compression strategy. See: Deflater.Strategy
Z_DEFAULT_STRATEGYZ_FILTEREDZ_FIXEDZ_HUFFMAN_ONLYZ_RLE
Used in writing a compressed stream to indicate whether and how pending output should be flushed. See: Deflater.Deflate
Z_FINISHZ_BLOCKZ_FULL_FLUSHZ_NO_FLUSHZ_PARTIAL_FLUSHZ_SYNC_FLUSHZ_TREES
Indicates zlib's guess as to the kind of data being processed. See: Deflater.DataType
Z_ASCIIZ_BINARYZ_TEXTZ_UNKNOWN
-
DEFAULT_MEM_LVLSee: Deflater.Constructor -
Z_DEFLATEDSee:Deflater.Constructor -
Z_NEED_DICTSee: Inflater.Dictionary
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.