A library used for data compression. Also a crucial component of many software platforms including Linux, Mac OS X, and the iOS
1
vote
2answers
822 views
gzinflate in Java
So, my Java application reveives some data that is generated with PHP's gzdeflate().
Now i'm trying to inflate that data with Java. This is what i've got so far:
InflaterInputStream inflInstream = ...
2
votes
2answers
3k views
How do I use Minizip (on Zlib)?
I'm trying to archive files for a cross-platform application, and it looks like Minizip (built on zlib) is about as portable as archivers come.
When I try to run the following dummy code, however, 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
1answer
2k views
PIL zip jpeg decoders not working on runtime but work on install/selftest
I'm running Debian 6 and recently installed PIL.
I have preinstalled the zlib and jpeg libraries, and they're both on /usr/lib
When installing, the setup.py file finds the libraries, I get the ...
2
votes
1answer
127 views
gzgets reaches end of file early
I have a gzipped text file that I'm trying to read within PHP (using gzopen/gzgets). The file is somewhat large, around 158,000 lines. The script works fine except when it gets to line 157,237 of the ...
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 ...
1
vote
2answers
273 views
Using zlib with C
I am currently learning C, and am having some issues with trying to make a small program that utilizes zlib.
I have managed to compile my application (using Codeblocks/MinGW) with the zlib libraries, ...
2
votes
1answer
751 views
URL Safe Base64 in Objective-C
I've looked at numerous Stack Overflow posts on how to decode Base64 encoded strings in Objective C, but I'm still having issues with it.
Essentially, I'm trying to port a Python script to Objective ...
1
vote
1answer
286 views
Node.js: zlib Compression in a tcp connection
I am new to node.js and currently working on a tcp server. I want all the messages to be sent to client in a compressed format.I am using zlib for this purpose.
The following sample is a code on ...
2
votes
2answers
448 views
Decompressing gzipped data with Inflater in Java
I'm trying to decompress gzipped data with Inflater. According to the docs,
If the parameter 'nowrap' is true then the ZLIB header and checksum
fields will not be used. This provides ...
1
vote
1answer
1k views
Using gzip compression in Sinatra with Ruby
Note: I had another similar question about how to GZIP data using Ruby's zlib which technically was answered and I didn't feel I could start evolving the question since it had been answered so ...
0
votes
1answer
410 views
compiling boost with zlib on Linux
I am trying to compile a code that uses Boost's zlib wrappers. However, no matter what I do, I can't get this to work.
In my cpp file, I have the following headers:
#include <algorithm>
...
0
votes
1answer
141 views
How to improve this code with memory leak in nodejs with zlib?
I have problem with memory leak in nodejs when I added gzip support. I have wrote some code for tests. In code below I use zlib and I don't know why I have memory leak.
How I can improve this code to ...
1
vote
1answer
206 views
How to exclude file in php generated zip
I need to know how to exclude files/folders from php generated zip. Here is my code:
public function archiveBackup($name = '', $source = '', $destination = '') {
if (!extension_loaded('zip') || ...
-1
votes
1answer
249 views
How do i GZIP static resources using zlib?
Edit: I'm using Ruby with Sinatra.
UPDATE: here is the code I'm using which doesn't work...
get '/' do
session[:time] = Time.now
z = Zlib::Deflate.new(6, 31)
...
0
votes
2answers
68 views
Causes of gzopen() leading to ENOMEM
I have a program whose total memory footprint is about 100 MiB (VM size, in top, while stopped in gdb) that's trying to open a new (not-yet-existent) compressed log file using gzopen. This fails, with ...
6
votes
1answer
2k views
Unzipping archive on Windows 8
I have previously used MiniZip (zlib wrapper) to unzip archives. MiniZip cannot be used for Metro applications as it uses deprecated APIs in "iowin32.c" -- CreateFile() and SetFilePointer().
I ...
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 ...
1
vote
2answers
219 views
Netty - Delimiting ZLib encoded data
Is it necessary to use a delimiter such as LengthFieldBasedFrameDecoder with Netty's ZlibDecoders? I had an issue where the decoder would sometimes error with "unknown compression method", this went ...
1
vote
1answer
361 views
Run-time error reading a .gz file using boost::iostreams and zlib
I am trying to read a .gz file and print the text content on screen by using boost::iostreams. This is just a simple experiment to learn about this library, and I am using the "directors.list.gz" file ...
1
vote
2answers
1k views
PHP - create standard zip file with zlib
I have just now discovered that my hosting server does not support the ZIP class for PHP.
However, it has the Zlib installed and supported .
Is there any library / function / hack / class / that ...
0
votes
2answers
191 views
Java and HttpUnit having GZip bugs
I've been trying to find workarounds to this for nearly 6 straight hours now but to no avail.
I have a simple HttpUnit program that does some sign in to a website. The problem is that I'm getting this ...
0
votes
2answers
1k views
ZLIB uncompress
I've coded a small application that should uncompress data encoded in the gzip/deflate format.
In order to accomplish this,I'm using the ZLIB library, using the uncompress function.
The problem is ...
0
votes
2answers
224 views
Jython 2.2.1 how can I decompress a gzip stream?
I'm stuck using Jython 2.2.1 with zlib module version 1.1.3 for a project. I need to download a lot of gzipped data, process it, and write it to a database. I'd like to avoid having multiple copies of ...
3
votes
2answers
1k views
ZLib unzip a zip containing multiple files
I am using delphi 7 and need to uncompress a compressed zip file which contains multiple files, I have found examples of how to unzip a single file using ZLib but cannot find any examples of this with ...
0
votes
1answer
1k views
What might explain an “invalid stored block lengths” error?
I am running a Rails (3.2.3) application with Ruby 1.9.3p194 on the basic Ubuntu lucid32 image in a Vagrant virtual box. The virtual box is running on Leopard, for what it's worth. I'm trying to use ...
1
vote
1answer
634 views
Gzipping a File Using Zlib in NodeJS
I'm trying to write a simple Cakefile build script for a small javascript library. I'd like to gzip a source string and write the result to a file. Here's what I have so far:
zlib.deflate ...
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 ...
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 ...
0
votes
2answers
242 views
how to compress a group of files into a zip file in objective c using zlib (Example)?
i'm working in a project that compress a group of files as a one zip file, i want to use the built in framework (zlib) to avoid any linking or any other types of errors that other types of frameworks ...
0
votes
2answers
502 views
How can I compress my .php site with zlib and zpipe.c
I am having a problem compressing my website. My host (www.one.com) does not support gzip, so I contacted them regarding any other way to compress my site. First I talked to a supporter that told me ...
-4
votes
2answers
937 views
How to read a single file inside a zip archive
I need to read the content of a single file, "test.txt", inside of a zip file. The whole zip file is a very large file (2gb) and contains a lot of files (10,000,000), and as such extracting the whole ...
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 = ...
0
votes
1answer
120 views
Marshalling c# arrays to pointers for static c library
i am still struggling on calling some functions out of a c static library.
I wrote a wrapper after this toms wrapper with visual studio around the static lib and can now access the functions on the c# ...
0
votes
1answer
346 views
Qt: Building quazip/zlib Library error
I am statically building the quazip library as mentioned in the following post: linking QuaZip with Qt 4.8.0 into project
I get these error when I build the project:
...
0
votes
1answer
503 views
calling c zlib uncompress from c#
i have the dllimport
[DllImport("../../zlib-1.2.5/zlib1.dll", CallingConvention = CallingConvention.Cdecl)]
static extern int uncompress(byte[] destBuffer, ref uint destLen, byte[] ...
0
votes
2answers
2k views
How to gzip NSData with zlib?
I want to use zlib because I'm assuming it's the best & fastest way to gzip NSData. But, is there a better way?
If not, which version of the zlib library should I link to in Xcode: libz.dylib, ...
0
votes
2answers
176 views
Looking for ZLIB library in JS or Pure Java that can work with GWT
I am developing with GWT and need to decomrpess some data.
I can't find any good library in JS or in Java that would compile with GWT.
3
votes
3answers
1k 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 ...
1
vote
1answer
483 views
Can't rvm pkg install zlib
After I do
rvm uninstall 1.9.3
rvm pkg install zlib
rvm install 1.9.3 --with-zlib-dir=$rvm_path/usr
there is still no zlib. Any gem install or gem update command fails with error:
$ gem update ...
1
vote
1answer
896 views
zlib: Differences Detween the `deflate` and `compress` Functions
What are the differences between the deflate() and compress() functions in zlib?
I have looked through online examples and some used deflate while others used compress.
How should I decide which ...
4
votes
2answers
304 views
Creating a GZipped tar file and dynamically streaming it via PHP?
Is there an easy interface like ZipArchive for tar.gz archives that allows me to stream the archive to the client rather than save it on the server? And if so, could someone show me how?
Thanks!
1
vote
1answer
971 views
Not able to run gem command and build ruby with zlib support
I didn't know that installing ruby is such a pain
After lot of trouble with curl certificate, I installed the rvm using the methods mentioned in the rvm site also with lot of help from stackoverflow ...
0
votes
1answer
122 views
Ruby Zlib “Symbol Not Found”
Issue
Zlib cannot be included in any fo my scripts. If it is included, I get this error
LoadError: dlsym(0x7f859bc94d90, Init_Zlib): symbol not found - ...
0
votes
2answers
893 views
Installing ZLIB in Linux Server
I want to install ZLIB in the Linux server. My server account is: /home/myname . I download and extract ZLIB on my account properly. Then, I enter to ZLIB1.2.6 folder and run the command:
...
1
vote
1answer
691 views
Node.JS http server with compression - sending variable as response
Sorry for the vague question.. but I'm not sure quite what the problem is.
I have a node http server that I'm using to serve JSON data to a web app. It works great, but my JSON strings are starting ...
0
votes
1answer
116 views
Erlang: why is zlib returning an empty body here?
I am trying to use zlib for compressing data being sent to a client. I typically just send blobs of JSON to the client using send(). Here's the function that handles the work:
handle_tcp({data, ...
0
votes
1answer
682 views
Why cannot symbol be exported from static library?
I'm building OpenCV using Visual Studio 2010. I'm using static CRT linkage (/MTd) and then link opencv.lib to my project. But there is a problem in my project with linking zlib, which is required by ...
1
vote
1answer
620 views
Uncompressing zlib data using boost::iostreams::filtering_streambuf trouble
I'm trying to write a small class that will load the chunk data from part of a minecraft world file. I'm to the point where I have stored some data in a char array which was compressed with zlib and ...
1
vote
2answers
1k views
Decompressing a string using Java.util.zip.Inflater
I'm trying to decode a string that I receive.
It's compressed using the deflater here: https://github.com/dankogai/js-deflate
And then base64 encoded.
However when I use the java inflater I get the ...

