vote up 6 vote down star
3

Please recommend a C++ compression (zip) library for a commercial, closed-source application. So, not a GPL license.

This is for my day job...

flag

78% accept rate

4 Answers

vote up 14 vote down check

I know you said C++, but zlib is a very permissively licensed C library that you could use directly from a C++ app.

If I recall correctly, there are various "iostream-like" wrappers around zlib available, too.

link|flag
vote up 9 vote down

7 Zip is LGPL, meaning so long as you treat it like a 3rd-party library, your usage of it is fine in a closed-source app.

http://www.7-zip.org/

link|flag
From wikipedia: The LZMA SDK 4.62 was placed in the public domain in December 2008. en.wikipedia.org/wiki/7z – grieve Apr 15 at 14:44
vote up 0 vote down

If you need fast decompression, the best you can find is probably LZO. Be aware you need a separate (paid) commercial license when using in a closed source project. Still, if you need the fast decompression it may be well worth the money.

link|flag
vote up 0 vote down

libbzip2 is BSD-licensed and should compress better, although slower, than zlib.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.