0
votes
1answer
23 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
3answers
39 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
34 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
2answers
150 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 ...
2
votes
0answers
336 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 ...
-1
votes
1answer
88 views

Zlib inflate error

I am trying to save compressed strings to a file and load them later for use in the game. I kept getting "in 'finish': buffer error" errors when loading the data back up for use. I came up with this: ...
0
votes
2answers
179 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 ...
0
votes
1answer
106 views

Why is zlib deflate() hanging?

My issue is that my program hangs on use of zlib's deflate() function. I first initialize my z_stream, as follows: int setupGzipOutputStream(z_stream zStream) { int zError; zStream.zalloc = ...
0
votes
1answer
201 views

C++ zilib deflate/inflate and ztream parameters

After understood (with some help...) how work the compress and uncompress functions of zlib library, I'm now trying to understand how deflate and inflate work. As far as i understand, compress is used ...
2
votes
1answer
113 views

Is there any way to force the DeflateStream full flush?

The deflate function of zlib accepts a Z_FULL_FLUSH option as its argument, as far as I know, when full flush is performed, a full flush point (0,0,0xFF,0xFF) will be set, subsequent data will be ...
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 ...
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 ...
0
votes
2answers
501 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 ...
1
vote
1answer
893 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 ...
3
votes
3answers
602 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 ...
2
votes
1answer
829 views

Is Android InflaterInputStream same as popular ZLIB Windows library?

I'm trying to uncompress data that was compressed using the ZLIB library written by Jean-loup Gailly back in the 1990s. I think it is a popular library (I see a lot of programs that ship the ...
1
vote
1answer
466 views

GUI to open a zlib file

I am looking for simple GUI or software to open (deflate) a zlib compressed file ? I am not a programmer (well - php does not count) and I just need to open this ONE file and deflate it . all i can ...
0
votes
3answers
4k views

deflate and inflate (zlib.h) in C

I am trying to implement the zlib.h deflate and inflate functions to compress and decompress a char array (not a file). I would like to know if the following syntax is correct ? Am I missing ...
3
votes
1answer
1k views

Cannot decompress ZLIB/DEFLATE data

I'm trying to extract data from compressed bytes from network capture file (PCAP.) Data from some of these packets don't have ZLIB header (the first 2 bytes, where lower 4 bits of first byte is ...
1
vote
1answer
9k views

Zlib compression Using Deflate and Inflate classes in Java

I want trying to use the Deflate and Inflate classes in java.util.zip for zlib compression. I am able to compress the code using Deflate, but while decompressing, I am having this error - Exception ...
5
votes
3answers
854 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 ...
0
votes
1answer
476 views

zlib: how to dimension avail_out

I would like to deflate a small block of memory (<= 16 KiB) using zlib. The output is stored in a block of memory as well. No disk or database access here. According to the documentation, I should ...
0
votes
1answer
203 views

Trying to compress in zlib format with low level access to the stream

I'm trying to implement Microsoft specification for message.rpmsg format (here: http://msdn.microsoft.com/en-us/library/ee625343(v=EXCHG.80).aspx). The specification is weird combination of zlib ...
1
vote
2answers
606 views

C++ zlib inflate failing - translation of c# fixup?

I'm trying to inflate a string using zlib's deflate, but it's failing, apparently because it doesn't have the right header. I read elsewhere that the C# solution to this problem is: public static ...
2
votes
2answers
451 views

“Sync flush” for Zlib Deflate

I need a zlib deflate compressed stream. In my implementation I must use a single stream over the entire session. during this session small chunks of data will be passed through the compressed stream. ...
4
votes
2answers
1k 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 ...
1
vote
1answer
1k views

Ruby zlib deflate massive data

I'm trying to use Zlib::Deflate.deflate on a massive file (4 gigs). There are obvious problems with doing that, the first of which being that I can't load the entire file into memory all at once. ...
4
votes
3answers
2k views

Are zlib.compress on Python and Deflater.deflate on Java (Android) compatible?

I am porting a Python application to Android and, at some point, this application has to communicate with a Web Service, sending it compressed data. In order to do that it uses the next method: def ...
4
votes
1answer
2k views

How to find a good/optimal dictionary for zlib 'setDictionary' when processing a given set of data?

I have a (huge) set of similar data files. The set is constantly growing. The size of a single file is about 10K. Each file must be compressed on its own. The compression is done with the zlib ...
69
votes
4answers
22k views

Deflate compression browser compatibility and advantages over GZIP

UPDATE Feb 10 2012: zOompf has completed some very thorough research on this very topic here. It trumps any findings below. UPDATE Sept 11 2010: A testing platform has been created for this ...
3
votes
2answers
1k views

gzdeflate() and large amount of data

I've been building a class to create ZIP files in PHP. An alternative to ZipArchive assuming it is not allowed in the server. Something to use with those free servers. It is already sort of working, ...
0
votes
1answer
461 views

How can I compress a char array into a compressed html page using Zlib

I have a CGI application in C that creates an html page by saving a char* as a html page: void saveTextFile(const char *filename, const char *str){.......} called as ...
1
vote
2answers
848 views

File extention of zlib zipped html page?

What does a zipped html file using zlib (deflate) look like sitting on the server? Does it have a different extension than .html?