Calculates the Base64 representation of a string or binary
object. The Base64 format uses printable characters, allowing
binary data to be sent in forms and e-mail, and stored in a
database or file.
toBase64(string_or_object [, encoding])
→ returns string
utf-8
iso-8859-1
windows-1252
us-ascii
shift_jis
iso-2022-jp
euc-jp
euc-kr
big5
euc-cn
utf-16
Converts a String to a Base64-String.
ToBase64("Test String")
Expected Result: VGVzdCBTdHJpbmc=
Converts an Image Binary to a Base64-String.
ToBase64(ToBinary(ImageRead("example.jpg")))
Signup for cfbreak
to stay updated on the latest news from the ColdFusion / CFML community. One email, every friday.