I am retrieving a byte array of a pictureStream from a .net webservice. the JSON byte array response looks like this:
[137, 80, 78, 372, 617 more...]
I am trying to convert this byte array and draw it into an HTML canvas like this
var context = document.getElementById('boxcover').getContext('2d');
context.putImageData(movies.PictureStream, 0, 0);
But this doesn't work. I have no access the modify the webservice, so I am looking to convert this byte array into a picture using Javascript only. Also, I can't use server side scripting, client side only.
Thanks for the help
Here is an example of how the byte array comes in : http://www.copypastecode.com/33072/