例子:
https://developers.weixin.qq.com/s/0sOvZ6mB7Wer
使用 lib 2.10.0
<canvas type=“2d” id=“canvas” style=“width: 300px; height: 300px;”></canvas>
wx.canvasToTempFilePath({
canvas: canvas,
fileType: ‘jpg’,
quality: 1,
success: function(res){
console.log(res.tempFilePath);
wx.previewImage({
urls: [res.tempFilePath]
})
}
})
canvas2d 可以得到 临时文件的path 但是无法打开。在安卓预览时工作正常。
开发者工具中,一直是这个样子。
------------------------------------------------------------------------------
除此之外,
例子中
<cover-view> 在开发者工具中 无法遮盖 type=“2d” 的 canvas
在安卓手机上并无问题。