A library used for data compression. Also a crucial component of many software platforms including Linux, Mac OS X, and the iOS
3
votes
0answers
375 views
`require': File not found zlib.so
I've installed ruby and ruby gems on an Arm architecture.
On Arm dns323, the ruby binary works, but when I run the gem binary, I have an error:
/opt/lib/ruby/1.9.1/rubygems/spec_fetcher.rb:1:in ...
2
votes
0answers
338 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 ...
2
votes
0answers
131 views
Linux Makefile: undefined reference to 'gzbuffer' (where LIB = -lz)
I'm trying to install a program (vcftools), for which the Makefile reads as follows:
# Make file for vcftools
# Author: Adam Auton
# ($Revision: 230 $)
# Compiler
CPP = g++
# Output executable
...
2
votes
0answers
532 views
How to compress with boost zlib streaming data
I have a server and receive on it data from another server. This data must be compressed with zlib and sent by socket to third server. The third server uses gzip to decompress the data.
I use this ...
2
votes
0answers
216 views
gzdeflate from php to iphone
i have a problem with compression. Maybe you can help me.
When i try to compress data in PHP and uncompress it in objective-c, it doesn't work.
This is what I do:
-------- PHP ------------
$text = ...
2
votes
0answers
592 views
Qt + Zlib => error LNK2005: _deflate_copyright already defined in QtCored.lib(deflate.obj) zlibstat.lib
When I link my application I receive the following message:
error LNK2005: _deflate_copyright already defined in QtCored.lib(deflate.obj) zlibstat.lib
I'm not sure of the problem, but... I use ...
1
vote
0answers
158 views
Is there any ability to decompress gzipped string using zlib in nodeJS?
Good day everyone! I'm trying to adapt my code with nodeJS, but got a little issue with decompression. I'm doing a request to server with xhr, and getting a compressed data in response, but I can't ...
1
vote
0answers
81 views
boost deflate and unsigned char ptr
I have pointer to unsigned char array and length of data
For example:
int length = 10;
unsigned char *data = new unsigned char[length];
std::fill(data, data + length - 1, 0x03);
I need to ...
1
vote
0answers
124 views
objective zip not working with audio files and not compressing existing directories
i'm using objective-zip for compressing audio files into a zip file but when i make that this exception appears to me:
Terminating app due to uncaught exception 'ZipException', reason:
'Error in ...
1
vote
0answers
227 views
How to read PHP's -gzcompress- data from c++
This is my c++ code:
#include <QtCore/QCoreApplication>
#include <QtCore/QDebug>
#include <QFile>
#include <QByteArray>
QByteArray UnZip (QString zipfilename)
{
QFile ...
1
vote
0answers
136 views
Stream deflate with PHP
I have a C program that communicate on a socket compressing/decompressing every packet with zlib. It creates a z_stream object and compress every packet with "deflate" and flushing it.
In PHP I can't ...
1
vote
0answers
458 views
Mac Xcode Zlib Linker Errors
I could use some help. I am just getting into Mac development a bit. This is a port from Windows and I am so close to finishing. I am trying to link to ZLib as I have an application that depends on ...
1
vote
0answers
413 views
Why I can't use zlib to decompress string like gzip's style
I know here has many questions and answers about decompress data with zlib or gzip module in python. But I'm curious about how gzip implement it since gzip is based on zlib.
I read gzip's source and ...
1
vote
0answers
904 views
Trying to compile program that uses zlib. Link unresolved error
While trying to compile program, that uses zlib, i got following errors:
Error 1 error LNK2019: unresolved
external symbol _compress referenced
in function "void __cdecl
...
1
vote
0answers
490 views
How do you use zlib to inflate a large file?
I am having trouble unzipping a 4mb(40mb uncomporessed) file on the iPhone. I have found many solutions, but none of them seem to work. They all rely on the zlib package, and now I am trying to use ...
1
vote
0answers
516 views
how to zip folder and its content using zlib under cocoa framework
How can i zipped folder and its content using zlib 1.2.3 under cocoa framework. It seems
that zlib is used for only zipping files and not folder(with reference from other mailing
list), else is ...
1
vote
0answers
1k views
missing rails gem: zlib not found on snow leopard, but shows in ports
Trying to start development on a snow leopard machine. Have reinstalled and built ruby and ruby on rails via
hivelogic post
Prior to sorting out my own rails app, I created a test app, and all the ...
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: ...
0
votes
0answers
13 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
0answers
45 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
28 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
0answers
43 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
0answers
45 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
0answers
59 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
0answers
195 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
0answers
89 views
Codeigniter Unzip a xml.gz file using unzip spark
I am using "unzip" spark.
Its working fine with .zip files but its not working with .gz files ... I have zlib enabled .. and
$this->load->library('unzip');
if ...
0
votes
0answers
69 views
How to build Python 2.6.8 with zlib on Ubuntu Server 12.04?
Missing zlib is common problem for Python 2.6, as I know.
I have zlib1g-dev installed, and I also tried this solution - and still not succeed.
Also I've tried ./configure ...
0
votes
0answers
41 views
php streams using zip files
While reading the section about streams on the PHP manual
http://www.php.net/manual/en/intro.stream.php
I attampted to try a stream wrapper, "bzip2://", with the following code.
<?php
$handle = ...
0
votes
0answers
212 views
Warning: ob_start() [ref.outcontrol]: output handler 'ob_gzhandler' conflicts with zlib output compression'
i am using the Gzip commpressionand Zlib commpression to speed up my website
I have used below code
ob_start("ob_gzhandler"); in common file that are include on all pages
and
...
0
votes
0answers
36 views
Using gzlib compression for NSDATA
I used zlib compression using reference
=">Is there a practical way to compress NSData?
but i am getting log as
uncomp length 3652792
comp length 3670673
Just opposite.
0
votes
0answers
76 views
How can I add external zlib library to Dev c++ compiler?
I need to add external zlib library to Dev C++ I tried many ways to do but never worked.Mostly I am taking no such file or directory. After I managed to solve this next one is undefined reference to ...
0
votes
0answers
137 views
boost zlib link error in visual studio 2012
I followed the following link to build zlib
http://tpgit.github.com/UnOfficialLeptDocs/vs2008/building-image-libraries.html#building-zlib
then I used command to build boost iostream and boost zlib ...
0
votes
0answers
44 views
sys/mman and zlib on wpf C
I had to develop a C programm for linux serv, that would be able to read and decrypt an encrypted archive which would then become a gzip archive. And finally read the content of this gz archive. I ...
0
votes
0answers
88 views
LNK2001: unresolved external symbol - Reading a zip file with zlib
I'm just trying to test out zlib by reading a file, but I'm encountering some trouble. Here is my code
#include <iostream>
#include <string>
#include "contrib\minizip\unzip.h"
...
0
votes
0answers
46 views
Why does XCode think a Bytef* is an int*?
I'm trying to write a simple wrapper for zlib-functions, all I need is an inflate and deflate method, so I'm using the example code (zpipe.c) and exchanging files with iostreams.
XCode gives me a ...
0
votes
0answers
23 views
Ruby: Lower Level Zlib
I was considering porting a .NET application that uses Zlib to Ruby. However I hit a snag. The implementation of the application (in .NET) has custom changes to the compression length (by adding a 13) ...
0
votes
0answers
102 views
PHP ZipArchive producing invalid archives, “Unexpected end of ZLIB input stream”
I'm using ZipArchive in PHP to create an archive. It's been working fine for the best part of a year, but suddenly today with no apparent trigger it stopped working correctly.
The archive appears to ...
0
votes
0answers
159 views
How to send Deflated stream in poco over tcp to C# and inflate in a correct way
I'm having a hard time understanding what exactly is going wrong when Deflating a string in poco and then send it to a C# client inflating it there and use it. Here is what I have done until now:
IN ...
0
votes
0answers
116 views
Mercurial clone issue zlib.error: Error -3 while decompressing: invalid block
I'm currently having issues with cloning a repository. There are two computers Computer A & B. computer A can clone the files successfully where as the other computer B can't.
I get the ...
0
votes
0answers
171 views
decompress a gz file using zlib
I wrote the code below to open a txt file and perform some transformations on it, then write out the transformations to a new file. The original source file though is gzip'd and I can't get the zlib ...
0
votes
0answers
75 views
Node Zlib: Runtime error on SmartOs 64
I recently provisioned a SmartOS machine in Joyent's Cloud and npm installed zlib. The build succeeded, but now I get the following error every time I try to require('zlib'):
Error: ld.so.1: node: ...
0
votes
0answers
160 views
ZLIB compression
I'm working on a project wherein if something goes wrong on my disk I'll send chunks of memory to another disk after compressing it using ZLIB. This dump then I plan to download and use for further ...
0
votes
0answers
149 views
iPhone ZLib uncompress String Objective-C
I come from a perl background. I would like to use zlib to uncompress some data. The data is stored as an iPhone String. In PERL, I would usually do the following:
Compress::Zlib::uncompress(substr ...
0
votes
0answers
38 views
How to compress using Cryptographic Message Syntax
I've been looking for information about the CMS(Cryptographic Message Syntax) online for a long time while I even couldn't understand most of the results I've got so far.So I hope there is someone who ...
0
votes
0answers
186 views
Parse nodejs zlib websocket content into as3 bytearray
I have an app that uses nodejs to deflate some content and send it to flash via websocket. The problem I'm coming across is that when I get a response from nodejs I can't put it into a Bytearray to ...
0
votes
0answers
118 views
Gtk+ cannot find zlib1.dll after reinstall
I created an application using GTK+ on windows, and I was happy. In order to distribute the program without requiring installation, I placed the program in a folder with the dlls it would need. I ...
0
votes
0answers
62 views
How to create a socket object in Node.JS that will do zlib compression?
I know I could do something along the lines of:
var prevWrite = socket.write;
socket.write = function(data, encoding, callback) {
// do zlib compression in here
return ...
0
votes
0answers
657 views
on Windows :command line error “cp missing destination file operand after '/usr/lib'”
I've been trying to install zlib using the following website to guide me link
and I am currently stuck in the command make install which is the equivalent of
cp libz.a /usr/lib
cp /usr/lib
which ...
0
votes
0answers
884 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 ...
0
votes
0answers
140 views
php curl in combination with zlib
Is there a possibility to combine curl with zlib?
This one works for me: file_get_contents('compress.zlib://'.$url);
But when I want to use curl, then it doesn't work. Should I install something ...


