0
votes
1answer
19 views

How to compress http request on the fly and without loading compressed buffer in memory

I need to send voluminous data in a http post request to a server supporting gziped encoded requests. Starting from a simple public async Task<string> DoPost(HttpContent content) { ...
1
vote
1answer
33 views

C#: video compression using aforge.net

My application receives a sequence of images (BitmapImage) from external device with rate 30 fps. I'm using Aforge.net library for save the received stream in .avi file. I used the following code for ...
1
vote
1answer
23 views

GZipStream decompress a compressed file from 4.0 using 4.5

Ok, this is hard to search for and see if there is anyone else that might have run into this problem. I am using the GZipStream to Compress XML files in my application which was developed using VS ...
-1
votes
1answer
23 views

Validating a zip archive file

Using ZipArchive how can I check if a file is a valid zip archive? I am currently catching an InvalidDataException when attempting to enumerate through the zip entries but I don't believe that this ...
0
votes
0answers
22 views

Combining memory stream and convert to file in C#

I have a multipage TIFF file, and each page of this will be extracted in to memorystream passed to another method as a collection of stream. At the receiving end is it possible to combine these ...
0
votes
1answer
82 views

PowerShell: move files to zip with System.IO.Compression.FileSystem

How can I move log files to zip archives with System.IO.Compression.FileSystem in PowerShell? I have more folders with log files per application: app1logfolder |-app1_20130507.log ...
3
votes
3answers
64 views

On-the-fly compression (from stream) stream

I have a 3rd-party API method that takes a stream as an input parameter and processes it (reads it). The stream I'm giving in is potentially very huge (aka doesn't fit into memory). I'd like to take ...
-3
votes
2answers
33 views

archiving folder in .NET [closed]

I need to archive(zip/compress...) a folder in my application I use .NET4? I try to find examples in google,but I didnt find nothing. Any idea how can I implement archiving of a folder in .NET4?
0
votes
1answer
38 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]; ...
1
vote
1answer
60 views

I want to compress a byte[] and return a byte[]

I want to write a method in C# that takes a byte[] and compress it to another byte[], but all I can find is libraries that compress from a directory to another directory (the ZipFile library). Is it ...
5
votes
1answer
212 views

Using SevenZipSharp to compress in multi volumes?

I want to use SevenZipsharp to compress a file in volumes, for example to compress a file of 100 mb into 10 files of 10 mb each. We can do the same using 7zip.exe -volume parameter so... For example, ...
1
vote
1answer
80 views

Why doesn't UPX work for .NET executables?

If .NET executables are PE Files, why all packers like UPX "corrupts" it?
0
votes
0answers
52 views

Better approaches to shrinking and compressing photographs in .NET? [closed]

There's a LOT of different ways to leverage .NET Bitmap and Metafile classes... and the documentation is sooo terse (and broken out to other things like Graphics), it is easy to miss better options. ...
1
vote
3answers
105 views

Crash safe on-the-fly compression with GZipStream

I'm compressing a log file as data is written to it, something like: using (var fs = new FileStream("Test.gz", FileMode.Create, FileAccess.Write, FileShare.None)) { using (var compress = new ...
0
votes
1answer
33 views

.NET PackagePart object - what does it contain?

What does a PackagePart object include ? Does it contain the actual data of the file associated to it or just the Uri, content type and compression option?
0
votes
1answer
72 views

Excluding files with SevenZipSharp in Code

I'm currently on a little project where I have to define several paths that need to be compressed into one single zip-file. Now the following case: One of those paths is a directory, which should be ...
-2
votes
2answers
173 views

Compress files into a .zip file with a specific directory structure - C#/.Net

I'm developing an application with C# and I'm trying to compress a few files from different locations into a zipped file. My problem is that I want to have a different structure within this zip file ...
-1
votes
1answer
66 views

EXE comperession (for the .NET app) algorithm shows strange chars with the real human name in binary code

Have opened just for fun just compiled .net application and have found in binary structure of the file the next: I've just working with my HTTP parser tool, where I'm training with substring search ...
2
votes
3answers
715 views

Installed .Net 4.5 but can't use ZipFile class in Visual C#

I'm kind of a newbie to Visual Studio programming. I recently upgraded .Net 4.0 to 4.5 in order to use the ZipFile class under System.IO.Compression, but after the installation completed, Visual ...
0
votes
1answer
486 views

compress avi video with c#

I have an AVI file that I would like to compress. I have tried using Simple C# Wrapper for the AviFile Library but it was problematic because of 2 reasons: while compression, the infrastructure ...
1
vote
1answer
107 views

Node JS and MS Build - Is This Possible?

I am writing MS Build task for JavaScript compression and I hoped I could use Uglify as my compression provider. Since Uglify is written in JavaScript I obviously needed a .NET port. Fortunately, ...
2
votes
1answer
616 views

Compress all traffic to WCF

We have a couple of WCF (data) services. Because few of our clients are connecting to those services via a terrible network connection, we would like to assure that ALL traffic is compressed. So, we ...
2
votes
1answer
303 views

compress a byte array with vb.net

