ARCameraContext.takePhoto
2020-08-26 16:25 更新
解释:拍照,成功则返回图片。
方法参数
Object object
object参数说明
参数 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
success | Function | 否 | 接口调用成功的回调函数 | |
fail | Function | 否 | 接口调用失败的回调函数 | |
complete | Function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
success 返回参数说明
参数名 | 类型 | 说明 |
---|---|---|
tempImagePath | String | 图片的临时路径 |
示例
图片示例
代码示例
<ar-camera ar-key="10298931" ar-type="5" flash="{{flashState}}" class="camera" bindload="loadCameraSuccess" bindmessage="message" binderror="error">
<cover-view class="cameraState" bindtap="switchToPhoto">拍摄</cover-view>
<cover-image src="{{photoSrc}}"></cover-image>
</ar-camera>
Page({
data: {
photoSrc: ''
},
onShow() {
const ARCameraContext = swan.createARCameraContext();
this.ARCameraContext = ARCameraContext
},
takePhoto() {
this.ARCameraContext.takePhoto({
quality: 'high',
success: res => {
this.setData({
photoSrc: res.tempImagePath
});
},
fail: res => {
swan.showToast({
title: '请检查设备',
icon: 'none'
});
}
});
}
}
以上内容是否对您有帮助:
更多建议: