I need to upload the canvas image data to the server (database) on the fly, i.e., I need to create a form and with an input=file, and post the image data without any user interaction.
|
feedback
|
|
You don't need a file input, just get the data with ctx.getImageData() and post it to the server with Ajax. https://developer.mozilla.org/En/HTML/Canvas/Pixel%5Fmanipulation%5Fwith%5Fcanvas But I have to tell you that you won't be able to get the image data in IE, even with ExCanvas. | |||||||||
feedback
|
|
FWIW, this is how I got it working. My server is in google app engine. I send canvas.toDataURL()'s output as part of post request using jQuery.post. The data URL is base64 encoded image data. So on server I decode it and convert it to image
From client I send the data like this:
This may not be the best way to do it, but it works. | |||
|
feedback
|
|
You can get the image data in the form of a data: url, this only works in Firefox and Opera so far though. | |||
|
feedback
|