Hi,
I am getting photo from my POST connector, but it is in base64 string format. I need this photo to appear on the form using image widget. Can someone help?
Thanks in advance
Hi,
I am getting photo from my POST connector, but it is in base64 string format. I need this photo to appear on the form using image widget. Can someone help?
Thanks in advance
Hi, have you tried to use an img div like this :
<div>
<p>Taken from wikpedia</p>
<img src="data:image/png;base64, iVBORw0KGgoAAAANSUhEUgAAAAUA
AAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO
9TXL0Y4OHwAAAABJRU5ErkJggg==" alt="Red dot" />
</div>
You can use the Text widget for that purpose.
HTH
Romain
Hi, I used link in image widget like this "data:image/png;base64," + photo(base64 format) and it works.
Thank you for the answer