Home | History | Annotate | Line # | Download | only in zopfli
README revision 1.1.1.1.8.2
      1  1.1.1.1.8.2  snj Zopfli Compression Algorithm is a compression library programmed in C to perform
      2  1.1.1.1.8.2  snj very good, but slow, deflate or zlib compression.
      3  1.1.1.1.8.2  snj 
      4  1.1.1.1.8.2  snj zopfli.c is separate from the library and contains an example program to create
      5  1.1.1.1.8.2  snj very well compressed gzip files.
      6  1.1.1.1.8.2  snj 
      7  1.1.1.1.8.2  snj The basic functions to compress data are ZopfliDeflate in deflate.h,
      8  1.1.1.1.8.2  snj ZopfliZlibCompress in zlib_container.h and ZopfliGzipCompress in
      9  1.1.1.1.8.2  snj gzip_container.h. Use the ZopfliOptions object to set parameters that affect the
     10  1.1.1.1.8.2  snj speed and compression. Use the ZopfliInitOptions function to place the default
     11  1.1.1.1.8.2  snj values in the ZopfliOptions first.
     12  1.1.1.1.8.2  snj 
     13  1.1.1.1.8.2  snj Deflate creates a valid deflate stream in memory, see:
     14  1.1.1.1.8.2  snj http://www.ietf.org/rfc/rfc1951.txt
     15  1.1.1.1.8.2  snj ZlibCompress creates a valid zlib stream in memory, see:
     16  1.1.1.1.8.2  snj http://www.ietf.org/rfc/rfc1950.txt
     17  1.1.1.1.8.2  snj GzipCompress creates a valid gzip stream in memory, see:
     18  1.1.1.1.8.2  snj http://www.ietf.org/rfc/rfc1952.txt
     19  1.1.1.1.8.2  snj 
     20  1.1.1.1.8.2  snj This library can only compress, not decompress. Existing zlib or deflate
     21  1.1.1.1.8.2  snj libraries can decompress the data.
     22  1.1.1.1.8.2  snj 
     23  1.1.1.1.8.2  snj Zopfli Compression Algorithm was created by Lode Vandevenne and Jyrki
     24  1.1.1.1.8.2  snj Alakuijala, based on an algorithm by Jyrki Alakuijala.
     25