小程序
小游戏
企业微信
微信支付
扫描小程序码分享
目前使用小程序官方提供的threejs库,模型已经可以渲染,但是最后导出成图片时,报“canvasToTempFilePath: fail canvas is empty”,请问大家有没有什么好办法
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
canvasToTempFilePath: fail canvas is empty , 报这个错是因为调取 wx.canvasToTempFilePath 接口获取不到canvas
//绘制图片
ctx.draw(false, wx.canvasToTempFilePath({
canvasId: 'picture-canvas',
success: function (res) {
var tempFilePath = res.tempFilePath;
console.log(tempFilePath);
_this.isShow = false;
_this.$emit("createImg", tempFilePath)
},
fail: function (res) {
console.log(res);
}
},_this))
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
canvasToTempFilePath: fail canvas is empty , 报这个错是因为调取 wx.canvasToTempFilePath 接口获取不到canvas
//绘制图片
ctx.draw(false, wx.canvasToTempFilePath({
canvasId: 'picture-canvas',
success: function (res) {
var tempFilePath = res.tempFilePath;
console.log(tempFilePath);
_this.isShow = false;
_this.$emit("createImg", tempFilePath)
},
fail: function (res) {
console.log(res);
}
},_this))