Thuc notes © 2022

Tag 'gzip'

GZIP is a lossless compression and decompression method. it supports the compression and decompression of a data stream to produce another data stream. It is based on Deflate that combines of LZ77 and Huffman coding
Deflate is a lossless streaming compression/decompression algorithm. It’s used widely in GZIP and PNG. Deflate is a combination of LZ77 and Huffman coding algorithm to compress data.
The Huffman coding is an algorithm that is used for lossless data compression, such as gzip or PNG image format.
1 of 1