Hi,
I am using Camera Plugin, my platform is Android. Everything works fine with base64-encode string but when I use destinationType is FILE URI the image won’t display.
I have already tried with these ways but it still not work:
-
Add
<meta http-equiv="Content-Security-Policy" content="default-src *; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' 'unsafe-eval'>
-
Import DomSanitizer
-
Use normalizeURL
-
Not using livereload
-
Add
<allow-navigation href="file://*/*" >
This is the result when I take a picture from camera, I run ionic cordova run android
and debug it through USB device on Chrome:
My .ts file:
takePicture() {
const options : CameraOptions = {
quality: 100,
destinationType: this.camera.DestinationType.FILE_URI,
encodingType: this.camera.EncodingType.JPEG,
mediaType: this.camera.MediaType.PICTURE,
allowEdit: true,
correctOrientation: true,
saveToPhotoAlbum: true
}
this.camera.getPicture(options) .then((imageData) => {
this.imageURI = imageData;
this.images.push(this.imageURI);
console.log(this.images);
}, (err) => {
console.log(err);
});
}
My .html file:
<ion-grid>
<ion-row>
<ion-col col-6 *ngFor="let photo of photos; let id = index">
<ion-card class="block">
<img [src]="photo" *ngIf="photo" />
</ion-card>
</ion-col>
</ion-row>
</ion-grid>
Does anyone have a different solution? Please help me.
Thank you so much.