Innovation Award
 August 2007
Number 7 |
LZW (Lempel-Ziv-Welch) is a compression algorithm made popular for its use in the formats GIF, TIFF and PDF.
This class can be used to compress and decompress data that uses LZW algorithm in pure PHP.
It makes possible to encode and decode image and documents that employ this algorithm using only pure PHP code, thus without any special PHP extensions.
Manuel Lemos |
This class can be used to compress and uncompress data with the LZW algorithm in pure PHP code.
It can take a string of data and compress it with the LZW algorithm. It can also do the opposite, i.e. extract the original data from compressed string using the same algorithm.
| There are not enough user ratings to display for this class. |
No application links were specified for this class.

If you know an application of this package, send a message to the
author to add a link here.
| File |
Role |
Description |
lzwc.php |
Class |
The compression class |
example |
Example |
A simple example of the use of this class |