Home > Archive > Compression > June 2007 > compression library
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
compression library
|
|
|
| I'm looking for a C (or C++) compression library that enable to
compress with multiples implementations of diferents algorithms (like
bzip2, zlib, lzma and so on). The idea of something like this is that
the algorithms must be pluginables or easily implementes. Does anyone
know any like this? or similar or whatever.
i need to change the compression algorithm dinamically. so, i need
something like "an abstration layer" with "virtual interface" to be
implemented (which could be implemented using zlib, bzip2, lzma, lzw
and so on).
Exists anything like this or is futile my search?
Poyo
| |
| Hans-Peter Diettrich 2007-06-26, 7:55 am |
| poyo wrote:
> I'm looking for a C (or C++) compression library that enable to
> compress with multiples implementations of diferents algorithms (like
> bzip2, zlib, lzma and so on). The idea of something like this is that
> the algorithms must be pluginables or easily implementes. Does anyone
> know any like this? or similar or whatever.
Have a look at 7zip. It defines an interface, and supplies many modules
for common (un)compression methods.
DoDi
|
|
|
|
|