swan.createCameraContext
解释:创建并返回 camera 上下文 cameraContext
对象,cameraContext 与页面的 camera 组件绑定,一个页面只能有一个 camera,通过它可以操作对应的组件。使用该 API 需通过获取用户权限设置申请授权后方可对用户发起授权申请,可在需授权接口列表中查看相关错误码信息。
方法参数
无
返回值
CameraContext
示例
扫码体验
请使用百度APP扫码
图片示例
代码示例
- 在 swan 文件中
<div class="camera">
<camera device-position="{{device}}" flash="off" binderror="error" style="width: 100%; height: 500rpx;"></camera>
<button type="primary" bind:tap="switchCamera">切换摄像头</button>
<button type="primary" bind:tap="takePhoto">拍照</button>
<button type="primary" bind:tap="startRecord">开始录像</button>
<button type="primary" bind:tap="stopRecord">结束录像</button>
<view class="preview">预览</view>
<image s-if="src" class="img" mode="widthFix" src="{{src}}"></image>
<video s-if="videoSrc" class="video" src="{{videoSrc}}"></video>
</div>
- 在 js 文件中
Page({
data: { },
onLoad() {
swan.createCameraContext();
}
});