从相机插件获取图像路径



正如我认为,这将输出图像的数据

let cameraOptions = {
      destinationType: this.camera.DestinationType.DATA_URL 
    }

这将输出图像的路径

的路径
let cameraOptions = {
      destinationType: this.camera.DestinationType.FILE_URL 
    }

我想同时输出两者 - 只要我上传图像数据,还需要路径

如果需要一些更改

,请在您的答案中提及此部分
this.camera.getPicture(cameraOptions).then((data) => {
       this.imgDate = 'data:image/jpeg;base64,' + data;
     });

您可以在没有URL的情况下实现显示图片。无需首先上传

let cameraOptions = {
    destinationType: this.camera.DestinationType.DATA_URL 
}
this.camera.getPicture(cameraOptions).then((data) => {
    this.imgData = 'data:image/jpeg;base64,' + data;
    this.sendToServer(this.imgData);//base64 server sending
});
<img [src]="imgData">

相关内容

  • 没有找到相关文章

最新更新