ngOnInit(){
this.photos=[];
}
takePhotos(){
const options: CameraOptions = {
quality: 30,
destinationType: this.camera.DestinationType.DATA_URL,
encodingType: this.camera.EncodingType.JPEG,
mediaType: this.camera.MediaType.PICTURE,
}
this.camera.getPicture(options).then((imageData) => {
// imageData is either a base64 encoded string or a file URI
// If it's base64:
this.base64Image = 'data:image/jpeg;base64,' + imageData;
this.photos.push(this.base64Image);
this.photos.reverse();
}, (err) => {
// Handle error
});
}
带有相机插件 img 的 ionic 应用程序单击并显示在屏幕上,如何将此 base64 字符串另存为 Gaary 中的图像并保存每个 img 的路径? 任何身体可以用一个简单的例子来描述吗?
const options: CameraOptions = {
quality: 30,
destinationType: this.camera.DestinationType.DATA_URL,
encodingType: this.camera.EncodingType.JPEG,
mediaType: this.camera.MediaType.PICTURE,
saveToPhotoAlbum : true
}
只需添加此行 保存到相册 :true,它开始在加拉里保存保存图像。