This project implements a ZipOutputStream using the Zopfli algorithm.
- Better compression
- Easy to use (drop-in replacement)
- Zip archive which allows to compress multiple files in one archive.
- Streaming mode which allows to compress very large files
- Low memory consumption
Default memory consumption (configurable):
input buffer = window + masterblock + 1
output buffer = masterblock
32768B + 20000000B + 1B + 20000000B = 40032769B ~ 40MB
This is Work in progress. which is not ready for production.