Is there a way to capture multiple images at once using the camera? Currently, I am only able to capture one image when the user clicks. However, I would like to capture four images when the user clicks the success button.
let options: CaptureImageOptions = {
limit: 3
};
this.mediaCapture.captureImage(options).then((data: MediaFile[]) => {
let file = data.pop();
let path = file.fullPath.replace('file://','');
this.photos.push(path)
}
Although the camera is working with this plugin, I am experiencing difficulties in displaying the image.