cordova-screenshot
cordova-screenshot copied to clipboard
base64
trafficstars
It's possible to get the base 64 data instead of save to storage?
navigator.screenshot.URI(function(error,res){
if(error){
console.error(error);
}else{
html = '<img style="width:50%;" src="'+res.URI+'">';
document.body.innerHTML = html;
}
},50)