Results 1 to 5 of 5

Thread: Detection of compression algorithm, how?

  1. #1

    Detection of compression algorithm, how?

    Hi folks.

    I am having a file stored in a binary format in a database. I know that it is compressed. However, I do not know what kind of algorithm has beed used to compress it. Anyone know a tool which would be helpful in the analyse of such file so I could decompress it?

    Thanks for your suggestions.

  2. #2

    Detection of compression algorithm, how?

    Usually in your SQL statement you call a compress or decompress function; what type of database are you using?

  3. #3

    Detection of compression algorithm, how?

    depending on the budget it's probably zlib or gzip variant, depends on the age of file format.
    This is my game project - Top Down City:
    http://www.pascalgamedevelopment.com...y-Topic-Reboot

    My OpenAL audio wrapper with Intelligent Source Manager to use unlimited:
    http://www.pascalgamedevelopment.com...source+manager

  4. #4

    Detection of compression algorithm, how?

    @Robert - I am using SQL Server 2000

    @Delfi - zip would be my first guess too but I hoped that some tool could do the guessing job for me

  5. #5

    Detection of compression algorithm, how?

    Yes, it's probably based off ZLib, zip, or gzip. You'd have to look at the header of the blob without decompression to find out for certain.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •