欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 新闻 > 社会 > 微信小程序base64图片与临时路径互相转换

微信小程序base64图片与临时路径互相转换

2024/12/31 1:28:23 来源:https://blog.csdn.net/HDdgut/article/details/144430408  浏览:    关键词:微信小程序base64图片与临时路径互相转换

1、base64图片转临时路径

/*** 将base64图片转临时路径* @param {*} dataurl* @param {*} filename* @returns*/base64ImgToFile(dataurl, filename = "file") {const base64 = dataurl; // 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 fs = wx.getFileSystemManager();fs.writeFileSync(imgPath, imageData, "base64");fs.close();return imgPath;},

2、临时路径转base64

  fileToBase64Img(tempFilePath) {wx.getFileSystemManager().readFile({// 读取本地文件内容filePath: tempFilePath,encoding: "base64", //编码格式success(res) {let base64 = "data:image/png;base64," + res.data;return base64;},});},

注意:小程序保存base64出错,Unhandled promise rejection Error: writeFileSync:fail base64 encode error
解决方式,清除data:image/png;base64 前缀
如:base64.replace(/^data:image\/\w+;base64,/, "")

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com