The deflatestream tag has no wiki summary.
0
votes
0answers
41 views
c# deflatestream returning lots of null characters
I am trying to use DeflateStream to inflate data from a web server. for some reason though, the byte array my function returns contains several null characters instead of whatever they are supposed to ...
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 ...
1
vote
2answers
423 views
Zip a MemoryStream for an email attachment
I'm trying to zip an XML tree and use it as an email attachment. The sending of the email with an attachment succeeds, but the zip file created is always corrupt – it is not a valid zip file but does ...
0
votes
1answer
207 views
.NET DeflateStream Usage
I am trying to utilize the INFLATE compression stream in .NET using a DeflateStream. My code throws an InvalidDataException although I know that the data I am passing has been correctly processed by ...
2
votes
4answers
878 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
243 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 ...
2
votes
3answers
291 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 ...
1
vote
2answers
490 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
311 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
380 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 ...
2
votes
1answer
1k 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
1k 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 ...
0
votes
1answer
558 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 ...
5
votes
3answers
4k 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 ...
2
votes
2answers
448 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. ...
7
votes
1answer
2k 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 = ...
6
votes
5answers
2k 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 ...
1
vote
0answers
417 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 ...
0
votes
2answers
299 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
410 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);
...
1
vote
1answer
744 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 ...
5
votes
1answer
6k 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 ...
1
vote
3answers
2k 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
809 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
2answers
3k 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. :-)
...