img.scanQRCode如何解析buffer?
// 小程序端
wx.cloud.callFunction({ name: 'imgCheck' , data: { contentType: `image/jpeg `, buffer: buffer, } }) |
// 云端 const res = await cloud.openapi.img.scanQRCode({ img: { contentType: event.contentType, value: Buffer.from(event.buffer) } }) |
如上,
用相同的图片,用相同的处理方法,调用 cloud.openapi.security.imgSecCheck 方法没有问题,猜测是 scanQRCode 方法解析文件有问题?求官方看看