Hi all.
Hoping someone can help!
I'm looking to take a b64 image data string (eg. data:image/png;base64,.......) and convert it to an image in AwareIM.
I've tried creating the image in javascript:
var img = document.createElement("img");
img.src="data:image/png;base64,.......";
and pass this to Aware but I get this error: "Unable to set value [object HTMLImageElement] into attribute image"
Any ideas would be awesome, willing to try anything at this point.
I've stored the b64 image data string in an AwareIM attribute, but can't seem to go backwards from the IMAGE_DATA function..
EDIT: The reason I need this as an image is I want to create a word report that needs to contain this image. If it were an html report I could just <img src="data:image/png;base64,......."></img> and that works fine.