Skip to content

Instantly share code, notes, and snippets.

@coderdiaz
Created May 20, 2015 18:32
Show Gist options
  • Save coderdiaz/a0c2707f69ab548d14cf to your computer and use it in GitHub Desktop.
Save coderdiaz/a0c2707f69ab548d14cf to your computer and use it in GitHub Desktop.
/* $cordovaCamera
* http://ngcordova.com/docs/plugins/camera/
*/
$scope.takepicture = function() {
var options = {
destinationType: Camera.DestinationType.FILE_URL,
quality: 90
};
$cordovaCamera.getPicture(options).then(function(imageData) {
/* alert(imageData); */
}, function(err) {
//The errors
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment