Getting started Community Training Tutorials Documentation APIs, AI & Tools
%dw 2.0
import fromBase64 from dw::core::Binaries
output application/octet-stream
---
fromBase64(payload)
This version of the product has entered Extended Support. You can switch to the latest version or use the version selector in the left navigation.
Transforms a Base64 string into a binary value.
This example takes a Base64 encoded string and transforms it into a binary value. This example assumes that the payload contains the Base64 string generated from an image in example toBase64.
%dw 2.0
import fromBase64 from dw::core::Binaries
output application/octet-stream
---
fromBase64(payload)
The output of this function is a binary value that represents the image generated in example toBase64.