Unable to set image on html tag img src in ionic3

i am unable to understand what path i should use to show image on UI img src tag please help.

i am getting file path of image but unable to set.

let options = {
quality: 30,
allowEdit: true,
sourceType: this.camera.PictureSourceType.PHOTOLIBRARY,
saveToPhotoAlbum: false,
correctOrientation: true,
encodingType: this.camera.EncodingType.JPEG,
mediaType: this.camera.MediaType.PICTURE
}

this.camera.getPicture(options).then((imagePath) => {
  
  if (this.platform.is('android')) {
    this.filePath.resolveNativePath(imagePath)
      .then(filePath => {
        this.setPhotoOnUI = filePath;
        
        this.lastImage = this.createFileName();
        // let correctPath = filePath.substr(0, filePath.lastIndexOf('/') + 1);
        // let currentName = imagePath.substring(imagePath.lastIndexOf('/') + 1, imagePath.lastIndexOf('?'));
        // this.copyFileToLocalDir(correctPath, currentName, this.createFileName());
      });
  } else {
    // var currentName = imagePath.substr(imagePath.lastIndexOf('/') + 1);
    // var correctPath = imagePath.substr(0, imagePath.lastIndexOf('/') + 1);
    // this.copyFileToLocalDir(correctPath, currentName, this.createFileName());
  }
});
import {WebView} from '@ionic-native/ionic-webview/ngx';

constructor( private webview: WebView, [...] ) {}

let options = {
        destinationType: this.camera.DestinationType.FILE_URL //think you need this too
}

this.camera.getPicture(options).then((imagePath) => {        
        this.setPhotoOnUI = this.webview.convertFileSrc(imagePath); //this should get you what you need
    }, (err) => {
        //handle error
    });

this is the solution.

private win: any = window;

this.setPhotoOnUI= this.win.Ionic.WebView.convertFileSrc(imagePath);

thanks for your help.you gave me the hint then i am able to find solution.