提交 cf87ee39 authored 作者: 羊富学's avatar 羊富学

贝因美调整

上级 dfee2fbf
......@@ -47,27 +47,27 @@ Page({
// 实时帧渲染到canvas
await wx.canvasPutImageData({
canvasId: 'myCanvas',
x:0,
y:0,
x:-frame.width / 4,
y:-frame.height / 4,
width: frame.width,
height: frame.height,
data: new Uint8ClampedArray(frame.data),
})
const fileData = await wx.canvasToTempFilePath({
canvasId: 'myCanvas',
x: frame.width / 4,
y: frame.height / 4,
width: frame.width / 2,
height: frame.height / 3,
x: 0,
y: 0,
width: frame.width,
height: frame.height,
quality: 'high',
fileType: 'jpg',
destWidth: frame.width / 2,
destHeight: frame.height / 3,
destWidth: frame.width,
destHeight: frame.height,
})
// this.setData({
// src:fileData.tempFilePath
// })
this.setData({
src:fileData.tempFilePath
})
const base = fileSystem.readFileSync(fileData.tempFilePath, 'base64')
// console.log('qr_result',flag,5555,base);
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论