图像到base64 ionic 3

时间:2018-10-12 15:42:36

标签: ionic-framework base64

任何人都知道TS中的路由是什么,以便它获取图像并将其转换为base64?是否要在Facebook上分享本地图片?

致谢。

这是我的功能代码:

share(){



let filePath: string = "file:///assets/imgs/pesa4.jpg";

let shreface = this.actioSheetController.create({

  buttons:[
    {
      text:"facebook",
      icon:"logo-facebook",
      handler:()=>{
        this.base64.encodeFile(filePath).then((myBase64: string) => {
        this.socialSharing.share(this.message, this.subject, myBase64, this.url)
        console.log(myBase64);
        })
      }
    }
  ]

});
shreface.present(); 
}

enter image description here

1 个答案:

答案 0 :(得分:0)

尝试使用assets/imgs/pesa4.jpg删除"file:///"

如果要将本地存储映像转换为base64,请使用文件和文件选择器插件。