0
30kviews
Explain LZW compression with example
1 Answer
1
1.6kviews

Lempel-Ziv-Welch (LZW) Compression:

Lempel–Ziv–Welch (LZW) is a universal lossless data compression algorithm created by Abraham Lempel, Jacob Ziv, and Terry Welch.The algorithm is simple to implement, and has the potential for very high throughput in hardware implementations.It is the algorithm of the widely used Unix file compression utility compress, and is used in the GIF image format.

  • LZW compression uses a code table, as illustrated in Fig. below. A common choice is to provide 4096 entries in the table. In this case, the LZW encoded data consists entirely of 12 bit codes, each referring to one of the entries in the code table.
  • Uncompression is achieved by taking each code from the compressed file, and translating it through the code table to find what character or characters it represents.
  • Codes 0-255 in the code table are always assigned to represent single bytes from the input file.
  • For example, if only these first 256 codes were used, each byte in the original file would be converted into 12 bits in the LZW encoded file, resulting in a 50% larger file size. During uncompression, each 12 bit code would be translated via the code table back into the single bytes. Of course, this wouldn't be a useful situation.

    enter image description here

  • The LZW method achieves compression by using codes 256 through 4095 to represent sequences of bytes. For example, code 523 may represent the sequence of three bytes: 231 124 234. Each time the compression algorithm encounters this sequence in the input file, code 523 is placed in the encoded file.
  • During uncompression, code 523 is translated via the code table to recreate the true 3 byte sequence. The longer the sequence assigned to a single code, and the more often the sequence is repeated, the higher the compression achieved.

  • The LZW Compression Algorithm can be summarised as follows:

    w = NIL;

    while ( read a character k )

    {

    if wk exists in the dictionary

    w = wk;

    else

    add wk to the dictionary;

    output the code for w;

    w = k;

    }

  • Original LZW used dictionary with 4K entries, first 256 (0-255) are ASCII codes.

  • Example:

    Input string is "^WED^WE^WEE^WEB^WET"

    enter image description here

  • A 19-symbol input has been reduced to 7-symbol plus 5-code output. Each code/symbol will need more than 8 bits, say 9 bits.

  • Usually, compression doesn't start until a large number of bytes (e.g., > 100) are read in.

Please log in to add an answer.