Hi!
so I am fairly new to ionic 2 and I was wondering, how could I take a picture then store it on the phone and retrieve it afterwards in order to display again.
Right now I am using:
Camera.getPicture(options).then((imageData) => {
this.base64Image = 'data:image/jpeg;base64,' + imageData;
}, (err) => {
// Handle error
console.log(err);
});
What I would like to do is to save the image in the directory of the app and then retrieve it.
I would be using ionic storage to save the path to the image in order to display it later.