当前位置:   article > 正文

微信小程序base64图片转换临时链接_uniapp在微信小程序中把pdf的base64转为url

uniapp在微信小程序中把pdf的base64转为url

小程序内新建 base64src.js

const base64src = (base64data, fun) => {
  const base64 = base64data; //base64格式图片
  const time = new Date().getTime();
  const imgPath = wx.env.USER_DATA_PATH + "/poster" + time + "share" + ".png";
  //如果图片字符串不含要清空的前缀,可以不执行下行代码.
  const imageData = base64.replace(/^data:image\/\w+;base64,/, "");
  const file = wx.getFileSystemManager();
  file.writeFileSync(imgPath, imageData, "base64");
  fun(imgPath);
};

export { base64src };
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

业务脚本内使用

import { base64src } from "../../utils/base64src"; // 后面引用路径为base64src.js文件路径

const url = 'base64图片路径';
base64src(url, (res) => {
	console.log(res); // 转换后的临时连接路径
});
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/306488
推荐阅读
相关标签
  

闽ICP备14008679号