Difference between revisions of "Zlib.deflate"

From GiderosMobile
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 
'''Available since:''' Gideros 2015.04.18<br/>
 
'''Available since:''' Gideros 2015.04.18<br/>
 +
'''Class:''' [[zlib]]<br/>
 +
 
=== Description ===
 
=== Description ===
Return a deflate stream.
+
Returns a deflated stream.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
(stream) = zlib.deflate(sink,level,method,windowBits,memLevel,strategy,dictionary)
 
(stream) = zlib.deflate(sink,level,method,windowBits,memLevel,strategy,dictionary)
</source>
+
</syntaxhighlight>
'''sink''': (function or table) function | { write: function [, close: function, flush: function ] }, ''''''<br/>
+
 
 +
=== Parameters ===
 +
'''sink''': (function or table) function | { write: function [, close: function, flush: function ] }, <br/>
 
'''level''': (number) compression level, 0 no compression, 9 best compression, -1 default compression '''optional'''<br/>
 
'''level''': (number) compression level, 0 no compression, 9 best compression, -1 default compression '''optional'''<br/>
 
'''method''': (number) compression method, should be 8 for this version '''optional'''<br/>
 
'''method''': (number) compression method, should be 8 for this version '''optional'''<br/>
Line 13: Line 17:
 
'''strategy''': (number) 1 - Filtered, 2 - Huffman, 3 - RLE, 4 - Fixed, 0 - default '''optional'''<br/>
 
'''strategy''': (number) 1 - Filtered, 2 - Huffman, 3 - RLE, 4 - Fixed, 0 - default '''optional'''<br/>
 
'''dictionary''': (string) compression dictionary '''optional'''<br/>
 
'''dictionary''': (string) compression dictionary '''optional'''<br/>
'''Returns''' (stream) deflate stream<br/>
+
 
 +
=== Return values ===
 +
'''Returns''' (stream) deflated stream<br/>
 +
 
 +
{{Zlib}}

Latest revision as of 23:38, 1 December 2023

Available since: Gideros 2015.04.18
Class: zlib

Description

Returns a deflated stream.

(stream) = zlib.deflate(sink,level,method,windowBits,memLevel,strategy,dictionary)

Parameters

sink: (function or table) function | { write: function [, close: function, flush: function ] },
level: (number) compression level, 0 no compression, 9 best compression, -1 default compression optional
method: (number) compression method, should be 8 for this version optional
windowBits: (number) from 8 to 15, larger values of this parameter result in better compression at the expense of memory usage optional
memLevel: (number) 1 uses minimum memory but is slow and reduces compression ratio; 9 uses maximum memory for optimal speed optional
strategy: (number) 1 - Filtered, 2 - Huffman, 3 - RLE, 4 - Fixed, 0 - default optional
dictionary: (string) compression dictionary optional

Return values

Returns (stream) deflated stream