A library used for data compression. Also a crucial component of many software platforms including Linux, Mac OS X, and the iOS

learn more… | top users | synonyms

69
votes
4answers
22k views

Deflate compression browser compatibility and advantages over GZIP

UPDATE Feb 10 2012: zOompf has completed some very thorough research on this very topic here. It trumps any findings below. UPDATE Sept 11 2010: A testing platform has been created for this ...
36
votes
2answers
13k views

How can I decompress a gzip stream with zlib?

Gzip format files (created with the gzip program, for example) use the "deflate" compression algorithm, which is the same compression algorithm as what zlib uses. However, when using zlib to inflate a ...
16
votes
2answers
14k views

Python: Inflate and Deflate implementations

I am interfacing with a server that requires that data sent to it is compressed with Deflate algorithm (Huffman encoding + LZ77) and also sends data that I need to Inflate. I know that Python ...
120
votes
13answers
55k views

Ubuntu noob rails install fails on zlib

I've just moved over to Ubuntu 8.10 as my dev box; it's my first serious foray into Linux as a daily-use OS, and I'm having a hard time getting Rails going. I have followed a number of tutorials ...
50
votes
8answers
26k views

RVM Ruby 1.9.1 install can't locate zlib but its runtime and dev library are there

Trying to get Ruby 1.9.1 up and running with RVM on a fresh install (fedora). After doing rvm install 1.9.1, the rubygems error logs show that zlib can't be located no such file to load -- zlib ...
4
votes
2answers
4k views

How can I easily compress and decompress files using zlib?

How can I easily compress and decompress files using zlib?
11
votes
4answers
13k views

no module named zlib

First, please bear with me. I have hard time telling others my problem and this is a long thread... I am using pythonbrew to run multiple versions of python in Ubuntu 10.10. For installing ...
20
votes
9answers
6k views

Compression formats with good support for random access within archives?

This is similar to a previous question, but the answers there don't satisfy my needs and my question is slightly different: I currently use gzip compression for some very large files which contain ...
22
votes
7answers
15k views

How to decompress Gzip string in ruby?

Zlib::GzipReader can take "an IO, or -IO-lie, object." as it's input, as stated in docs. Zlib::GzipReader.open('hoge.gz') {|gz| print gz.read } File.open('hoge.gz') do |f| gz = ...
6
votes
5answers
8k views

How do I zip a directory of files using C++?

I'm working on a project using C++, Boost, and Qt. I understand how to compress single files and bytestreams using, for example, the qCompress() function in Qt. How do I zip a directory of multiple ...
10
votes
4answers
15k views

Installing Python-2.7 on Ubuntu 10.4

I can't seem to install zlib properly, I installed Python from source on Ubuntu10.4 '######## edit ##################### bobince and Luper helped. Make sure you install these packages and then ...
9
votes
3answers
17k views

Fatal error: Class 'ZipArchive' not found in

I have a problem that I install 'Archive_Zip 0.1.1' on Linux server, but when I try to run the script to create the zip file it gives the fatal error "Fatal error: Class 'ZipArchive' not found in ...
1
vote
4answers
5k views

I get this error when installing a gem: “ERROR: While executing gem … (Zlib::GzipFile::Error)” [duplicate]

Possible Duplicate: ERROR: While executing gem … (Zlib::GzipFile::Error) not in gzip format When installing a gem on my system, I get the following error: gem install blackbook --version ...
4
votes
2answers
9k views

Simple way to unzip a .zip file using zlib

Is there a simple example of how to unzip a .zip file and extract the files to a directory? I am currently using zlib, and while I understand that zlib does not directly deal with zip files, there ...
6
votes
7answers
9k views

Zlib-compatible compression streams?

Are System.IO.Compression.GZipStream or System.IO.Compression.Deflate compatible with zlib compression?
5
votes
2answers
8k views

zlib c++ and extracting files

All, I have started to use zlib 1.2.5 and I do not see any routine to extract from a zip file? I read about a minizip application, part of the distribution. Is that how it is supposed to be done?
5
votes
3answers
5k views

