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