Skip to content

Instantly share code, notes, and snippets.

@matsumotius
Created May 18, 2011 23:11
Show Gist options
  • Save matsumotius/979792 to your computer and use it in GitHub Desktop.
Save matsumotius/979792 to your computer and use it in GitHub Desktop.
phonegap - camera
function getPicture(){
navigator.camera.getPicture(function(data){
// success handler
alert('success');
}, function(){
// error handler
alert('error');
}, {
// options
quality: 50
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment