Skip to content

Instantly share code, notes, and snippets.

@PaulKinlan
Created June 1, 2012 17:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save PaulKinlan/2853817 to your computer and use it in GitHub Desktop.
Save PaulKinlan/2853817 to your computer and use it in GitHub Desktop.
http://webintents.org/save image/* as Blob client
var i = new Intent({
"action": "http://webintents.org/save",
"type": "image/*",
"data": blob
})
var onsuccess = function(data) {
var img1 = document.getElementById("img1");
img1.src = URL.createObjectURL(data);
};
var onerror = function(){ };
window.navigator.startActivity(i, onsuccess, onerror);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment