I’m using the openAI gpt-image-1 API to generate images.
However, unlike dall-e, these images are returned as a Base64 Data URI (like this: data:image/png;base64,iVBORw0KG...
).
I’m trying to display this directly in an Image component by setting the Image URL property to that full Data URI string, but it doesn’t render anything.
Does the Adalo Image component support displaying images from a Base64 Data URI?
If not, is there any recommended workaround for displaying base64-encoded images directly within the app?
Thanks in advance!