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

0
votes
2answers
3k views

Cross Compile OpenSSH for arm

Does anybody know how I can cross compile OpenSSH for arm? I've almost tried all the methods I could find in google, but none of them worked! This is what I have done: First I've downloaded Zlib ...
3
votes
2answers
2k views

What does a zlib header look like?

In my project I need to know what a zlib header looks like. I've heard it's rather simple but I cannot find any description of the zlib header. For example, does it contain a magic number?
0
votes
3answers
53 views

ZLib Decompression in C++

I am trying to get a function going to unzip a single text file compressed with .gz. It needs to uncompress the .gz file given its path and write the uncompressed text file given its destination. I am ...
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 ...
1
vote
1answer
37 views

RCPP error: undefined symbol: _ZTIN4Rcpp7RObjectE on package install

Using the default hello world program through Rcpp.package.skeleton I 'sometimes' get this error on install. Error in dyn.load(file, DLLpath = DLLpath, ...) : unable to load shared object ...
0
votes
3answers
46 views

Using the Windows 8 SDK to compile for Windows 7

(This question uses zlib as an example but isn't specific to it.) I'm trying to compile zlib on Windows using the MSVC project file it comes with. I'm using VS2012 with the Windows 8 SDK, but my ...
0
votes
3answers
67 views

Extract text from pdf using zlib

I am using that function to find a text in the pdf file and replace that text with another text. The problem is when I make inflate and then change the text and deflate, in the final pdf some texts or ...
0
votes
2answers
1k views

Implementing zLib compression in Flex and Java

I am sending some JSON data from my Flex application to the Java side for business processing. Now on top of that, I have added some code to compress(zLib) the data at Flex side and then pass it ...
0
votes
1answer
12 views

ZLIB inflate give 'data error' in PHP

I've got a file that has zlib deflated blocks of 4096 bytes. I'm able to inflate at least 1 block of 4096 bytes with C++, using Minzip's inflate implementation, without garbled text or data error. ...
0
votes
2answers
1k views

Brew doctor: dyld: Library not loaded & Error: No available formula for zlib

When I brew doctor I get the following errors: dyld: Library not loaded: /usr/lib/libltdl.7.dylib Referenced from: /usr/local/bin/php Reason: image not found Error: No available formula for zlib ...
0
votes
1answer
57 views

unknown compression method with zlib

I have a problem uncompressing a file that should be compressed atm with zlib. The file is a icecache file This is from the documentation: Cache files are created on a per object and per frame ...
0
votes
1answer
26 views

zlib inflate CHUNK size has to be the same as the size used in deflation?

I followed the zlib inflate example from http://zlib.net/zlib_how.html to decompress a zipped file. Even after I defined the CHUNK size as 256KB, I see the output data of each inflate() function call ...
6
votes
3answers
4k views

zlib.error: Error -3 while decompressing: incorrect header check

I have a gzip file and I am trying to read it via Python as below: import zlib do = zlib.decompressobj(16+zlib.MAX_WBITS) fh = open('abc.gz', 'rb') cdata = fh.read() fh.close() data = ...
0
votes
1answer
36 views

Is there a node.js (server) compatible ZLIB.deflate implementation for the browser (client)

I want to deflate very big JSON objects client side (plus base64 encription) and then inflate them on a node.js server with zlib.inflate( new Buffer( postData, 'base64'), function( err, result ) { ...
2
votes
1answer
21 views

fail to install nuget package zlib in a visual studio project

I want to test the "zlib" package on NuGet from CoApp. the version I tested in 1.2.8.1. when I tried to install the package on a test project in Visual Studio 2012, it produces the following error ...
0
votes
2answers
40 views

In what situation would compressed data be larger than input?

I need to handle compression of data that's largely UTF-8 HTML content in a utility I'm working on. The utility uses zLib and the deflate algorithm to compress data. Is it safe to assume that if the ...
4
votes
2answers
147 views

Python C extension link with a custom shared library

I am writing a Python C extension on a very old Red Hat system. The system has zlib 1.2.3, which does not correctly support large files. Unfortunately, I can't just upgrade the system zlib to a ...
29
votes
3answers
11k 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 ...
0
votes
1answer
973 views

Zlib uncompress returns Z_DATA_ERROR

I am working on a client server application, where client compresses a 2MB data sends to the server, server receives the data uncompresses it and writes it to a file. For some packets uncompression ...
4
votes
1answer
3k views

Using zlib under windows mingw

I can't seem to get zlib to do anything on mingw under windows. I downloaded zlib @ http://sourceforge.net/projects/mingw/files_beta/MinGW/zlib/zlib-1.2.3-1-mingw32/ and put the header and lib files ...
2
votes
0answers
458 views

zlib inflate returns Z_DATA_ERROR “Incorrect header check”

I'm trying to develop my own SPDY support implementation on a web server, SPDY is a Google experimental protocol for reducing latency in loading web pages. Client/server interaction happens through a ...
0
votes
3answers
42 views

Combine two CRC32 values into one in nodejs

I want to combine two precalculated crc32 into new one: Example code in nodejs: // i'm using crc32 lib: https://github.com/brianloveswords/buffer-crc32/blob/master/index.js var crc32 = ...
1
vote
1answer
78 views

Compile errors in zlib opencv 2.4.5 mac osx

I am trying to compile OpenCV 2.4.5 on Mac OSX Mountain Lion. I've made project with the command "cmake -G Xcode" so I can build it within Xcode. I've changed C++ Language Dialect to compiler-default ...
1
vote
2answers
1k views

PNG validation on iOS

Writing a mapping application on iOS, making use of OpenStreetMap tiles. Map tile images are downloaded asynchronously and stored in a dictionary, or persisted in a SQLite DB. Occasionally, for ...
0
votes
1answer
55 views

HTTP - how to send multiple pre-cached gzipped chunks?

Lets say I have 2 individually gziped html chunks in memory. Can I send chunk1+chunk2 to HTTP client? Does any browser supports this? Or there is no way to do this and I have to gzip the whole stream ...
0
votes
2answers
189 views

Setting Size of Java Deflater (and Inflater) Output Byte Buffer

I need to deflate one or more byte arrays and later inflate them back to normal size. I've looked over the example given in the api docs, and found some other examples. After looking these examples ...
1
vote
1answer
61 views

Wrong checksum on stacked writer & zlib.writer

I have two object writers, first one encapsulates io.Writer and along writes it also coputes SHA1 checksum of content, and second encapsulates first and writes zlib compressed data. My unit test case ...
3
votes
3answers
2k views

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:'some url'}, function (error, response, body) { //if the content-encoding ...
7
votes
1answer
508 views

Homebrew updated zlib and broke everything

So a brew update updated zlib from 1.2.7 to 1.2.8. Yay. Later I noticed there was an issue running bundle. I was getting a LoadError for zlib. Error loading RubyGems plugin ...
0
votes
1answer
70 views

Enabling GZIP compression for php script

I've enabled gzip on my php scripts by doing this: <? ob_start("ob_gzhandler"); ?> <?php header('Content-Type: application/json'); header('Accept-Encoding: gzip'); /* Request data, ...
0
votes
1answer
63 views

MinGW: libpng won't build properly

So I need this libpng to be statically link with my dll to be used by my exe. This dll is already done before until I switch my compiler from MSVC to MinGW, then this dll won't work anymore so I think ...
1
vote
1answer
86 views

How can one build openssl on ubuntu with a specific version of zlib?

Background I'd like to build OpenSSL against a specific version of zlib so that all of my code is built by me. I do this for many of the libraries I use so that I don't get different behaviour on ...
0
votes
0answers
8 views

How to decode encoded content from http/1.1 web server in a fixed-size buffer?

I am writing a http client in C on Linux. According to RFC 1952, when "Content-Encoding" is present with value other than "identity", the response content is encoded. Available encodings include: ...
5
votes
11answers
3k 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 ...
0
votes
1answer
36 views

Resume DEFLATE decompression from flush point

This a question specific to the DEFLATE algorithm, but relates to gzip and zlib. Suppose I have a gzip file that I know has several flush points in the file. Some of which are made with Z_SYNC_FLUSH ...
0
votes
1answer
31 views

Node JS Emit method - set output headers to Zlib

I am trying to compress output from node js application. I am able to compress the text string successfully on server side. But the header sent with it says HTML/plain text so browser is not able to ...
1
vote
3answers
91 views

Python and zlib: Terribly slow decompressing concatenated streams

I've been supplied with a zipped file containing multiple individual streams of compressed XML. The compressed file is 833 mb. If I try to decompress it as a single object, I only get the first ...
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 ...
0
votes
3answers
3k views

Python zlib inflate error

I'm trying to inflate a zlib compressed file using Python with this code: import zlib data = open("3B42.110531.21.6A.HDF.Z", 'rb').read() inflated = zlib.decompress(data) f = ...
0
votes
3answers
46 views

What exactly is DEFAULT_COMPRESSION?

Of the possible DEFLATE compression levels [0 .. 9], which one exactly Java's Deflater.DEFAULT_COMPRESSION correspond to? In the Java source code, I see it as public static final int ...
0
votes
1answer
280 views

Z_BUF_ERROR -5 while trying to decompress zlib data

I am trying to decompress some zlib data using the dataByDecompressingData: method from ObjectiveZlib example code, which I have had some help converting to be used with Objective-c instead of c++. ...
0
votes
1answer
63 views

C++ zLib Byte array Compressing

After getting my first problem solved at C++ zLib compress byte array i faced another problem void CGGCBotDlg::OnBnClickedButtonCompress() { // TODO: Add your control notification handler code here ...
0
votes
1answer
50 views

C++ zLib compress byte array

I want to compress a byte array with zlib and here is my code : void CGGCBotDlg::OnBnClickedButtonCompress() { // TODO: Add your control notification handler code here z_const char hello[] = ...
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) { ...
1
vote
1answer
1k views

Uncompressed file size using zlib's gzip file access function

Using linux command line tool gzip I can tell the uncompressed size of a compress file using gzip -l. I couldn't find any function like that on zlib manual section "gzip File Access Functions". At ...
0
votes
1answer
77 views

Minecraft NBT zlib compression in c doesn't get accepted by the game

I'm currently working on a NBT reader and writer to edit Minecraft maps (both the player data and the chunks themselves). I've got the reading of NBTData all done and I was able to write a level.dat ...
0
votes
1answer
57 views

Node.js request with zlib library

I'm trying to figure out a way to make this library work with gzip and deflate. Looked at this question, tried the suggestions, but for some reason it still does not work. I'm relatively new to ...
1
vote
1answer
46 views

What is this unexpected behavior in Python's zlib?

I have an example in zlib that gives an unexpected result. If I start with compressing a simple string: >>> import zlib >>> import binascii >>> compressed = ...
37
votes
2answers
14k 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 ...
0
votes
2answers
100 views

Open file from memory buffer using minizip

I am searching how to open archive from memory buffer using minizip. I found ioapi_mem_c.zip from their page http://www.winimage.com/zLibDll/minizip.html. I can't understand how to use it. Can some ...

1 2 3 4 5 13