deflate is a lossless data compression format, and also refers to implementations that compress to the deflate format. The deflate format was created by Phil Katz of PKWare for the PKZip (.zip) archive format. Public domain software provides deflate and inflate functionality in the gzip utility and ...
-4
votes
1answer
30 views
Why does InflaterInputStream#available() violates Liskov Substitution Principle? [closed]
From Android Reference:
Although consistent with the RI, this behavior is inconsistent with
available(), and violates the Liskov Substitution Principle. This
method should not be used.
Why ...
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
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 ...
-1
votes
0answers
22 views
compression mod_deflate is not working on apache2 [closed]
I have two websites on my apache server.
I have already enabled mod headers and deflates.
in /etc/apache2/mod-available/deflate.conf i have written:
<IfModule mod_deflate.c>
...
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
37 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
77 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
0answers
62 views
PHP Socket Compress and Uncompress data (gzip and deflate)
I want to compress data which is sent from socket in PHP (I use pfsockopen). After I have received compress file, I use some method such as
gzuncompress
gzinflate(substr($data,10,-8))
...
0
votes
0answers
55 views
Deflate - Inflate errors. Causing “incorrect header check” errors
I am working on implementing a SAMLSLO through HTTP-REDIRECT binding mechanism. Using deflate-inflate tools gives me a DataFormatException with incorrect header check.
I tried this as a stand-alone. ...
0
votes
2answers
146 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
309 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 ...
3
votes
1answer
150 views
Compression of zip archive
I'm trying to compress directory content into zip archive using java.
Everything is fine, but I just want to clarify some facts.
Here is the code which I use to compress files:
public void ...
2
votes
1answer
233 views
How to enable gzip compression for static Rack sites on Heroku Cedar?
Following the Creating Static Sites in Ruby with Rack article, I get a static site on Heroku with a config.ru that looks like this:
use Rack::Static,
:urls => ["/images", "/js", "/css"],
:root ...
0
votes
1answer
226 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
816 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?
...
0
votes
1answer
94 views
Gzip in apache-tomcat
I want to enable gzip for compression and I have tried many blocks of code. Unfortunately, nothing works. The server that my host is using is apache-tomcat. Do they use different code for enabling ...
-1
votes
1answer
86 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:
...
2
votes
2answers
98 views
Deflate: uncompressing a PNG without zlib (or any other library)
The other day, I thought that I would learn more about image compression. I looked into .png and its respective compression algorithm and I would like to be able to uncompress the file without any ...
0
votes
0answers
70 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 ...
3
votes
1answer
97 views
How to advance past a deflate byte sequence contained in a byte stream?
I have a byte stream that is a concatenation of sections, where each section is composed of a header plus a deflated byte stream.
I need to split this byte stream sections but the header only ...
0
votes
1answer
169 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 ...
2
votes
2answers
1k views
AngularJS - How to deflate and encode/decode to base64 all jsons request?
Lets say i have several $resources and some $http around my angular application:
myApp.factory('Note', function($resource) {
return $resource('http://', {id: '@id'},
{ 'index': { method: ...
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 ...
1
vote
0answers
48 views
Which is the right way to enable compression on Apache?
Some people say that to enable compression you modify htaccess file:
apache compression Deflate .js and .css files not compressed?
...
1
vote
0answers
100 views
DEFLATE after Substitute on Apache Proxy Server
I've got a problem in configuring Proxy on Apache :
I want to :
1/ get a content from a website (Deflate or not) ;
2/ apply a filter on it to substitute some text on the body of the page ;
3/ resend ...
0
votes
1answer
56 views
DeflateStream compress/decompress inconsitency
I have the following data from a photoshop file that uses zip-compression (RFC1951):
250, 255, 159, 1, 47, 248, 63, 42, 63, 172, 229, 1, 2, 12, 0, 209, 255, 31, 225
Which decompresses to the ...
0
votes
1answer
103 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 = ...
3
votes
1answer
238 views
mod deflate not compressing subdirectories of root
I am about 48 hours into trying to solve a gzip deflate issue and realize I may need to ask for help, hehehe.
I have finally gotten the deflate module enabled on my shared Unix server via .htaccess ...
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
0answers
175 views
Deflate, htaccess and php header?
I currently have this in every index file, but I wish to know if there will be conflicts that could degrade performance? Can someone help me to find the best solution?
header('Content-Type: ...
0
votes
1answer
197 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
1answer
195 views
Rack::Deflater and gzip in rails app
I added use Rack::Deflater to config.ru in an attempt to serve gzipped css and js.
but when I load the page I still see that css and js are served and not the css.gz
should I see css.gz or js.gz? or ...
0
votes
0answers
155 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
1answer
165 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, ...
0
votes
3answers
411 views
Wrap deflated data in gzip format
I think I'm missing something very simple. I have a byte array holding deflated data written into it using a Deflater:
deflate(outData, 0, BLOCK_SIZE, SYNC_FLUSH)
The reason I didn't just use ...
0
votes
0answers
116 views
Java CRC error when using a dictionary with GZIP
This is honestly frustrating because I think I know the cause but at the same time I cannot pinpoint when it is happening in my code. Basically, for this assignment, we're supposed to read in an input ...
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
1answer
814 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 ...
1
vote
1answer
286 views
Decompress file from Boost filtering_streambuf to std::vector<char>?
I'm trying to decompress a file that was compressed using the DEFLATE algorithm and stuff it into a vector<unsigned char>. From the research I've done so far, it seemed like I could use a ...
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 ...
1
vote
1answer
137 views
Connection compressed with DEFLATE, hosted on Heroku but rack middleware doesn't report using Rack::Deflater
Chrome claims that the connection to my site is compressed with DEFLATE. The issue is that I am not using Rack::Deflater (I don't see it when I run rake middleware). My staging site has pretty much ...
0
votes
1answer
60 views
Why is compression with mod_deflate.c neccessary?
Is it required? Optional? Does it benefit anything more than performance speed?
# created .htaccess file in the web root:
<IfModule mod_deflate.c>
SetOutputFilter DEFLATE
...
0
votes
1answer
81 views
checking if a web page has compression enabled with php
I want to check if a web page has gzip/deflate compression enabled with php. Probably with get_headers I won`t make it, so a anydvices, or any bit of code anywhere to check this ( couldn't find ...
0
votes
1answer
144 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
177 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
2answers
410 views
HttpWebRequest gets slower when adding an Interval
Testing different possibilities to download the source of a webpage I got the following results (Average time in ms to google.com, 9gag.com):
Plain HttpWebRequest: 169, 360
Gzip HttpWebRequest: ...
0
votes
1answer
291 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
80 views
Checking Validity of DEFLATED data
I have some data that has been passed through the DEFLATE algorithm. If I run the command perl -MCompress::Zlib -e 'undef $/; print uncompress(<>)' < deflated_data.gz The correct output is ...