Get an image in data:image/png;base64,iVBOR.... format

I cannot try it myself currently, but the following should actually work:

  1. Use a HTTP Retriever to download the image. It’ll provide the result as binary data,
  2. Connect the Base64 Encoder to convert to Base64.

Generally, the Base64 encoder can work with any kind of binary data input.

3 Likes