Skip to content

Instantly share code, notes, and snippets.

@saimon24
Created July 2, 2019 14:46
Show Gist options
  • Save saimon24/ffe31eb1360593155709cf54888b6311 to your computer and use it in GitHub Desktop.
Save saimon24/ffe31eb1360593155709cf54888b6311 to your computer and use it in GitHub Desktop.
captureImage(sourceType: number) {
var options: CameraOptions = {
quality: 100,
sourceType: sourceType,
saveToPhotoAlbum: false,
correctOrientation: true
};
this.camera.getPicture(options).then(imagePath => {
// There is your image!
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment