Skip to main content

BASE64_TO_BLOB

Converts a base64-encoded string to a Blob and stores it in the flow context as a blob output.

At a glance

  • Category Utils
  • Version: 1.1.0
  • Applications: all
  • Scope: all

Config Options

NameDescriptionDefaultRequiredResolvedConstraintsConditional Rules
inOptional path or variable name to read the base64 string from the flowContext. If omitted, the default text input is used.NonefalsetrueNoneNone
contentTypeOptional content type for the resulting Blob (e.g. "image/png").NonefalsefalseNoneNone

Outputs

TypeDescriptionOptional
blobThe resulting Blob created from the base64 input.false

Examples

Convert base64 to blob

- step: BASE64_TO_BLOB
in: "base64Image"
contentType: "image/png"

See Also

General Resources: