In FF and Chrome we can send image data to server via this code:
canvas.toDataURL("image/png");
and then this base 64 string is decoded and extracted on server. I have the issue in IE now. Right now I have the image in "img" control like:
<img src="http://static.adzerk.net/Advertisers/12f0cc69cd9742faa9c8ee0f7b0d210e.jpg" />
I want to send the this image data (not src) to server in IE 8, 9. Can you help me doing the same? Any pointers to achieve it?