Difference between revisions of "CompressedDataFormat"
m |
(Updated for 11.0) |
||
Line 7: | Line 7: | ||
;gzip: The gzip format is DEFLATE-compressed data with a slightly larger header than zlib. Since it uses DEFLATE it has the same compression characteristics as the zlib format. | ;gzip: The gzip format is DEFLATE-compressed data with a slightly larger header than zlib. Since it uses DEFLATE it has the same compression characteristics as the zlib format. | ||
+ | {{New feature|11.0| | ||
+ | ;deflate: Raw DEFLATE-compressed data (no header). | ||
+ | }} | ||
== See Also == | == See Also == | ||
* [[love.math.compress]] | * [[love.math.compress]] |
Revision as of 20:34, 1 April 2018
Available since LÖVE 0.10.0 |
This enum is not supported in earlier versions. |
Compressed data formats.
Constants
- lz4
- The LZ4 compression format. Compresses and decompresses very quickly, but the compression ratio is not the best. LZ4-HC is used when compression level 9 is specified. Some benchmarks are available here.
- zlib
- The zlib format is DEFLATE-compressed data with a small bit of header data. Compresses relatively slowly and decompresses moderately quickly, and has a decent compression ratio.
- gzip
- The gzip format is DEFLATE-compressed data with a slightly larger header than zlib. Since it uses DEFLATE it has the same compression characteristics as the zlib format.
Available since LÖVE 11.0
- deflate
- Raw DEFLATE-compressed data (no header).
See Also
Other Languages
Dansk –
Deutsch –
English –
Español –
Français –
Indonesia –
Italiano –
Lietuviškai –
Magyar –
Nederlands –
Polski –
Português –
Română –
Slovenský –
Suomi –
Svenska –
Türkçe –
Česky –
Ελληνικά –
Български –
Русский –
Српски –
Українська –
עברית –
ไทย –
日本語 –
正體中文 –
简体中文 –
Tiếng Việt –
한국어
More info