vote up 0 vote down star

Hi

I have some delphi code that did this needs to be re coded in c#:

procedure TDocSearchX.Decompress;
var
BlobStream:TBlobStream;
DecompressionStream:TDecompressionStream;
FileStream:TFileStream;
Buffer:array[0..2047] of byte;
count:integer;
begin
    BlobStream:=TBlobStream.Create(DocQueryDATA,bmRead);
    DecompressionStream:=TDecompressionStream.Create(BlobStream);
    FileStream:=TFileStream.Create(FDocFile,fmCreate);
    while True do
    begin
        Count := DecompressionStream.Read(Buffer, 2048);
        if Count <> 0 then FileStream.Write(Buffer, Count) else Break;
    end;
    Blobstream.Free;
    DecompressionStream.Free;
    FileStream.Free;
end;

The contractor that wrote is leaving and I need to decompress the image (that is currently stored in the database). I have been able to extract the image to a file but have no idea how to decompress it using c# ??

Please help.

-Tim

flag
I'm not familiar with Delphi, but I could probably point you in the right direction as far as .NET goes. What compression algorithm does TDecompressionStream use? – Noldorin May 8 at 16:50

3 Answers

vote up 3 vote down check

It looks like TDecompressionStream probably uses ZLib. Here is a .NET library for ZLIB.

http://www.componentace.com/zlib_.NET.htm

-Oisin

link|flag
Thanks, I just tried this and it works a treat :-) – Tim May 11 at 9:20
Cool, glad I could help. – x0n May 11 at 16:21
vote up 0 vote down

If you have to keep the same compression already used, roll the Delphi decompression routine into a DLL and use it from C# using PInvoke.

If you want to replace the compression, write a batch process to extract the Delphi compressed images, decompress them to their original format and re-compress them with your favourite C# library.

link|flag
vote up 1 vote down

To my knowledge there is no .Net Framework equivalent to the TDecompressionStream class. Are you able to write a small converter app in Delphi that decompresses the image? Then you are free to use whatever compression library (e.g. SharpZipLib) supporting .Net within your C# code.

link|flag
Yeah, it seems TDecompressionStream uses ZLIB compression, so you'll need to go with a third-party library such as SharpZipLip (there are others too, but that seems to be the best). – Noldorin May 8 at 16:58

Your Answer

Get an OpenID
or

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