Hi embers,
I receive from a websocket server a jpeg from a canvas on a web page:
var imgData = canvas.toDataURL("image/jpeg"); window.socket.emit('canvas', imgData);
In my Cinder app, the message is received as a string, see screen capture below:
How can I convert this string to a texture?
Thank you for any hint.