//保存到手機相冊
save:function () {
wx.canvasToTempFilePath({
x: 0,
y: 0,
width: 375, //導出圖片的寬
height: 680, //導出圖片的高
destWidth: 375 * 750 / wx.getSystemInfoSync().windowWidth, //繪製canvas的時候用的是px, 這裏換算成rpx ,導出後很是清晰
destHeight: 680 * 750 / wx.getSystemInfoSync().windowWidth, //同上 px 換算成 rpx
canvasId: 'poster',
success: function (res) {
wx.saveImageToPhotosAlbum({
filePath: res.tempFilePath,
})
wx.showToast({
title: '保存成功',
icon: 'success',
duration: 2000
})
},
fail:function (res) {
wx.showToast({
title: '系統繁忙,請重試',
icon: 'success',
duration: 2000
})
}
})
},