I'm trying to use deflate/gzip streams in C# but it appears that the files after compression are bigger than before.

For example, I compress a docx file of 900ko, but it produce a 1.4Mo one !

And it does it for every file I tried.

May be I am wrong in the way I'm doing it? Here is my code :

  FileStream input = File.OpenRead(Environment.CurrentDirectory + "/file.docx");
  FileStream output = File.OpenWrite(Environment.CurrentDirectory + "/compressedfile.dat");

  GZipStream comp = new GZipStream(output, CompressionMode.Compress);

  while (input.Position != input.Length)
      comp.WriteByte((byte)input.ReadByte());

  input.Close();

  comp.Close(); // automatically call flush at closing
  output.Close();
link|improve this question

1  
You do realize that a compression method that will compress any arbitrary input by at least one byte cannot exist? So especially if you are trying to compress data that is close to random already, e.g. precompressed data, you may see a size increase. – Joey Oct 5 '10 at 13:30
1  
.docx is already compressed using ZIP compression (try renaming to .zip and having an explore). I'd be surprised if a second level of compression would yield any benefit. – spender Oct 5 '10 at 13:33
it should effectively do compression only on the flush, so it shouldn't change a thing – kite Oct 5 '10 at 13:34
@spender > didn't know that, I'll try with an other file formet – kite Oct 5 '10 at 13:34
Have you tried compressing a .txt file? – Lazarus Oct 5 '10 at 13:35
show 2 more comments
feedback

5 Answers

up vote 5 down vote accepted

Such a big difference seems strange to me, but you should keep in mind that docx is itself compressed in ZIP, so there is no reason to compress it again, results usually are bigger.

link|improve this answer
Confirmed: myformatfactory.com/DOCX – Dave Swersky Oct 5 '10 at 13:38
yes thanks, I didn't know it, and it is why it didn't work :) tried with .txt and other format and it seems better. but it still doesn't works on a home-made serialized file type ... but it doesn't matter at the end, just wanted to see how to use those compression streams :) – kite Oct 5 '10 at 13:38
feedback

Firstly, deflate/gzip streams are remarkably bad at compression when compared to zip, 7z, etc.

Secondly, docx (and all of the MS document formats with an 'x' at the end) are just .zip files anyway. Rename a .docx to .zip to reveal the smoke and mirrors.

So when you run deflate/gzip over a docx, it will actually make the file bigger. (Its like doing a zip with a low level of compression over a zipped file with a high level of compression.)

However if you run deflate/gzip over HTML or a text file or something that is not compressed then it will actually do a pretty good job.

link|improve this answer
yep thanks, as said in other comment didn't know that docx was already compressed. and sure 7z and other libraries are better, but just wanted to try these out to see what they were able to do – kite Oct 5 '10 at 13:41
This seems like a totally invalid comment: deflate/gzip streams are remarkably bad at compression when compared to zip, 7z, etc. Fact is, 99% of zip files use DEFLATE as the compression format. So zip can be no better than DEFLATE, because it augments the compressed stream with metadata. – Cheeso May 8 '11 at 15:58
The phenomenon in which a DeflateStream actually increases the size of the previously compressed data is the topic of a bug that was opened with Microsoft in 2006: connect.microsoft.com/VisualStudio/feedback/details/93930/… – Cheeso May 8 '11 at 15:59
feedback

Although it is true, as others have indicated, that the example files you specified are already compressed - the biggest issue is to understand that unlike most compression utilities, the DeflateStream and GZipStream classes simply try to tokenize/compress a data stream without the intelligence that all the additional tokens (overhead) are actually increasing the amount of data required. Zip, 7z, etc. are smart enough to know that if data is largely random entropy (virtually uncompressable), that they simply store the data "as-is" (store, not compressed), instead of attempting to compress it further.

link|improve this answer
This is not true: Zip, 7z, etc. are smart enough to know that if data is largely random entropy (virtually uncompressable), that they simply store the data "as-is" (store, not compressed), instead of attempting to compress it further. ZIP is merely a file format. It does not "know" anything. a program that produces a ZIP file may do what you describe, but the ZIP format does not. – Cheeso May 8 '11 at 16:00
The phenomenon in which DeflateStream actually inflates the size of previously compressed data is the topic of a bug that has been opened with Microsoft: connect.microsoft.com/VisualStudio/feedback/details/93930/… – Cheeso May 8 '11 at 16:02
Wasn't talking about the format (good grief). Was talking about the compression utilities that write data in their corresponding formats. – Michael Jun 13 '11 at 15:03
feedback

I had the same issue with compressing databases containing jpg data. I tried dotnetzip - a drop in replacement and got decent compression (Supports Compact Framework too!):

MS : 10MB -> 10.0MB
DNZ: 10MB ->  7.6MB
link|improve this answer
feedback

I don't think GzipStream and DeflateStream are intended to compress files. You would probably have better luck with a file compressor like SharpZipLib.

link|improve this answer
they are made to compress and decompress. I'm currently reading MCTS 70-536 certification book and they are used like that there ^^ – kite Oct 5 '10 at 13:40
and what are they for? msdn.microsoft.com/en-us/library/… "GZipStream Class Provides methods and properties used to compress and decompress streams." – Andrey Oct 5 '10 at 13:41
They're perfectly good at compressing files and for many cases handier than zip since they work straight on the file rather than creating an archive, and you can output them straight from a webserver instead of compressing on the fly every time. Appending .gz to the name (after the original extension rather than replacing it) is common with gzip files. Not to say that SharpZipLib isn't better in a lot of cases though. – Jon Hanna Oct 5 '10 at 13:44
1  
@Dave Swersky: That's a rather bold statement. One could use Huffman coding to compress a file, and then zip it to make it even smaller. Depending on how bad your first compressing technique is, a second compressen technique could make it better or worse. – Excel20 Oct 5 '10 at 14:20
1  
@Excel: I stand corrected. I suppose combining two different types of compression could increase the ratio overall, but I will say using ZIP twice will not work. – Dave Swersky Oct 5 '10 at 16:11
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.