PKWARE DCL Implode
From Just Solve the File Format Problem
(Difference between revisions)
Dan Tobias (Talk | contribs) |
(→Software) |
||
Line 18: | Line 18: | ||
* [[zlib]] does not support it directly, but its source code includes a decoder (contrib/blast). | * [[zlib]] does not support it directly, but its source code includes a decoder (contrib/blast). | ||
* [https://github.com/krisives/lawine/blob/master/lawine/misc/implode.c Lawine] (a Starcraft/Brood War Library) | * [https://github.com/krisives/lawine/blob/master/lawine/misc/implode.c Lawine] (a Starcraft/Brood War Library) | ||
+ | * [https://github.com/ladislav-zezula/StormLib/tree/master/src/pklib StormLib/pklib] | ||
* https://github.com/JoshVarga/blast - An encoder/decoder written in Go | * https://github.com/JoshVarga/blast - An encoder/decoder written in Go | ||
* [https://support.pkware.com/display/PKZIP/DCL PKWARE DCL] | * [https://support.pkware.com/display/PKZIP/DCL PKWARE DCL] |
Revision as of 19:26, 17 March 2019
PKWARE DCL Implode is a compressed data format associated with PKWARE Data Compression Library (DCL), a commercial data compression software product. It is not the only format supported by DCL, but it is possibly the most notable one.
DCL Implode is not the same format as ZIP's old "implode" compression method (#6). It is unfortunate that there are two formats named "implode" associated with the same company. It can be used in ZIP, as compression method #10, but support for this is limited.
The terms "blast" and "explode" are sometimes used in association with this format.
Related formats
- InstallShield Z
- ZIP (compression method #10)
- TTComp archive (?)
- CMZ (archive format) (?)
Software
- zlib does not support it directly, but its source code includes a decoder (contrib/blast).
- Lawine (a Starcraft/Brood War Library)
- StormLib/pklib
- https://github.com/JoshVarga/blast - An encoder/decoder written in Go
- PKWARE DCL