我正在使用以下代码访问设备照片库, 但它重新调整base64编码的字符串,所以我对如何处理这些信息感到有点困惑。我想将照片存储到应用程序存储目录(而不是设备相册),然后获取图像URL,以便将其添加到用户数据库。
takePhoto() {
console.log('take photo')
const options: CameraOptions = {
quality: 100,
destinationType: this.camera.DestinationType.DATA_URL,
encodingType: this.camera.EncodingType.JPEG,
mediaType: this.camera.MediaType.PICTURE,
sourceType: this.camera.PictureSourceType.PHOTOLIBRARY
}
this.camera.getPicture(options).then((imageData) => {
// imageData is either a base64 encoded string or a file URI
// If it's base64:
console.log(imageData)
let base64Image = 'data:image/jpeg;base64,' + imageData;
}, (err) => {
// Handle error
console.log('camera error')
console.log(err)
});
}
答案 0 :(得分:0)
尝试使用
destinationType : Camera.DestinationType.FILE_URI
此插件实现了一个File API,允许对驻留在设备上的文件进行读/写访问。 cordova-plugin-file