The deflatestream tag has no wiki summary.
6
votes
5answers
900 views
GZipStream and DeflateStream produce bigger files
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 ...
5
votes
3answers
1k views
C# Custom Serialization/Deserialization together with DeflateStreams
I'm trying to do custom serialization/deserialization of an object as well as compressing/decompressing the serialized data with DeflateStreams. I originally did this for more complex objects but cut ...
4
votes
1answer
2k views
zip and unzip string with Deflate
Hi
I need to zip and unzip string
Here is code:
public static byte[] ZipStr(String str)
{
using (MemoryStream output = new MemoryStream())
using (DeflateStream gzip = new ...
3
votes
1answer
712 views
DeflateStream not decompressing data (the first time)
So here's a strange one. I have this method to take a Base64-encoded deflated string and return the original data:
public static string Base64Decompress(string base64data)
{
byte[] b = ...
2
votes
3answers
96 views
Does DeflateStream “skip” decompression if the data was not originally compressed?
I'm not familiar with the internals of DeflateStream, but I need to store files in a Vendor's DB system that uses DeflateStream on binary attachments. The first thing I noticed was that all of my ...
2
votes
1answer
613 views
GzipStream (.net 4.0) 4GB problem
I am having trouble programmatically unzipping a 3GB (7GB uncompressed) gzip file using the built in .net 4.0 Gzip and Deflate Classes.
My understanding is that they should both support files over ...
2
votes
2answers
471 views
Raw Stream Has Data, Deflate Returns Zero Bytes
I'm reading data (an adCenter report, as it happens), which is supposed to be zipped. Reading the contents with an ordinary stream, I get a couple thousand bytes of gibberish, so this seems ...
1
vote
2answers
116 views
Yet another DeflateStream decompression problem (using using and memory streams)
Firstly, I'm noticing that compressing the object requires more bytes then purely representing the object in binary form. (228 vs 166).
Secondly, I can't seem to decompress it.
Also, I can't use ...
1
vote
0answers
106 views
DeflateStream repeats bytes when decompressing data
I have encountered a problem with DeflateStream -- some of the data is being written repeatedly, to the end.
Here is the code:
Dim bytesin As Byte() = ... ' An array of compressed bytes
Dim bytesout ...
1
vote
1answer
200 views
Is it possible to recover corrupted Zlib data beyond the corrupted section?
I have a Zip archive with a large (important) file that will not extract. All Zip utilities that I've tried, including those that claim to recover/fix broken Zip archives are unable to extract the ...
1
vote
2answers
229 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. ...
1
vote
0answers
280 views
.NET Deflate Stream Error/Bug
Has anyone experienced the following error while using the .NET Deflate Stream?
System.IndexOutOfRangeException: Index was outside the bounds of the array.
at ...
1
vote
1answer
497 views
Do an HTTP Post in .NET (Vb) with compressed data using deflatestream
The data that I am posting from a VB.Net client is large and I want to compress.
I want to do a "POST" and the apache server supports mod_deflate.
I am trying to integrate DeflateStream into my post ...
1
vote
3answers
1k views
Puzzling .Net C# DeflateStream problem
I wonder if anyone can shed some light on an issue that is driving me nuts:
I am writing a compression decompression test class. To test it, I am serializing a dataset to a memory stream, ...
1
vote
3answers
620 views
Can I use less memory when using DeflateStream?
My application needs to decompress files which contain a lot of Deflate compressed blocks (as well as other types of compression and encryption). Memory profiling shows that the deflate stream ...
0
votes
1answer
59 views
deflate stream result is disappointing , is it normal?
I'm trying to compress image files to send it via network , here is my test compress method
public void compress(MemoryStream inStream)
{
using (MemoryStream outStream = new ...
0
votes
1answer
156 views
Compression/Decompression for DataSet or any .Net Object
I'm developing a WPF App, in which I want to encrypt and compress heavy DataSet or Objects (<2MB) and send it across over the network. The other party would decompress and decrypt the data and ...
0
votes
2answers
167 views
how to both Compress and Minify content together?
i know we can compress response by declaring Response.Filter as GZip or Delfalte streams, but how i can perform both compression and minification together? declaring new class that inherits Stream, ...
0
votes
2answers
271 views
Mono & DeflateStream
I have a simple code
byte[] buffer = Encoding.UTF8.GetBytes("abracadabra");
MemoryStream ms = new MemoryStream();
DeflateStream ds = new DeflateStream(ms, CompressionMode.Compress, false);
...
0
votes
2answers
2k views
MSDN C# DeflateStream sample code issue
Any ideas why in the below sample, we need to add 100 (buffer.Length + 100)? buffer.Length should be the same as decompressed buffer length, so no need to add 100 more. :-)
...