ImageGear for C and C++ on Linux v20.0 - Updated
LZW (Lempel-Ziv-Welch) Compression
[No Target Defined] > File Formats and Compressions > Compressions > LZW (Lempel-Ziv-Welch) Compression

LZW Compression

Full Name Lempel-Zif-Welch (LZW) compression
Compression ID IG_COMPRESSION_LZW = 8
ImageGear Component GIF/TIFF-LZW
Bit Depth 1, 2, 4, 8, 16 bpc
File Formats GIF, Adobe PDF, Adobe PS, TIFF

Comments:

LZW compression works by finding patterns of data and assigning codes. It works best on highly-patterned images. Images with irregular patterning, or "noise," are not good candidates for this type of compression.

This compression scheme is "dictionary-based". This refers to the array of codes that identify each data pattern found in the image. The "dictionary" begins with a table that contains a code for each possible value in the image. If LZW compression is used on 8-bit images, a LZW "dictionary" is initialized with codes for 256 (28) values. As the file data is read, new values are added to the table for each unique pattern of data found. In the interest of saving space, the dictionary is not saved with the compressed file. The same dictionary is actually rebuilt when the data is decoded.

Is this page helpful?
Yes No
Thanks for your feedback.