Compress String

bin = zlib.deflate(txt)
bin = zlib.deflate(txt, [isdeflate])
bin = zlib.deflate(txt, windowsize, level)

Compress the string txt, with options.

Parameter Type Description
txt string Text to compress
isdelate boolean True = header less raw stream (like C# DeflateStream)
windowsize integer Dictionary window size. (Default = 15).
Returns Type Description
bin string Compressed data
windowsize value Description
15 zlib-header
-15 raw header
31 gzip header

See: zlib documentation for initdeflate2