1
I’m having a problem with the resolution of the photos in my app. My file TS. this with the following settings:
import { Component, OnInit } from '@angular/core';
import { PictureSourceType, Camera, CameraOptions } from '@ionic-native/camera/ngx';
import { Router } from '@angular/router';
import { ActionSheetController } from '@ionic/angular';
@Component({
selector: 'app-pic-register',
templateUrl: './pic-register.page.html',
styleUrls: ['./pic-register.page.scss'],
})
export class PicRegisterPage implements OnInit {
public photo: string;
constructor(
private router: Router,
private camera: Camera,
private ActionSheetController: ActionSheetController
) { }
ngOnInit() {
}
updateStoredImage(image) {
}
documentFront(){
console.log('aqui');
this.router.navigateByUrl('/register/document-front')
}
async selectImage() {
const actionSheet = await this.ActionSheetController.create({
header: 'Selecione uma image',
buttons: [{
text: 'Galeria',
icon: 'file-tray-full-outline',
handler: () => {
this.takePicture(this.camera.PictureSourceType.PHOTOLIBRARY);
}
}, {
text: 'Camera',
icon: 'camera',
handler: () => {
this.takePicture(this.camera.PictureSourceType.CAMERA)
}
}, {
text: 'Cancelar',
role: 'cancel',
icon: 'log-out-outline',
}]
});
await actionSheet.present();
}
takePicture(sourceType: PictureSourceType) {
this.photo = '';
var options: CameraOptions = {
quality: 100,
sourceType: sourceType,
saveToPhotoAlbum: false,
correctOrientation: true,
destinationType: this.camera.DestinationType.NATIVE_URI,
encodingType: this.camera.EncodingType.JPEG,
mediaType: this.camera.MediaType.PICTURE,
targetWidth: 100,
targetHeight: 100
}
this.camera.getPicture(options).then(imageData => {
let base64image = 'data:image/jpeg;base64,' + imageData;
this.photo = base64image;
}, error =>{
console.log(error);
}).catch(error => {
console.log(error);
})
}
}
Normal photo upload occurs but it is rendered as follows with very low quality:
Someone would know what mistake is running since in the camera options I put the quality to 100
I tried with 400x400 but did not render any image. I believe that if I suppress these two variables it will pick up the pattern sent by the camera, correct?
– Betini O. Heleno
In the documentation the default value is not quoted, so I assume yes. If you do not specify the values, the image appears?
– Rafael Tavares
It worked perfectly. When do not arrow the values it picks the total quality of the image.
– Betini O. Heleno