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
POE::Filter::LZW(3) User Contributed Perl Documentation POE::Filter::LZW(3)

POE::Filter::LZW - A POE filter wrapped around Compress::LZW

version 1.74

    use POE::Filter::LZW;

    my $filter = POE::Filter::LZW->new();
    my $scalar = 'Blah Blah Blah';
    my $compressed_array   = $filter->put( [ $scalar ] );
    my $uncompressed_array = $filter->get( $compressed_array );

    use POE qw(Filter::Stackable Filter::Line Filter::LZW);

    my ($filter) = POE::Filter::Stackable->new();
    $filter->push( POE::Filter::LZW->new(),
                   POE::Filter::Line->new( InputRegexp => '\015?\012', OutputLiteral => "\015\012" ),

POE::Filter::LZW provides a POE filter for performing compression/decompression using Compress::LZW. It is suitable for use with POE::Filter::Stackable.

"new"
Creates a new POE::Filter::LZW object.

"get_one_start"
"get_one"
"get"
Takes an arrayref which is contains lines of compressed input. Returns an arrayref of decompressed lines.
"put"
Takes an arrayref containing lines of uncompressed output, returns an arrayref of compressed lines.
"clone"
Makes a copy of the filter, and clears the copy's buffer.
"level"
Sets the compression level. Consult Compress::LZW for details.

POE

Compress::LZW

POE::Filter::Stackable

Chris Williams <chris@bingosnet.co.uk>

This software is copyright (c) 2017 by Chris Williams.

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

2017-02-24 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.