I have an <img>
element in my app, but it's required to get a blob element with its contents for sending it via <form>
element, how to do that??
Asked
Active
Viewed 232 times
1

Jesus
- 8,456
- 4
- 28
- 40
-
this [question](http://stackoverflow.com/questions/20225629/reading-file-in-windows-metro-javascript-app/20236874#20236874) might be relevant – Sushil Dec 12 '13 at 03:38
-
What is the src attribute of the img element. Typically, you can get a blob from that same source rather than from the img element itself. Typically you're using either a straight web URI, an in-app URI (ms-appx or ms-appdata), or a canvas, and in all three cases you have other ways of getting to the blob. – Kraig Brockschmidt - MSFT Dec 17 '13 at 03:53