A library used for data compression. Also a crucial component of many software platforms including Linux, Mac OS X, and the iOS
0
votes
1answer
34 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
27 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
5 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: ...
0
votes
1answer
21 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
20 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 ...
0
votes
0answers
14 views
error: zlib not found on system or in local libs [migrated]
I'm trying to install gpac on my server and when I run ./configure I get the following error.
error: zlib not found on system or in local libs
I have checked and I have zlib installed, or at ...
1
vote
3answers
65 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 ...
0
votes
3answers
36 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
45 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
32 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[] = ...
0
votes
1answer
46 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
31 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
39 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 = ...
5
votes
1answer
283 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
0answers
12 views
How to install sharedhostffmpeg on a host running redhat linux while not being root?
The shared host is running on Red Hat 4.4.7-3.
All these packages have successfully installed:
- presetup.sh, autoconf.sh, automake.sh, libtool.sh, libiconv.sh, libpng.sh, libjpeg.sh, zlib.sh, ...
0
votes
2answers
70 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 ...
0
votes
0answers
39 views
C zip library for opening password protected files
I am trying to use zlib and minizip. When I build 6 projects in one soltuion which are included in archive I downloaded everything works and project will create exe files (minizip and miniunz). Here ...
0
votes
0answers
25 views
ZlibStream - Keep the stream open and flush part of the stream
I'm using Ionic.Zlib.ZlibStream in order to decompress byte which I receive.
I can't close the stream ZlibStream. If I will close the stream I wouldn't be able to decompress the next byte array that ...
0
votes
1answer
31 views
How to determine the compression level of DEFLATE?
There are ten different compression levels for DEFLATE (0 no compression & fastest, 9 best compression & slowest). What is the best way to determine such level for a raw DEFLATE data?
One ...
0
votes
1answer
45 views
Poco / zlib: error LNK2019 unresolved external “_gzopen”
I am trying to use zlib functions while working with poco c++ library. Linking to the zlib library directly does not work, because poco links to it also and I get several duplicates while linking. So ...
0
votes
1answer
48 views
In Objective-C, how to read the contents of several files packed inside a ZIP archive, into an NSString variable
In Objective-C (for iOS), is there any way to read the files inside a ZIP archive into memory?
So, each file inside the ZIP is a text file. And what I need to do is to iterate through the files ...
0
votes
1answer
76 views
How to write gz file in C via zlib and compress2
I'm using zlib to write a program that compress data in several threads. so I can't use gzwrite. I'm using compress2().
*dest_len = compressBound(LOG_BUFF_SZ);
err = ...
0
votes
1answer
24 views
filesize incorrect after using gzwrite() and gzclose()
The code itself is quite large so here is the boiled down version:
<?php
//set common headers
ob_start();
//generate the javascript source
$ret=ob_get_clean();
...
1
vote
1answer
90 views
Delphis ZLib Interface not initialized
When working with Delphi XE2 I have the following problem:
When I try to compress a response from IdHTTPServer that should be sent to a client, I am not able to do this. The ...
0
votes
0answers
37 views
Fatal error: Call to undefined function gzcompress() in PHP5.3.x
I have an open source program need call this function gzcompress.
but it show me Fatal error, such as tell me no this function exists.
but the zlib function is core function, and I have found zlib ...
0
votes
1answer
22 views
Zlib with using Win api createFile and ReadFile
I saw 'zlib Usage Example' at the www.zlib.net but they used 'fread' function from stdio.h.
I have to consider the performance of my program so I must use win api 'ReadFile' function.
But I saw this ...
0
votes
1answer
111 views
Linking zlib in Visual Studio 2012
I have a C++ program that compiled and ran fine on Linux that I am now trying to compile on a Windows machine in Visual Studio. The main problem I'm facing is the following error message:
error ...
0
votes
1answer
17 views
EXC_BAD_ACCESS error on fwrite using underlying array from vector class
I am stumped with this EXC_BAD_ACCESS error. I am using zlib to compress and save some data from the array ch in the function deflateReadOut which is called from the function generate. The program ...
0
votes
1answer
68 views
C++ - zlib uncompress function crashes program
I should note that this program is adhering (at least, trying to) to the Tiled API.
I'm trying to use the uncompress() function in zlib, but for some reason my program crashes whenever I call the ...
0
votes
0answers
41 views
ubuntu 12.04 undefined reference to `gzeof'
I'm trying to install Offline Basecaller from Illumina (http://support.illumina.com/sequencing/sequencing_software/offline_basecaller_olb/computing_requirements.ilmn#Installation_Prerequisites).
I ...
0
votes
2answers
106 views
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 saying
if the .cpp file depends on an external library, you'll have to build it from the ...
0
votes
1answer
180 views
PIL IOError: decoder zip not available after built with ZLIB support
I've pointed setup.py towards /lib where my libz.so is. When I then run setup.py install, I get the ZLIB support confirmed:
--------------------------------------------------------------------
PIL ...
1
vote
2answers
74 views
How to force zlib to decompress more than X bytes?
I have a file that consists of compressed content plus a 32 byte header. The header contains info such as timestamp, compressed size, and uncompressed size.
The file itself is about 490mb and the ...
0
votes
2answers
145 views
Ruby zlib deflate and inflate not working as intended
I have been trying to get a (relatively) simple compression and decompression functionality working on any sort of object (images, csv files, docs etc) and have had no success whatsoever.
I have ...
3
votes
1answer
80 views
Is there a way to decompress a DynaZip Max file with another library? F.E. DotNetZip
I have a database in which we stored pdf files compressed with DynaZip Max Secure, using the following code:
MemoryStream msIN = new System.IO.MemoryStream(); //Input MemoryStream
MemoryStream ...
0
votes
0answers
57 views
Z_SOLO zlib embedded
I have download the latest zlib from the homepage and try to make it work in a small embedded envionment without any filesystem. I only want to compress/uncompress blocks of memory, no file system ...
0
votes
2answers
129 views
Java decompressing array of bytes
On server (C++), binary data is compressed using ZLib function:
compress2()
and it's sent over to client (Java).
On client side (Java), data should be decompressed using the following code snippet:
...
-1
votes
1answer
50 views
centos6.4 zlib missing [closed]
I am now using centos6.4 on my virtualbox. Today, I need to install new version of python2.7.3 on my centos.
When I install setuptools from source code, it tells me that I need to install zlib.
So, ...
-2
votes
3answers
95 views
Zlib compression enlarging file
I'm trying to use zlib in an iPhone app to compress a text file into a gzip file as a test. I am using the following code
const char *s = [[Path stringByReplacingOccurrencesOfString:[NSString ...
1
vote
1answer
48 views
Invalid delete with zLib
I have code which uses zLib and Google's Protocol Buffers.
The Problem is, that valgrind detects invalid frees inside a class which uses both.
==1419== Invalid free() / delete / delete[] / realloc()
...
7
votes
3answers
1k views
Can't install rubygems with ruby 2.0.0
I've been trying to install rubygems for hours, but it keeps failing. The error is:
Installing rubygems-2.0.3 for ...
1
vote
1answer
273 views
Node.js - Zip/Unzip a folder
I'm diving into Zlib of node.js. I was able to compress and uncompress files using the provided examples (http://nodejs.org/api/zlib.html#zlib_examples) but I didn't be able to find more about doing ...
0
votes
1answer
118 views
Node.js - ZLIB Gunzip returns empty file
I'm just testing ZLIB of Node.js but quickly facing strange results. Here is my script (inspired from the Node.js manual example http://nodejs.org/api/zlib.html#zlib_examples):
var zlib = ...
1
vote
1answer
73 views
compression library windows runtime
I am working in a project with existing C++ code and i'm missing zlib.h, windows doesn't support it so i need to find a way to do it with some other library.
For example this code doesn't work:
...
0
votes
1answer
71 views
Error loading webpage while parsing JSON-string
Please have a look at my code where I'm trying to compress data using connect.compress middleware. How can I parse JSON string in browser to get the decompressed data. When I try to hit localhost:2080 ...
1
vote
1answer
249 views
Decompress Gzip JSON response
I'm getting GZIP type compressed response from web-service. Can anyone please help me how to decompress or decode the response.
Any help regarding this will be really helpful
Thanks
2
votes
0answers
302 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
0answers
178 views
Incorrect header check error
When I am trying to run the code from below:
var express = require('express');
var app = express();
var port = process.env.PORT || 5000;
var request = require('request');
var zlib = require('zlib');
...
0
votes
1answer
71 views
How to unzip JSON response using zlib
I tried sending JSON response with the following code but it gives me an error saying
console.log(zlib.createGunzip()).pipe(data);
TypeError: Cannot call method 'pipe' of undefined
My code:
...
1
vote
2answers
65 views
zipArchive open error in PHP
Cannot create zip archive in PHP, always returns ZIPARCHIVE::ER_MULTIDISK
$fileName=$_SERVER['DOCUMENT_ROOT'].'/temp/temp.zip';
$zip = new ZipArchive();
...




