Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

DataFlex Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Code Signing
Compression
DKIM / DomainKey
DNS
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
Misc
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl
uncategorized

 

 

 

(DataFlex) Compress Text Feed to Binary

This example receives incoming text data in chunks, compresses as a stream, and accumulates the compressed binary data.

The purpose is to demonstrate the BeginCompressString, MoreCompressString, and EndCompressString methods.

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

Use ChilkatAx-9.5.0-win32.pkg

Procedure Test
    Boolean iSuccess
    Handle hoCompressedData
    Variant hoCompressedBytes
    Handle hoCompress
    Handle hoSbIndex
    Integer i
    String sOriginalText
    String sTemp1

    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    Get Create (RefClass(cComChilkatBinData)) To hoCompressedData
    If (Not(IsComObjectCreated(hoCompressedData))) Begin
        Send CreateComObject of hoCompressedData
    End

    Get Create (RefClass(cComChilkatCompression)) To hoCompress
    If (Not(IsComObjectCreated(hoCompress))) Begin
        Send CreateComObject of hoCompress
    End
    Set ComAlgorithm Of hoCompress To "deflate"
    Set ComCharset Of hoCompress To "utf-8"

    Get Create (RefClass(cComChilkatStringBuilder)) To hoSbIndex
    If (Not(IsComObjectCreated(hoSbIndex))) Begin
        Send CreateComObject of hoSbIndex
    End

    For i From 0 To 24
        // Note: It is possible (and normal) for a BeginCompress* or MoreCompress* method to return
        // an empty string (or 0 bytes).  When this happens, the input data is not lost.  It will be flushed
        // in a subsequent call.
        Send ComClear To hoSbIndex
        Get ComAppendInt Of hoSbIndex i To iSuccess
        If (i = 0) Begin
            Get ComGetAsString Of hoSbIndex To sTemp1
            Get ComBeginCompressString Of hoCompress sTemp1 To hoCompressedBytes
        End
        Else Begin
            Get ComGetAsString Of hoSbIndex To sTemp1
            Get ComMoreCompressString Of hoCompress sTemp1 To hoCompressedBytes
        End

        Get ComAppendBinary Of hoCompressedData vCompressedBytes To iSuccess
        Get ComMoreCompressString Of hoCompress ": This is a line of data to be compressed..." + (character(13)) + (character(10)) To hoCompressedBytes
        Get ComAppendBinary Of hoCompressedData vCompressedBytes To iSuccess
    Loop

    // Flush any remaining output.
    Get ComEndCompressString Of hoCompress To hoCompressedBytes
    Get ComAppendBinary Of hoCompressedData vCompressedBytes To iSuccess

    // Show the compressed data in hex format:
    Showln "The hex encoded compressed text:"
    Get ComGetEncoded Of hoCompressedData "hex" To sTemp1
    Showln sTemp1

    // Now decompress in one call:
    Get ComGetBinary Of hoCompressedData To hoCompressedBytes
    Get ComDecompressString Of hoCompress vCompressedBytes To sOriginalText
    Showln sOriginalText


End_Procedure

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.