Using Javascript, I\'m making an AJAX call to a WCF service, and it is returning a byte array. How can I convert that to an image and display it on the web page?
Using jQuery as an example:
var myImage = $('< img src="data:image/jpg; base64," + bytesarray + "/>"');