微信小程序 canvas导出图片模糊

时间:2023-03-09 02:44:33
微信小程序 canvas导出图片模糊
//保存到手机相册
save:function () {
wx.canvasToTempFilePath({
x: ,
y: ,
width: , //导出图片的宽
height: , //导出图片的高
destWidth: * / wx.getSystemInfoSync().windowWidth, //绘制canvas的时候用的是px, 这里换算成rpx ,导出后非常清晰
destHeight: * / wx.getSystemInfoSync().windowWidth, //同上 px 换算成 rpx
canvasId: 'poster',
success: function (res) {
wx.saveImageToPhotosAlbum({
filePath: res.tempFilePath,
})
wx.showToast({
title: '保存成功',
icon: 'success',
duration:
})
},
fail:function (res) {
wx.showToast({
title: '系统繁忙,请重试',
icon: 'success',
duration:
})
}
})
},