VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Deflate64/Inflate64 for coders

by Marco v/d Berg (7 Submissions)
Category: Files/File Controls/Input/Output
Compatability: VB Script
Difficulty: Intermediate
Date Added: Wed 3rd February 2021
Rating: (8 Votes)

Deflate and inflate modules.
I saw the article from Jim Reforma about how a deflate algorithm should work and noticed that people asked for working Deflate code. well here it is. This code can be used to create filetypes wich used Deflate as compression algo (ZIP,GZIP,CAB, etc.etc). The only thing you have to do is create the headerdata for these formats.(don't get me wrong but this can be a lot of work(bin there, Done that)).
Don't expect to much of the code in terms of speed since it's all coded in VB, it is pretty fast but not by a long shot as fast as winzip.
If you plan to code a ZIP compliant compressor, then take a look at my Archive Explorer And you will have ALMOST everything you need to know.

Inputs
call Deflate(ByteArray() As Byte, CompLevel As Integer, Optional Deflate64 As Boolean = False) ByteArray() = the file to be compressed Complevel = compression level 0-9 Deflate64(true) = compress in deflate64 format, otherwise in normal deflate format Inflate(ByteArray() As Byte, Optional UncompressedSize As Long = 1000, Optional ZIP64 As Boolean = False) As Long ByteArray() = the file to be decompressed UncompressedSize = if known the decompressed filesize ZIP64(True) = Decompress in deflate64 format, otherwise in normal deflate format. The data wich returns in ByteArray() is the compressed or decompressed data.

Rate Deflate64/Inflate64 for coders

Download Deflate64/Inflate64 for coders

Download Deflate64/Inflate64 for coders (11 KB)

Deflate64/Inflate64 for coders Comments

No comments have been posted about Deflate64/Inflate64 for coders. Why not be the first to post a comment about Deflate64/Inflate64 for coders.

Post your comment

Subject:
Message:
0/1000 characters