微信小程序设置图片清晰度

微信小程序生成图片之后,生成图片不清楚。需要设置canvas里生成图片的参数。
destWidth 生成图片的宽度,数值越大图片越清楚。
destHeight 生成图片的高度,数值越大图片越清楚。
数值不是越大越好,数值越大,生成的图片越大,图片加载的也就越慢

wx.canvasToTempFilePath({
x: 0,
y: 0,
width: w,
height: h,
destWidth: w,
destHeight: h,
canvasId: 'shareCanvas',
success: function (res) {
wx.saveImageToPhotosAlbum({
filePath: res.tempFilePath,
success(res) {
wx.showToast({
title: '图片已经生成',
icon: 'loading',
duration: 1000
});
}
})

你可能感兴趣的:(微信小程序设置图片清晰度)