wx.canvasToTempFilePath
wx.canvasToTempFilePath({
canvas: this.canvas,
x: 0,
y: 0,
width: this.canvas.width, //导出图片的宽
height: this.canvas.height, //导出图片的高
destWidth: this.canvas.width, //导出图片的宽
destHeight: this.canvas.height, //导出图片的高
fileType: 'jpg',
quality: 0.5
success(res) {
}, fail(err) {
}
}, that)
文件类型为JPG其实就是改了个名字,导入PS等软件中无法识别,质量参数也没起作用,文件大小无变化。