GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Compress::LZW(3) User Contributed Perl Documentation Compress::LZW(3)

Compress::LZW - Pure-Perl implementation of scaling LZW

version 0.04

 use Compress::LZW;
  
 my $compressed = compress($some_data);
 my $data       = decompress($compressed);

"Compress::LZW" is a perl implementation of the Lempel-Ziv-Welch compression algorithm, which should no longer be patented worldwide. It is shooting for loose compatibility with the flavor of LZW found in the classic UNIX compress(1), though there are a few variations out there today. I test against ncompress on Linux x86.

Accepts a scalar, returns compressed data in a scalar.

Wraps Compress::LZW::Compressor

Accepts a (compressed) scalar, returns decompressed data in a scalar.

Wraps Compress::LZW::Decompressor

Default: "compress" "decompress"

The implementations, Compress::LZW::Compressor and Compress::LZW::Decompressor.

Other Compress::* modules, especially Compress::LZV1, Compress::LZF and Compress::Zlib.

I definitely studied some other implementations that deserve credit, in particular: Sean O'Rourke, <SEANO> - Original author, "Compress::SelfExtracting", and another by Rocco Caputo which was posted online.

Meredith Howard <mhoward@cpan.org>

This software is copyright (c) 2015 by Meredith Howard.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

2015-02-10 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.