I receive paste image from clipboard, get a object like this:
Due to security reason, I cannot add it into a <input>
. I tried to upload it directly with jquery post, like
var d=new FormData()
d.append('blob',blob.__proto__);
contentType: false,processData: false,
but just post a [Object File]
to the server. So how can I post it as a normal image?