How to show the all the multiple images i selected in the ImagePicker? how to code it on the html code
Here is my current code, it doesnt show any images just a blank image
HTML
<ion-card>
<img [src]="images">
</ion-card>
TS
ImagePicker.getPictures({maximumImagesCount: 10,
width: 400,
height: 400,
quality: 75}).then((results) => {
for (var i = 0; i < results.length; i++) {
this.images = 'data:image/jpeg;base64,' + results;
}
}, (err) => { });