0
votes
1answer
40 views

DeflateStream not working with buffer processed from PHP implementation

I'm trying to decompress buffer compressed by php deflate implementation. Here's the code: public static void CopyTo(Stream src, Stream dest) { byte[] bytes = new byte[4096]; ...
0
votes
2answers
82 views

DeflatorInputStream and DeflatorOutputStream do not reconstruct the original data

I want to compress some data, so I came across the DeflatorInputStream & DeflatorOutputStream classes. However, the following example shows that I can't seem to reconstruct my original data when ...
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
335 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
1answer
244 views

.htaccess DEFLATE Not working [closed]

I am trying to compress html etc. from htaccess. # compress text, html, javascript, css, xml: AddOutputFilterByType DEFLATE text/plain AddOutputFilterByType DEFLATE text/html AddOutputFilterByType ...
0
votes
0answers
821 views

Facebook Cross-Domain Messaging Helper (xd_arbiter.php) gzip/deflate Support

About After adding a Facebook Like button to my site and running Google Chrome's PageSpeed it reports the following for the 'Enable Compression' category. Compressing the following resources with ...
1
vote
1answer
87 views

Round-tripping through Deflater in Scala fails

I'm looking to roundtrip bytes through java's Deflater and running into issues. First the output, then the code. What am I doing wrong here, and how can I properly round trip through these streams? ...
-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
0answers
73 views

.htaccess for wordpress compressing etc

Hi I have tried to optimize my website energyshop.se for a cpl of days but I cant seem to get it done. This is how my .htaccess looks like: # Hantera och redirecta användare till en gemensam ...
2
votes
2answers
232 views

Compress Gzip string in Ruby

How would I write a method to compress a Gzip string that does not contain a header file, and have it compress to exactly the way it was before I have decompressed it. The original compression is done ...
0
votes
1answer
35 views

Decompressing a trunctated compressed stream (Deflate)

I'm using udp to communicate between server and client. The server has the ability to compress packets if they are too long (Deflate). Now the problem is that sometimes the packet is still too long, ...
0
votes
1answer
199 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 ...
0
votes
1answer
167 views

Java- concatenating compressed data with Deflater or GZIPOutputStream

We have a bunch of threads that take a block of data, compress this data and then eventually concatenate them into one large byte array. If anyone can expand on this idea or recommend another method, ...
2
votes
1answer
840 views

MsgPack for compressing json data, why not using gzip/deflate?

I heard something about MsgPack that can be used for compressing json messages, but I have a question about that, why not simply using Gzip/Deflate instead of MsgPack? I think it's so better to ...
0
votes
2answers
166 views

Java attain >50% compression ratio

I am trying to compress the pdf files(sometimes images). I need a compressor in java which will help me compress my files. I need the size to be less than half the size of the original document. I ...
0
votes
1answer
145 views

How do i DEFLATE properly? (both .NET and MONO gets it wrong)

I can't comprehend. It looks correct. Windows gets me 21008 80373 0.2613813 80372 80372 1 Deflate on .NET isn't good (it shouldnt be 26%) but more importantly the decompressed size is 1 off. ...
3
votes
5answers
178 views

Why is deflate making my data BIGGER?

I wanted to compress some data so i thought i'd run the stream by deflate It went from 304 bytes to 578. Thats 1.9x larger. I was trying to compress it..... What am i doing wrong here? using ...
0
votes
1answer
294 views

Unexpected token ILLEGAL with gzip compression

I am having a problem with gzip compression on my site. I've combined several javascript files to one files and they work ok without compression. Afterwards I've compressed them (gzip) and tried to ...
0
votes
1answer
237 views

enable compression on a server

I'm running the page speed test on google and it is telling me that i need to enable compression on my server. Can you please provide me information on how to enable compression on my server? ...
2
votes
4answers
897 views

DeflateStream: compress files while reading

I'm trying to send a big chunk of data through WCF (some GBs). I would like to compress the file while reading it using Streams, but looks like DeflateStream has two modes: Compress (writes on the ...
0
votes
1answer
769 views

Dynamic Huffman Encoding on Deflate - RFC 1951

I am developing a file compressor program. We are currently implementing .ZIP archiver standart, so that when generate a compressed .ZIP archiver any other reputable compressor (such as 7zip) can ...
0
votes
2answers
264 views

Gzip static files previously instead of on the fly

If instead of using mod_deflate or mod_gzip I would manually gzip a css or js file obtaining something like: base.css.gz And I rename it as: base.css And then load it from an HTML page, would it ...
0
votes
2answers
499 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
892 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 ...
0
votes
1answer
567 views

Best method to compress JSON string in term of performance and compress radio

For a JSON string, contains all kinds of settings, numbers, text etc (no fancy binaries but may include Unicode/UTF8). Total JSON string fairly fall into 10k~50K range. I want to compress it before ...
1
vote
1answer
385 views

Internet explorer - issues with gzip/deflate (seeking confirmation)

I have come accross something very strange whilst trying to use deflate, I am a bit out of my depth but this has become something of an obsession which I am determined to get to the bottom of. ...
2
votes
3answers
179 views

To compress or not to compress?

Enabling compressing (gzip/deflate) in the Apache server will reduce the size of the response but will add more CPU cycles, I will run a stress test with various response sizes but I wanted to ask if ...
1
vote
2answers
142 views

Custom Image Format: How to Target Compression Algorithms

I've done a bit of fiddling around with PNGs over the last couple days and I am upset with my findings. I'm concluding that the majority of my results deal with compression. So this weekend I'm going ...
1
vote
1answer
382 views

Exclude a single file from DEFLATE in .htaccess

I have set my htaccess file to cache and deflate the majority of the usual file types to increase speed, one file particularly though seems to behave oddly when cached and I want to try to exlude this ...
2
votes
1answer
328 views

DEFLATE Decoding

I am currently reading about the DEFLATE method for encoding/decoding data. I understand that the process is composed of two parts: i. Replace duplicate information (within a specified window) with ...
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 ...
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 ...
1
vote
1answer
226 views

Is there anyway to tell if gzip is in fact compressing specific files?

I know I have gzip running on my server and site. Most everything is taken care of but when I run firebug or google pagespeed, I am told that certain CSS files (hosted by me) are not being gzipped and ...
1
vote
1answer
257 views

How do I check if apache is using “compression” and “far-future” expiration dates?

How can I check and see if my web server is serving up content with compression and far future expires headers? YSlow is still telling me that I have resources that are being sent with plain text and ...
1
vote
1answer
219 views

gzip or deflate files can it be merged together? for api

i have api that let you get one or more files content in one request and i have them as deflate/gzip and normal text, for now im using normal text, but was wondering if i can merge deflate files and ...
1
vote
1answer
618 views

JSON truncated when compressing HTTP responses

When I apply gzip or deflate compression to my HTTP responses, I seem to be losing the last bracket in my JSON structures. For example: Result without compression: ...
0
votes
2answers
752 views

Rails Paperclip image compression compared to what Page Speed produces

I've set up paperclip in rails and everything is working hunky-dory (i actually had to google that...:). I've noticed however that Page Speed tells me I could losslessly compress my thumbnail and ...
3
votes
3answers
634 views

Custom DEFLATE implementation to speed up PNG encoding

I'm optimizing a PNG encoder for use within Flash SWFs (but I'm writing it in HaXe). I've so far managed to speed things up a fair bit, mostly by using speedy memory read/writes. While profiling my ...
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 ...
2
votes
1answer
3k views

