gitawego / cordova-screenshot

screenshot plugin for cordova/phonegap
Other
211 stars 167 forks source link

base64 #61

Open quedicesebas opened 9 years ago

quedicesebas commented 9 years ago

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

roblav96 commented 8 years ago
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)