Name

ToBase64 — New as of ColdFusion 4.5

Synopsis

ToBase64(value)

Base64 encodes a binary object or string. Base64 is an encoding scheme that uses printable characters to represent binary data. Base64 is typically used to encode binary data before it is sent via email or stored in a database. Here’s an example that reads in a binary file using CFFILE and encodes it using ToBase64( ):

<CFFILE ACTION="ReadBinary" FILE="D:/mydir/myfile.exe" VARIABLE="MyBinaryFile">

<CFSET MyBase64 = ToBase64(MyBinaryFile)>

<CFOUTPUT>Base64: #MyBase64#</CFOUTPUT>

Get Programming ColdFusion now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.