LucCappellaro / jzopfli-stream

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jzopfli-stream

This project implements a ZipOutputStream using the Zopfli algorithm.

Advantages:

  1. Better compression
  2. Easy to use (drop-in replacement)
  3. Zip archive which allows to compress multiple files in one archive.
  4. Streaming mode which allows to compress very large files
  5. Low memory consumption

Default memory consumption (configurable):

input buffer = window + masterblock + 1
output buffer = masterblock
32768B + 20000000B + 1B + 20000000B = 40032769B ~ 40MB

Note:

This is Work in progress. which is not ready for production.

About


Languages

Language:Java 100.0%