Using Java Deflater/Inflater with custom dictionary causes IllegalArgumentException

The following code is based on the example given in the javadocs for java.util.zip.Deflater. The only changes I have made is to create a byte array called dict and then set the dictionary on both the ...
1
vote
1answer
636 views

Deflate Compression Algorithm Implemented in High Level Language?

There are lots of implementations of the Deflate decompression algorithm in different languages. The decompression algorithm itself is described in RFC1951. However, the compression algorithm seems ...
2
votes
1answer
1k views

Best zip compression level for JSON or text files? [closed]

Has anyone performed some tests (size and speed) for the selection of the 'best' compression level of the Java zip deflater, to be used on general/miscellaneous JSON or text files? If yes which level ...
0
votes
1answer
475 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 ...
5
votes
3answers
1k views

GZip or Deflate for HTTP compression

Which compression method is better? I've heard lots of back and forth about GZip being more widely used, but Deflate being faster (in some instances). Is there an accepted standard on which one to use ...
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 ...
0
votes
1answer
398 views

How to set mod_deflate preferred compression method to deflate

mod_deflate always sends gzip data when the request header Accept-Encoding is gip, deflate. How can I tell mod_deflate to prefer to send deflate (NOT zlib) instead of gzip? If this isn't ...
1
vote
1answer
308 views

Deflate (or similar) compression available for Silverlight 3?

Is there any deflate implementation for Silverlight 3 that is compatible with the .NET one? Or, barring that, is there any similar compression algorithm available for both .NET and Silverlight I can ...
1
vote
1answer
93 views

Given a decompressed gzip file, is there any way to recreate the exact original gzip file?

Given a gzip file Z, if I decompress it to Z', is there any way I can recompress it to get the exact same gzip file Z back? After a cursory reading of the DEFLATE format, I am guessing no, as any ...

1 2