Tagged Questions
A library used for data compression. Also a crucial component of many software platforms including Linux, Mac OS X, and the iOS
78
votes
13answers
35k 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 ...
57
votes
4answers
14k views
Deflate compression browser compatibility and advantages over GZIP
UPDATE Sept 11 2010:
A testing platform has been created for this here
HTTP 1.1 definitions of GZIP and DEFLATE (zlib) for some background information:
" 'Gzip' is the gzip format, and ...
36
votes
6answers
16k 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 ...
17
votes
1answer
5k 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 ...
14
votes
7answers
3k 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 ...
11
votes
3answers
2k 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, ...
11
votes
7answers
8k 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 = ...
10
votes
3answers
894 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 ...
9
votes
1answer
241 views
Python equivalent of unix cksum function
I've been looking for the equivalent python method for the unix cksum command:
http://pubs.opengroup.org/onlinepubs/7990989775/xcu/cksum.html
$ cksum ./temp.bin
1605138151 712368 ./temp.bin
So far ...
9
votes
2answers
9k 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 ...
8
votes
3answers
3k views
sqlite3.ProgrammingError: You must not use 8-bit bytestrings unless you use a text_factory that can interpret 8-bit bytestrings
Using SQLite3 in Python, I am trying to store a compressed version of a snippet of UTF-8 HTML code.
Code looks like this:
...
c = connection.cursor()
c.execute('create table blah (cid integer ...
7
votes
1answer
2k views
Difference between mod_deflate and zlib output_compression
Can anyone tell me the difference between using mod_deflate and zlib output_compression?
I understand that zlib is done in PHP and mod_deflate is done in Apace, my .htaccess file looks like:
...
7
votes
2answers
3k 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() ...
7
votes
3answers
1k 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 ...
7
votes
5answers
22k views
Save file from a byte[] in C# NET 3.5
My TCP Client receives a image within a packet.The image is compressed with zlib.The task is to decompress the image and put it on the form.
I'm planning to save the compressed image in the current ...
6
votes
4answers
232 views
zlib build error with GHC
I'm using a VM with the following configuration:
Arch Linux (3.0-ARCH kernel)
GHC 7.0.3
cabal-install 0.10.2
Cabal library 1.10.1.0
When I try to build zlib using cabal...
$ cabal install zlib
...
6
votes
1answer
85 views
zlib, deflate: How much memory to allocate?
I am using zlib to compress a stream of text data. The text data comes in chunks, and for each chunk, deflate() is called, with flush set to Z_NO_FLUSH. Once all chunks have been retrieved, deflate() ...
6
votes
2answers
1k views
zlib decompression failing
I'm writing an application that needs to uncompress data compressed by another application (which is outside my control - I cannot make changes to it's source code). The producer application uses zlib ...
6
votes
5answers
928 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 ...
5
votes
2answers
144 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 ...
5
votes
3answers
620 views
Node.js/Javascript Equivalent of Java's Deflater class
I have a Java backend that uses Inflater. I wish to feed data to it via Node.js.
Is there any equivalent to the Deflater class?
EDIT: I should clarify a little. I have tried using ...
5
votes
4answers
6k 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 ...
4
votes
1answer
140 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
5answers
2k views
Plone 4.0.5 unified installer failing on Ubuntu 11.04 (natty) with zip/zlib error
I am a Plone newbie and am trying to install Plone 4.0.5 on Ubuntu 11.04 Natty using the Unified Installer.
I unpack the installer and run the ./install.sh zeo as root and I get the following error:
...
4
votes
3answers
4k 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 ...
4
votes
2answers
563 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 ...
4
votes
2answers
3k views
Building cURL & libcurl with Visual Studio 2010
With the help of question #197444, I have managed to build cURL & libcurl from source on Windows from within the Visual Studio 2010 IDE, OpenSSL 1.0.0, and zlib 1.2.5. The problem I see is that at ...
4
votes
3answers
648 views
Combining deflate and minify - am i creating overhead?
I minify my css and js files on the fly with google.codes minify. I have also set my .htaccess to use deflate on all my css and js files - the reason beeing some js files (like shadowbox and tinymce) ...
4
votes
3answers
2k views
How can I compress data using Zlib, without directly using zlib.dylib?
Is there a class that allows to compress data using Zlib, or is using zlib.dylib directly the only possibility I have?
4
votes
2answers
3k views
Transparent SQLite Data Compression
I am looking for an existing solution for transparent SQLite 3 zlib compression using a custom VFS implementation and a custom IO methods implementation.
Is anyone aware of an existing project that ...
4
votes
9answers
1k views
free non-gpl data compression libraries
i'm writing project that stores data, so i need to compress it. I've tried zlib but it's bottleneck of my project. So maybe there is faster solution. I don't need a great compress ratio, but i'm ...
4
votes
2answers
12k 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++
...
4
votes
4answers
5k 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 ...
4
votes
7answers
4k views
Zlib-compatible compression streams?
Are System.IO.Compression.GZipStream or System.IO.Compression.Deflate compatible with zlib compression?
3
votes
2answers
59 views
TCompressionStream initialize with data
The SPDY protocol specifies to initialize the compression of name/value data with a predefined block of data:
...
3
votes
3answers
66 views
How to decompress stream deflated with java.util.zip.Deflater in .NET?
I have a dump after java.util.zip.Deflater (can confirm it's valid because Java's Inflater opens it fine) and need to open it in .NET:
byte[] content = ReadSample(sampleName);
var input = new ...
3
votes
2answers
117 views
gzcompress() randomly inserting extra data?
I've been researching this all morning and have decided that as a last-ditch effort, maybe someone on Stack Overflow has a "been-there, done-that" type of answer for me.
Background Recently, I ...
3
votes
2answers
225 views
Building zlib libz.a for 32 bit
I am trying to compile a 32-bit version (MinGW) of a program I wrote using zlib. Until now, I've never has to compile for 32-bit so the version of zlib I compiled from source (libz.a) is 64-bit. I ...
3
votes
2answers
671 views
zlib compressing byte array?
I have this uncompressed byte array:
0E 7C BD 03 6E 65 67 6C 65 63 74 00 00 00 00 00 00 00 00 00 42 52 00 00 01 02 01
00 BB 14 8D 37 0A 00 00 01 00 00 00 00 05 E9 05 E9 00 00 00 00 00 00 00 00 00 ...
3
votes
1answer
69 views
Does zlib allow decompressing from the middle of a file
Does zlib allow decompressing from the middle of a file?
What I mean is, if I call inflate with a stream that points to the middle of compressed data without calling inflate to the data preceding the ...
3
votes
1answer
284 views
Fatal error when using gzopen() : undefined function
I want to open a .gz file using the gzopen function and i got this error:
Fatal error: Call to undefined function gzopen()
Here some details about my installation:
OS : Ubuntu 10.04 up to date
...
3
votes
2answers
1k 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 ...
3
votes
3answers
427 views
zlib memory usage / performance. With 500kb of data
Is zLib Worth it? Are there other better suited compressors?
I am using an embedded system. Frequently, I have only 3MB of RAM or less available to my application. So I am considering using zlib to ...
3
votes
2answers
2k 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?
3
votes
3answers
1k 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 ...
3
votes
3answers
907 views
C++ wrapper code to extract .zip file?
I want to unzip the .zip file.
can anyone suggest me good C++ wrapper for it ?
3
votes
3answers
259 views
Difference between stateless and stateful compression?
In the chapter Filters (scroll down ~50%) in an article about the Remote Call Framework are mentioned 2 ways of compression:
ZLib stateless compression
ZLib stateful compression
What is the ...
3
votes
2answers
632 views
Zlib compression in boost::iostreams not compatible with zlib.NET
I want to send compressed data between my C# to a C++ application in ZLIB format. In C++, I use the zlib_compressor/zlib_decompressor available in boost::iostreams. In C#, I am currently using the ...
3
votes
2answers
3k 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
2answers
786 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 = ...