Chilkat
HOME
Android™
ASP
Visual Basic
VB.NET
C#
iOS (IPhone)
Objective-C
C++
C
MFC
Delphi
FoxPro
Java
Perl
PHP Extension
PHP ActiveX
Python
PowerShell
Ruby
SQL Server
VBScript
|
|
Load file into XML as Base64 Encoded ContentLoads any type file into an XML document. The file content is encoded as base64. <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </head> <body> <% set docRoot = Server.CreateObject("Chilkat.Xml") docRoot.Tag = "myDoc" ' To zip compress the content, set this flag to 1 zipContent = 0 ' To 128-bit AES encrypt the content, set this flag to 1 encryptContent = 0 encryptPassword = "" ' pdfNode is a Chilkat.Xml Set pdfNode = docRoot.NewChild("pdf","") ' Embed a PDF into XML success = pdfNode.SetBinaryContentFromFile("sample.pdf",zipContent,encryptContent,encryptPassword) If (success <> 1) Then Response.Write "<pre>" & Server.HTMLEncode(pdfNode.LastErrorText) & "</pre>" End If Response.Write "<pre>" & Server.HTMLEncode(pdfNode.LastErrorText) & "</pre>" ' Display the entire XML document: Response.Write "<pre>" & Server.HTMLEncode( docRoot.GetXml()) & "</pre>" ' Get the Base64-encoded content and display it: Response.Write "<pre>" & Server.HTMLEncode( pdfNode.Content) & "</pre>" ' Extract the binary content from XML: unzipContent = 0 decryptContent = 0 decryptPassword = "" success = pdfNode.SaveBinaryContent("out.pdf",unzipContent,decryptContent,decryptPassword) If (success <> 1) Then Response.Write "<pre>" & Server.HTMLEncode(pdfNode.LastErrorText) & "</pre>" End If Response.Write "<pre>" & Server.HTMLEncode("Success!") & "</pre>" %> </body> </html> |
© 2000-2012 Chilkat Software, Inc. All Rights Reserved.