i want to compress a byte array with vb.net a try this code But the results are very bad Array size : Before compression 32768 After compression 42737 public static byte[] Compress(byte[] ...
2
votes
1answer
954 views

How to use MSBuild extension's Zip task?

I decided to use MSBuild Extension's Zip task to compress some of my source code at every build. However, this not works: <UsingTask TaskName="MSBuild.ExtensionPack.Compression.Zip" ...
0
votes
1answer
73 views

Compression Task (Team Foundation Server)

I'm using Team Foundation Server, and I have to make a compressed zip file from my source code automatically everytime the build server builds the code. This is a fragment of my project file: ...
-1
votes
1answer
596 views

Integrating 7-zip library in to a C#.NET application [duplicate]

Possible Duplicate: How do I create 7-Zip archives with .NET? How can we integrate 7-zip archiving library in a C#.NET application. I am working on an application that need to have an ...
1
vote
0answers
151 views

How to turn on SSL-layer compression for .Net HttpWebRequest client?

Apache/Perl-based HTTPS server that I'm using supports compression in SSL Layer. That means that all client-server communications are compressed, and not just server responses, as in HTTP compression. ...
0
votes
3answers
37 views

How do I read the individual bytes of a file

I am trying to determine whether or not a file has been compressed with the GZip protocol. The consensus seems to be that I need to read the first two bytes of the file, and check that they are equal ...
0
votes
0answers
72 views

How to get compression progress using ICSharpCode.SharpZipLib

I have a problem reporting compression progress. I'm using ICSharpCode.SharpZipLib to compress a directory. Is there a algorithm to calculate the correct percentage of process of compression using ...
-1
votes
2answers
956 views

asp.net mvc 4 display many images

I am writing an application to display many pictures (50-60). pls, advise to me how best to implement it. 50-60 queries do not very well for one . At first I did following method: 1. convert pictures ...
2
votes
2answers
705 views

.NET GZipStream decompress producing empty stream

I'm trying to serialize and compress a WPF FlowDocument, and then do the reverse - decompress the byte array and deserialize to recreate the FlowDocument - using the .NET GZipStream class. I'm ...
1
vote
5answers
189 views

if you compressed file containing random numbers it get bigger

var file = new FileStream("random.txt", FileMode.Create); var random = new Random(); for (int i = 0; i < 100000000; i++) { var bytesToWrite = ...
1
vote
1answer
146 views

Concurrently decompressing a stream

.NET allows a stream to be decompressed by wrapping it in another stream. However, I assume this is implemented serially. Is it possible to make this concurrent so the decompression of the last block ...
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
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 ...
2
votes
1answer
198 views

Error with decompression/compression error

I have the error while decompressing "The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or a non-white space character among the ...
0
votes
1answer
95 views

Approaches to fast visualization of huge amount of data

I am looking for some approaches to compress a big (and dynamically growing) amount of data for visualization in a graph view. Say I have a binary file consisting of timestamp-value pairs. This file ...
3
votes
7answers
4k views

how to compress files in c#

I want to compress a file and a directory in C#. I found some solution in Internet but they are so complex and I couldn't run them in my project. Can anybody suggest me a clear and effective solution? ...
2
votes
2answers
413 views

.net compressing pdf generated with crystal reports

As of now, we are generating PDFs programmatically using crystal reports and saving it to database. The PDF document has barcode image in it. Each file is of size 120-150 KB. Everything is running ...
2
votes
2answers
190 views

Compress a short but repeating string

I'm working on a web app that needs to take a list of files on a query string (specifically a GET and not a POST), something like: ...
0
votes
1answer
576 views

Compressing data sent to an ASMX web service

I have an old style .NET ASMX (SOAP/XML) webservice that is used to upload data to a central service with a very simple and lightweight ack response. This has been in place for years and has worked ...
4
votes
2answers
414 views

Compress small strings, with what to create external dictionary?

I want to compress much small strings (about 75-100 length c# string). At the time the dictionary is created I already know all short strings (nearly a trillion). There will no additional short ...
3
votes
2answers
2k views

Compress and decompress a Stream with Compression.DeflateStream

I am trying to compress and decompress a Stream using Compression.DeflateStream. Compressing seems to work correctly since the code below compresses my Stream to a 110 bytes long array. However, ...
3
votes
1answer
238 views

Delta Compression in .NET

Has anyone been able to perform compression in a .NET environment to generate deltas between files. I'd like to use this functionality if at all possible, perhaps by using the functionality in ...
2
votes
4answers
297 views

Easiest way to compress in Python and decompress with decompress C# (and vice versa)

I have a program with a Mono-based C# client and a Python server, which communicate over a TCP/IP socket. The messages use a mostly binary format but the largest part of each message is usually ...
1
vote
0answers
322 views

WCF Data Service - client proxy Compression

I have a WCF Data Service, and I am trying to enable support for IIS compression. So far the best I have got is when I tried the following: static ServiceReference1.myTestEntities GetEntities() { ...
2
votes
3answers
632 views

DXT texture compression?

I'm working with multiple images that need to be compressed using the DXT/S3TC format (specifically DXT5). Does anyone know of a DXT compression implementation (preferably in C#, or using the .Net ...
1
vote
2answers
84 views

Looking for a dictionary based .NET text compression library

I am looking for a .NET dictionary based compression library, something that would allow me 'seed' it with a large list / string of common words which it would use to build its dictionary. The reason ...
0
votes
5answers
138 views

compressing and decompressing Text from html to server and vice-versa

We are going to write a feature on my system that will require a very massive user http post and http response, probably millions of requests/response with just some bytes each ( sending and getting ...
0
votes
1answer
117 views

PDF pages show up blank after Deflate compression

I have created an application in .NET which creates simple text based PDF files from scratch. I have been successful in creating PDF files where I put content text as it is e.g. Td (Hello World) Tj. ...

1 2 3 4