Showing OpenAI GPT-Image-1 images in adalo (Base64 Data URI)

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!

Instead of trying to render Base64 directly, use a tiny backend workaround & send the Base64 string to a lightweight service (like a Make/Integromat scenario or a simple Cloud Function) then decode it & upload it to a public image host & return the public URL. Then, feed that URL to Adalo’s Image component.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.