Skip to content

Instantly share code, notes, and snippets.

@TiagoWinehouse
Created May 25, 2015 13:50
Show Gist options
  • Save TiagoWinehouse/70381199b975e431fe8a to your computer and use it in GitHub Desktop.
Save TiagoWinehouse/70381199b975e431fe8a to your computer and use it in GitHub Desktop.
$cordovaCamera
/* $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