Gzip
From Just Solve the File Format Problem
(Difference between revisions)
(→Software: Deark) |
(→Software: XAD) |
||
(4 intermediate revisions by 4 users not shown) | |||
Line 17: | Line 17: | ||
== Specifications == | == Specifications == | ||
* RFC 1952 | * RFC 1952 | ||
+ | == Sample files == | ||
+ | * {{DexvertSamples|archive/gz}} | ||
== Software == | == Software == | ||
Line 25: | Line 27: | ||
* [https://github.com/google/zopfli zopfli] (Gzip-compatible, better compression, but very slow compression) | * [https://github.com/google/zopfli zopfli] (Gzip-compatible, better compression, but very slow compression) | ||
* [http://pastebin.com/kYKpfUjd Tiny gzip decompressor without using zlib] (C++) | * [http://pastebin.com/kYKpfUjd Tiny gzip decompressor without using zlib] (C++) | ||
− | |||
* {{Deark}} | * {{Deark}} | ||
+ | * {{XAD}} | ||
+ | |||
+ | See also [[DEFLATE#Software]]. | ||
== Links == | == Links == | ||
Line 33: | Line 37: | ||
* [https://twitter.com/angealbertini/status/534817626342436864/photo/1 Chart of format] | * [https://twitter.com/angealbertini/status/534817626342436864/photo/1 Chart of format] | ||
* [https://stackoverflow.com/questions/20762094/how-are-zlib-gzip-and-zip-related-what-do-they-have-in-common-and-how-are-they/20765054#20765054 How are zlib, gzip and Zip related? What do they have in common and how are they different?] - Response to StackOverflow question by zlib/gzip co-creator Mark Adler | * [https://stackoverflow.com/questions/20762094/how-are-zlib-gzip-and-zip-related-what-do-they-have-in-common-and-how-are-they/20765054#20765054 How are zlib, gzip and Zip related? What do they have in common and how are they different?] - Response to StackOverflow question by zlib/gzip co-creator Mark Adler | ||
+ | * [[GZSteg]] - hiding a file within a gzip |
Latest revision as of 10:33, 12 April 2024
gzip is a compressed file format and command line utility used primarily on Unix-style operating systems, but available cross-platform. It uses DEFLATE compression.
Contents |
[edit] Identification
gzip files begin with two signature bytes: 0x1F 0x8B
. The third byte indicates the compression method, and is normally 0x08
(meaning DEFLATE).
gzip 0.5 apparently used Freeze/Melt 1.x format, with signature bytes 0x1F 0x9E
.
[edit] Specifications
[edit] Sample files
[edit] Software
- Original gzip
- GNU gzip
- 7-Zip
- zlib
- zopfli (Gzip-compatible, better compression, but very slow compression)
- Tiny gzip decompressor without using zlib (C++)
- Deark
- XAD framework
See also DEFLATE#Software.
[edit] Links
- Wikipedia article
- Dissecting the GZIP format
- Chart of format
- How are zlib, gzip and Zip related? What do they have in common and how are they different? - Response to StackOverflow question by zlib/gzip co-creator Mark Adler
- GZSteg - hiding a file within a gzip