0
私はBASE64に画像のURLを変換するにはどうすればよいのヘルプ、(イオン2)どのように私はあなたがこのようにそれを行うことができます
this.camera.getPicture({
sourceType: this.camera.PictureSourceType.PHOTOLIBRARY,
destinationType: this.camera.DestinationType.FILE_URI,
quality: 100,
encodingType: this.camera.EncodingType.PNG,
}).then(imageData => {
console.log('THIS IS THE URI ' + imageData);
//How do I get the image and convert it to base64 ?
}, error => {
this.error = JSON.stringify(error);
});
解決策はあなたのために機能しましたか? –