LZW Compression
Revision as of 05:29, 20 September 2008 by Haravikk Mistral (talk | contribs)
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
LZW Compression
The LZW compression standard is a simple to implement, and fairly good compression algorithm. It does not perform any statistical analysis of the input data and thus is not optimal, however it can see gains of around 20-30% on most natural language text of sufficient size. Other properties of the algorithm are its relatively efficient, stream-compatible encryption.
LZW compression should be used where you want to reduce the size of data by a modest amount with good performance and low memory overhead.
For more information regarding the algorithm you may view the Wikipedia page.