下面参数无论是否指定 x,y,width,height 这些参数都会出现图片只有一半的情况。保持默认图片也是只有一半。
ctx.draw(false,()=>{
console.log('aaa')
uni.canvasToTempFilePath({
x:0,
y:0,
width: 375,
height: 667,
destWidth: 760,
destHeight: 1334,
canvasId: 'myCanvas',
success: function(res) {
// 在H5平台下,tempFilePath 为 base64
console.log(res.tempFilePath)
}
})
})