GZip
It's impossible to know the uncompressed size without read all data.
gzip is file format used to compress. It use deflate compression algorithm
gzip is GZIP headers, DEFLATE data (compressed data), and a checksum
zlib is the most common library to handle gzip file format
Compress gzip without save filename and timestamp gzip -9 -n -k -f file
Zopfli (see also the Thread about it on encode.su)
DeflOpt (Win, Unix?) support GZIP, PNG and ZIP files (see also the Thread about it on encode.su)
ScriptGZIP (Win CMD)
gzthermal use to view compression efficiency (see also the Thread about it on encode.su)
deflate-analyzer - same as
gzthermal
but online
Resources
Concatenation
You can concatenate/merge multiple gzip in one gzip:
The same as cat 1.txt 2.txt 3.txt
Can be usefull when you want add a small data before or after a big chunk already compressed
https://tools.ietf.org/html/rfc1952#page-5
Last updated