IONIC 2 Image Picker how to show all the selected images in html?

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) => { });

I thinkthis bog post answers what you are wanting to do.

but looking at your code quickly, you would want to use a *ngFor on the ion-card (*ngFor="let image of images") and make sure for your ImagePicker function results, you are adding the singular result for each image instead of the whole array

this.images.push('data:image/jpeg;base64,' + results[i]);