使用 canvas.toTempFilePath截图在小米手机上会出现花屏?
const dpr = wx.getSystemInfoSync().pixelRatio canvas.toTempFilePath({ x: 0, y: 0, width: 500, height: 400 , destWidth: 500*dpr, destHeight: 400*dpr, fileType: 'png', quality: 1, success(res) { wx.shareAppMessage({ imageUrl:res.tempFilePath, }); } }); 在其他手机上测试没有问题但是在小米手机上会出现花屏无法正常截图