Compress::LZMA::Simple

A simple utility of LZMA compression/decompression
Download

Compress::LZMA::Simple Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Mikio Hirabayashi
  • Publisher web site:
  • http://search.cpan.org/~mikio/

Compress::LZMA::Simple Tags


Compress::LZMA::Simple Description

A simple utility of LZMA compression/decompression The Lempel-Ziv-Markov chain-Algorithm (LZMA) is an data compression algorithm. It compresses very well (better than gzip and bzip2), compresses very slowly (much slower than bzip2) but decompresses relatively quickly.Compress::LZMA::Simple is a Perl interface of "lzmalib", which is a tiny wrapper of the LZMA SDK. "lzmalib" can be downloaded at functions "compress" and "decompress" accept both of scalar and reference as the parameter. If a scalar is given, the function returns a scalar. If a reference is given, the function returns a reference.SYNOPSYS use Compress::LZMA::Simple qw(compress decompress); my $original = "LZMA stands for Lempel-Ziv-Markov chain-Algorithm."; my $compressed = compress($original); my $decompressed = decompress($compressed); printf("%s ", $$decompressed); Requirements: · Perl


Compress::LZMA::Simple Related Software