CameraFrameListener CameraContext.onCameraFrame(function callback)

基础库 2.7.0 开始支持,低版本需做兼容处理

获取 Camera 实时帧数据

参数

function callback

回调函数

参数

Object res
属性类型说明
widthnumber图像数据矩形的宽度
heightnumber图像数据矩形的高度
dataArrayBuffer图像像素点数据,一维数组,每四项表示一个像素点的 rgba

返回值

CameraFrameListener

注: 使用该接口需同时在 camera 组件属性中指定 frame-size。

示例代码

  1. const context = wx.createCameraContext()
  2. const listener = context.onCameraFrame((frame) => {
  3. console.log(frame.data instanceof ArrayBuffer, frame.width, frame.height)
  4. })
  5. listener.start()