Image in repeating group not functioning

Not sure what I’m doing wrong.

I have the data set up to where it shows up in the database as an image.

But when I go to call it on a repeating group, it’s a blank image box and this is what I get when I open image in new tab:

data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7

Any help would be amazing, thanks!

This is base64 file. You will need to convert it. You can use html to display the image to see if it works. Example:

<img src="data:image/jpeg;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAZCAYAA....">
1 Like

This topic was automatically closed after 70 days. New replies are no longer allowed.