Chilkat HOME Android™ Classic ASP C C++ C# Mono C# .NET Core C# C# UWP/WinRT DataFlex Delphi ActiveX Delphi DLL Visual FoxPro Java Lianja MFC Objective-C Perl PHP ActiveX PHP Extension PowerBuilder PowerShell PureBasic CkPython Chilkat2-Python Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ Visual Basic 6.0 VB.NET VB.NET UWP/WinRT VBScript Xojo Plugin Node.js Excel Go
(Excel) Deflate FileDemonstrates how to use the Deflate compression algorithm to compress a file. (The deflate compression algorithm is the most commonly used in the Zip archive file format.) This code is capable of compressing any size file because the file data is compressed from input to output in a streaming mode. The output file contains only the deflated data (it is not a .zip, and there is no file structure or format).
' This example requires the Chilkat API to have been previously unlocked. ' See Global Unlock Sample for sample code. Dim compress As Chilkat.Compression Set compress = Chilkat.NewCompression compress.Algorithm = "deflate" ' Deflate this XML file: success = compress.CompressFile("hamlet.xml","hamletDeflate.dat") If (success <> True) Then Debug.Print compress.LastErrorText Exit Sub End If ' Inflate back to the original: success = compress.DecompressFile("hamletDeflate.dat","hamletInflated.xml") If (success <> True) Then Debug.Print compress.LastErrorText Exit Sub End If Debug.Print "Success!" |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.