百度智能小程序 ARCameraContext

2020-09-05 14:17 更新

ARCameraContext

解釋:swan.createARCameraContext 的返回值。

屬性說明

屬性名 說明
ARCameraContext.startRecord 開始錄像
ARCameraContext.stopRecord 結(jié)束錄像
ARCameraContext.reset 重置相機
ARCameraContext.takePhoto 拍照

示例 

在開發(fā)者工具中打開



圖片示例

代碼示例

Page({
    data: {
        src: ''
    },
    onShow() {
        const cameraContext = swan.createCameraContext();
        this.cameraContext = cameraContext
        swan.showModal({
            title: '這是ARCameraContext創(chuàng)建的實例對象',
            content: JSON.stringify(cameraContext)
        })
    },
    takePhoto() {
        this.cameraContext.takePhoto({
            quality: 'high',
            success: res => {
                this.setData({
                    src: res.tempImagePath
                });
            }
        });
    },
    startRecord() {
        this.cameraContext.startRecord({
            success: res => {
                swan.showToast({
                    title: 'startRecord'
                });
            }
        });
    },
    stopRecord() {
        this.cameraContext.stopRecord({
            success: res => {
                swan.showModal({
                    title: '提示',
                    content: res.tempVideoPath
                });
                this.setData({
                    videoSrc: res.tempVideoPath
                });
            }
        });
    }
});


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號