Compression util

Compression

Input string, a URL for download or drag-n-drop a file, to compress using the Deflate, Gzip, Brotli, LZMA, Zstandard and Snappy algorithms. Compressed data and performance benchmarks will be outputtet.


Decompression

Input string, a URL for download or drag-n-drop a file, to decompress. BASE64 encoded compressed data is accepted too. The tool will figure out what algorith was used for compression - and output the decompressed data.


Result

Decompression


Input was identified as BASE64 encoded, Brotli compressed, text.

Input was - in it's original BASE64 encoded form - 180 bytes long (6% compression). The raw BASE64 decoded data was 135 bytes long (29% compression).

The uncompressed data was 191 bytes long.




Decompressed text


Vide igitur ne non debeas verbis nostris uti, sententiis tuis. Age, inquies, ista parva sunt. Cuius tanta tormenta sunt, ut in iis beata vita, si modo dolor summum malum est, esse non possit.

Log

000+000
  • Init
000+000
  • Parse input
001+001
  • Input of 180 bytes is used
001+000
  • Done
001+000
  • Run thrugh algorithms
004+003
  • No luck trying Deflate algorithm!
005+000
  • No luck trying Gzip algorithm!
486+482
  • No luck trying Brotli algorithm!
505+019
  • No luck trying LZMA algorithm!
572+067
  • No luck trying Zstandard algorithm!
629+057
  • No luck trying Snappy algorithm!
629+000
  • Done
629+000
  • No luck - try parseing as BASE64 encoded data
629+000
  • BASE64 decoded input into 135 bytes of data
629+000
  • Run thrugh algorithms
629+000
  • No luck trying Deflate algorithm!
629+000
  • No luck trying Gzip algorithm!
659+030
  • Success on Brotli algorithm! Decompressed into 191 bytes
659+000
  • Done
659+000
  • Done
659+000
  • Length of decompressed data is 191 bytes.