CameraContext.onCameraFrame(function callback)
基础库版本 >=
3.79.0
支持
获取 Camera 实时帧数据
参数
function callback
回调函数
callback 参数说明
属性 | 类型 | 说明 | 版本 |
---|---|---|---|
width | number | 图像数据矩形的宽度 | |
height | number | 图像数据矩形的高度 | |
data | ArrayBuffer | 图像像素点数据,一维数组,每四项表示一个像素点的 rgba |
返回值
CameraFrameListener
示例代码
const context = bl.createCameraContext()
const listener = context.onCameraFrame((frame) => {
console.log(frame.data instanceof ArrayBuffer, frame.width, frame.height)
})
listener.start()