manpagez: man pages & more
man IO::Compress::Brotli(3)
Home | html | info | man
IO::Compress::Brotli(3)                    User Contributed Perl Documentation



NAME

       IO::Compress::Brotli - Write Brotli buffers/streams


SYNOPSIS

         use IO::Compress::Brotli;

         # compress a buffer
         my $encoded = bro $encoded;

         # compress a stream
         my $bro = IO::Compress::Brotli->create;
         while(have_input()) {
            my $block = get_input_block();
            my $encoded_block = $bro->compress($block);
            handle_output_block($encoded_block);
         }
         # Need to finish the steam
         handle_output_block($bro->finish());


DESCRIPTION

       IO::Compress::Brotli is a module that compressed Brotli buffers and
       streams. Despite its name, it is not a subclass of IO::Compress::Base
       and does not implement its interface. This will be rectified in a
       future release.

   One-shot interface
       If you have the whole buffer in a Perl scalar use the bro function.

       bro($input, $quality, $window)
           Takes a whole uncompressed buffer as input and returns the
           compressed data using the supplied quality and window parameters.
           If quality and window parameters are not supplied, default values
           are used (as described under the object-oriented interface).

           Exported by default.

   Streaming interface
       If you want to process the data in blocks use the object oriented
       interface. The available methods are:

       IO::Compress::Brotli->create
           Returns a IO::Compress::Brotli instance. Please note that a single
           instance cannot be used to decompress multiple streams.

       $bro->window($window)
           Sets the window parameter on the brotli encoder.  Defaults to
           BROTLI_DEFAULT_WINDOW (22).

       $bro->quality($quality)
           Sets the quality paremeter on the brotli encoder.  Defaults to
           BROTLI_DEFAULT_QUALITY (11).

       $bro->mode($mode)
           Sets the brotli encoder mode, which can be any of "generic", "text"
           or "font". Defaults to "generic".

       $bro->compress($block)
           Takes the a block of uncompressed data and returns a block of
           compressed data. Dies on error.

       $bro->flush()
           Flushes any pending output from the encoder.

       $bro->finish()
           Tells the encoder to start the finish operation, and flushes any
           remaining compressed output.

           Once finish is called, the encoder cannot be used to compress any
           more content.

           NOTE: Calling finish is required, or the output might remain
           unflushed, and the be missing termination marks.


SEE ALSO

       Brotli Compressed Data Format Internet-Draft:
       <https://www.ietf.org/id/draft-alakuijala-brotli-08.txt>

       Brotli source code: <https://github.com/google/brotli/>


AUTHOR

       Marius Gavrilescu, <marius@ieval.ro>

       The encoder bindings, modernisation of the decoder bindings and a clean
       up of the overall project were contributed by:

       Quim Rovira, <quim@rovira.cat>
       AEvar Arnfjordh Bjarmason, <avarab@gmail.com>
       Marcell Szathmari
       Mattia Barbon, <mattia@barbon.org>


COPYRIGHT AND LICENSE

       Copyright (C) 2015-2018 by Marius Gavrilescu

       This library is free software; you can redistribute it and/or modify it
       under the same terms as Perl itself, either Perl version 5.20.2 or, at
       your option, any later version of Perl 5 you may have available.

perl v5.34.3                      2023-10-31           IO::Compress::Brotli(3)

io-compress-brotli 0.17.0 - Generated Sat Apr 13 06:56:14 CDT 2024
© manpagez.com 2000-2025
Individual documents may contain additional copyright information.