Base64 Decoder Activity
The Base64 Decoder activity converts a Base64 encoded string into an image file. This activity is essential for processing Base64 encoded image data received from various sources, enabling its storage and use as a standard image file.
| Field | Description | Requirement |
|---|---|---|
| Base64 string | The Base64 encoded string that will be converted to an image file. | Required |
| Result file name | The full path and name for the image file that will be decoded from the Base64 string. | Required |
Action Types & Examples
Decoded File Path
- Format: string (file path)
- Example Result:
C:\Robusta\blueCar.png
Implementation Examples
Field Setup - Base64 string: ebfbnrjrygw354646ıkghascagsr - Result file name: C:\Robusta\blueCar.png Execution Parameters
Technical Notes
Ensure the specified
Result file namepath has appropriate write permissions. The activity will overwrite an existing file at the specified path without warning. Verify that theBase64 stringis a valid Base64 representation of an image to prevent runtime errors.