Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(DataFlex) PDF File Encoding to Base64Demonstrates how to encode a PDF file to base64, and then decode.
Use ChilkatAx-win32.pkg Procedure Test Handle hoPdfData Boolean iSuccess String sB64 Handle hoPdfData2 Get Create (RefClass(cComChilkatBinData)) To hoPdfData If (Not(IsComObjectCreated(hoPdfData))) Begin Send CreateComObject of hoPdfData End Get ComLoadFile Of hoPdfData "qa_data/helloWorld.pdf" To iSuccess If (iSuccess <> True) Begin Showln "failed to load PDF file." Procedure_Return End // Encode the PDF to base64 // Note: to produce base64 on multiple lines (as it would appear in the MIME of an email), // pass the string "base64_mime" instead of "base64". Get ComGetEncoded Of hoPdfData "base64" To sB64 Showln sB64 // Decode from base64 PDF. Get Create (RefClass(cComChilkatBinData)) To hoPdfData2 If (Not(IsComObjectCreated(hoPdfData2))) Begin Send CreateComObject of hoPdfData2 End Get ComAppendEncoded Of hoPdfData2 sB64 "base64" To iSuccess Get ComWriteFile Of hoPdfData2 "qa_output/helloWorld2.pdf" To iSuccess If (iSuccess <> True) Begin Showln "failed to write PDF file." Procedure_Return End End_Procedure |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.