decompress icon indicating copy to clipboard operation
decompress copied to clipboard

Pure OCaml implementation of Zlib.

Results 10 decompress issues
Sort by recently updated
recently updated
newest added

This patch unlock the ability to create a `zlib`/`gzip` document without compression. It can be useful specially for video/image or any documents which are already compressed. This patch **breaks** the...

The custom dockerfile allows installing system dependencies like zlib, the Makefile has the "make bench" target that is run once all the dependencies are installed and the opam file allows...

Brotli is supported by most browsers as a content-encoding that compressed better than gzip and deflate. See: - https://en.wikipedia.org/wiki/Brotli - https://github.com/google/brotli

For reviewer, `de.ml` is a complex code base, I should explain some parts of it.

Since it seems that ocaml-lzma is dead https://forge.ocamlcore.org/projects/ocaml-lzma/ and there are no libraries that provide a way to do that, it make sense to support it here too.

It is gaining popularity and it seems that OCaml bindings are abandoned: https://github.com/ygrek/ocaml-zstd See format description https://github.com/facebook/zstd/blob/dev/doc/zstd_compression_format.md And decoding testing tool https://github.com/facebook/zstd/tree/v1.3.4/tests#decodecorpus---tool-to-generate-zstandard-frames-for-decoder-testing

Hello! Thank you for the excellent library! For [ocaml-tiff](https://github.com/geocaml/ocaml-tiff) I'm going to need to support LZW compression so I've started adding an implementation here for that compression scheme. This is...

This fixes some typos I found in the documentation.

[BGZF](https://www.htslib.org/doc/bgzip.html#BGZF_FORMAT) is a GZIP-based block compression format widely used in bioinformatics. BGZF uses extra fields as specified in [RFC 1952](https://datatracker.ietf.org/doc/html/rfc1952) and is designed to be compatible with GZIP decompressors. The...