07-01-19 11:27 PM
07-01-19 11:33 PM
Please refer to this thread: https://community.blueprism.com/communities/community-home/digestviewer/viewthread?GroupId=97&MID=2748 Additionally, here's the code stage I used.
Inputs:
FilePath - Text
Outputs:
Base64 - Text
Dim imageArray As Byte() = System.IO.File.ReadAllBytes(FilePath) Dim base64ImageRepresentation As String = Convert.ToBase64String(imageArray) Base64 = base64ImageRepresentation