Top "Zlib" questions

zlib is a library used for data compression.

Python using ZIP64 extensions when compressing large files

I have a script that compresses the output files. The problem is that one of the files is over 4Gigs. …

python zip zlib zipfile
Error: 'zlib' is an invalid command

How can I run this command in OSX? dd if=mybackup.ab bs=24 skip=1|openssl zlib -d > mybackup.tar …

macos openssl zlib
how to link zlib library

Hi I'm using boost and zlib filter to compress and decompress data. on the instruction of boost page, it is …

c++ boost zlib compression
undefined reference to `gzopen` error

My C program uses some zlib functions (like gzopen, gzread). I have included the zlib.h header file in my …

c compilation hyperlink zlib undefined-reference
zlib: Differences Between the `deflate` and `compress` Functions

What are the differences between the deflate() and compress() functions in zlib? I have looked through online examples and some …

compression zlib deflate
Python: Creating a streaming gzip'd file-like?

I'm trying to figure out the best way to compress a stream with Python's zlib. I've got a file-like input …

python gzip zlib
How to use request or http module to read gzip page into a string

I found the request module in js cannot handle gzip or inflate format http response correctly. for example: request({url:…

http node.js request zlib
ZLib Inflate() failing with -3 Z_DATA_ERROR

I am trying to unzip a file by calling the inflate function but it always fails with Z_DATA_ERROR …

c++ zlib unzip
How to decode the gzip compressed data returned in a HTTP Response in python?

I have created a client/server architecture in python, I take HTTP request from the client which is served by …

python sockets http python-2.x zlib
Compressing multiple files using zlib

The below code will compress one file. How can I compress multiple files var gzip = zlib.createGzip(); var fs = require(…

node.js compression gzip zlib