同样的问题,请问有解决的吗
canvasToTempFilePath:fail:create bitmap failed报错?请问这个报错怎么解决呢?用户微信版本和系统版本在下面 [图片][图片]
2020-06-19之前微信版本没升级到7.0.15的时候是没问题的,这两天微信升级之后出现的这个问题
canvasToTempFilePath:fail:create bitmap failed?安卓荣耀V20,微信版本是7.0.15 微信小程序canvas画图报错,但是在其他手机荣耀30s,和Nova 3上可以运行。 而IOS没问题: 代码片段: saveImgToLocal() { const that = this; setTimeout(() => { wx.canvasToTempFilePath({ canvasId: 'k-canvas', destWidth: that.canvasWidthInPx, destHeight: that.canvasHeightInPx, success: function (res) { that.getImageInfo(res.tempFilePath); }, fail: function (error) { console.error(`canvasToTempFilePath failed, ${JSON.stringify(error)}`); that.triggerEvent('imgErr', { error: error }); }, }, this); }, 300); } [图片] 尝试社区中的加延迟和重试方法,还是报同样的错误。
2020-06-19