cordova-screenshot icon indicating copy to clipboard operation
cordova-screenshot copied to clipboard

base64

Open quedicesebas opened this issue 10 years ago • 1 comments
trafficstars

It's possible to get the base 64 data instead of save to storage?

quedicesebas avatar Sep 15 '15 17:09 quedicesebas

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)

roblav96 avatar Dec 05 '15 13:12 roblav96