How can I compress data using Zlib, without directly using zlib.dylib?

Is there a class that allows compressing data using Zlib, or is using zlib.dylib directly the only possibility I have?
6
votes
8answers
6k views

C++ cross-platform zlib simplifer-wrapper

I'm looking for a wrapper that distills zlib to: OpenZipFile() GetItemInfo(n) UnzipItem(n) // Bonus points for unzipping recursively if item n is a directory. I see a lot of wrappers around the ...
0
votes
2answers
5k views

Where can I find an example unzipper using zlib?

I'm looking for a bare bones simple example C app for unpacking a zip file using zlib. It must support fairly new version of .zip and must have source right down to the zlib calls.
17
votes
5answers
6k views

When compressing and encrypting, should I compress first, or encrypt first?

If I were to AES-encrypt a file, and then ZLIB-compress it, would the compression be less efficient than if I first compressed and then encrypted? In other words, should I compress first or encrypt ...
6
votes
3answers
7k views

What easy zlib tutorials are there?

I'm looking for a good tutorial on zlib. I'm interested only in decompressing the archives. I also want to know how I can access a desired file inside an archive, preferably by filename alone, if that ...
4
votes
1answer
2k views

How to find a good/optimal dictionary for zlib 'setDictionary' when processing a given set of data?

I have a (huge) set of similar data files. The set is constantly growing. The size of a single file is about 10K. Each file must be compressed on its own. The compression is done with the zlib ...
4
votes
5answers
12k views

How do I read / write gzipped files?

How do I read / write gzipped files in C++? The iostream wrapper classes here look good, and here is a simple usage example: gz::igzstream in(filename); std::string line; while(std::getline(in, ...
1
vote
1answer
1k views

How to retrieve data from a attached zip file in Blackberry application?

I am using eclipse to build application for Blackberry. I attached a zip file with my application. Please help me, I don't know how to retrieve data form the zip file in application development.
4
votes
4answers
1k views

Using zlib with Unicode file paths on Windows

I'm reading gzip compressed files using zlib. Then you open a file using gzFile gzopen(const char *filepath, const char *mode); How do you handle Unicode file paths that are stored as const ...
6
votes
3answers
1k views

How do I unzip a NodeJS request's module gzip response body?

NodeJS: How do I unzip a gzipped body in a request's module response? I have tried several examples around the web but nothing works... request(url, function(err, response, body) { ...
5
votes
3answers
5k views

how to add zlib to an existing qt installation

How can I add zlib to an existing installation of Qt. I m pretty new in this so please give me detailed description! Thanks for your help in advance!
3
votes
2answers
5k views

Qt quncompress gzip data

I stumble upon a problem, and can't find a solution. So what I want to do is uncompress data in qt, using qUncompress(QByteArray), send from www in gzip format. I used wireshark to determine that ...
3
votes
3answers
5k views

Unzipping part of a .gz file using python

So here's the problem. I have sample.gz file which is roughly 60KB in size. I want to decompress the first 2000 bytes off this file. I am running into CRC check failed error cuz I guess the gzip CRC ...
2
votes
1answer
296 views

How can I decompress a vector of deflated data with Boost?

I have a vector that contains zlib-compressed (deflated) data. I would like to decompress it with Boost's filtering_istream. There is only one example on their site, which operates on a stream of data ...
1
vote
5answers
5k views

ZLIB Decompression - Client Side

I am receiving data as an "ZLIB" compressed inputstream. Using Javascript/Ajax/JQuery, I need to uncompress it on the client side. Is there a way to do so? Please help. I already have this working ...
14
votes
3answers
4k views

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 stream (input, below) and an output function which accepts a file-like (output_function, ...
4
votes
5answers
9k views

How to inflate a file with zlib.NET?

I'm using the zlib.NET library to try and inflate files that are compressed by zlib (on a Linux box, perhaps). Here's what I'm doing: zlib.ZInputStream zinput = new ...
14
votes
2answers
6k views

Python decompressing gzip chunk-by-chunk

I've a memory- and disk-limited environment where I need to decompress the contents of a gzip file sent to me in string-based chunks (over xmlrpc binary transfer). However, using the zlib.decompress() ...
10
votes
4answers
3k views

How to download and unzip a zip file in memory in NodeJs?

I want to download a zip file from the internet and unzip it in memory without saving to a temporary file. How can I do this? Here is what I tried: var url = ...
8
votes
4answers
8k views

How to compress a buffer with zlib?

There is a usage example at the zlib website: http://www.zlib.net/zlib_how.html However in the example they are compressing a file. I would like to compress a binary data stored in a buffer in ...
5
votes
1answer
335 views

How do I use PHP's stream_select() with a zlib filter?

I currently have a server daemon written in PHP which accepts incoming connections and creates network streams for them using the stream_socket_* functions and polls active streams using ...
4
votes
2answers
15k views

zlib from C++ to C#(How to convert byte[] to stream and stream to byte[])

My task is to decompress a packet(received) using zlib and then use an algoritm to make a picture from the data The good news is that I have the code in C++,but the task is to do it in C# C++ ...
1
vote
1answer
177 views

Unzip POST body with node + express

I've a simple node app that should write metrics from clients. Clients send metrics in json format zipped with python's zlib module, I'm trying to add a middleware to unzip the request post before the ...
8
votes
3answers
3k views

“Untar” file on iPhone

I'm writing an iPhone app which downloads a tar-gzipped file from a Webserver, then needs to unarchive this file so that it can be copied into the app's Documents folder. I'm using tar/gzip because I ...
6
votes
5answers
1k views

C/C++ Packing and Compression

I'm working on a commercial project that requires a couple of files to be bundled (packed) into an archive and then compressed. Right now we have zlib in our utility library, but it doesn't look like ...
3
votes
2answers
2k views

How to determine compressed size from zlib for gzipped data?

I'm using zlib to perform gzip compression. zlib writes the data directly to an open TCP socket after compressing it. /* socket_fd is a file descriptor for an open TCP socket */ gzFile gzf = ...
3
votes
3answers
10k views

zlib decompression in python

Okay so I have some data streams compressed by python's (2.6) zlib.compress() function. When I try to decompress them, some of them won't decompress (zlib error -5, which seems to be a "buffer error", ...
2
votes
2answers
2k views

zlib directly for uncompressing a zip folder for iphone

Is it possible to use the bare minimum zlib available on iPhone to uncompress a zip of a folder. I don't want to go for a open source library, please enlighten me the difficulty or possibility of ...
0
votes
1answer
6k views

python setuptools installation in centos

i have to install mysqldb module of python in my centos server. i have 2 versions of python 2.4.3 the default one 2.6 which i installed i want to install mysqldb module for 2.6 version of the ...
5
votes
2answers
1k views

Extract zlib compressed data from binary file in python

My company uses a legacy file format for Electromiography data, which is no longer in production. However, there is some interest in maintaining retro-compatibility, so I am studying the possibility ...
5
votes
3answers
437 views

Using zlib filter with a socket pair

For some reason, the zlib.deflate filter doesn't seem to be working with socket pairs generated by stream_socket_pair(). All that can be read from the second socket is the two-byte zlib header, and ...
4
votes
1answer
272 views

Boost IO Stream and ZLib speed up

I have a large file of data I have compressed with Zlib using boost IOStreams and filtering stream buffers: boost::iostreams::array_source uncompressedArray( reinterpret_cast< const char* >( ...
4
votes
2answers
1k views

One library for deflate, gzip, and zlib in .net

First, let's define some commonly confused terms: deflate = compression_algorithm; zlib = header + deflate + trailer; gzip = header + deflate + trailer; I'm looking for a library that will ...
3
votes
3answers
1k views

Python zlib output, how to recover out of mysql utf-8 table?

In python, I compressed a string using zlib, and then inserted it into a mysql column that is of type blob, using the utf-8 encoding. The string comes back as utf-8, but it's not clear how to get it ...

1 2