33333使用uniapp的原生插件camera
1、在uniapp中创建一个页面
2、在该页面或组件的<template>
部分,添加一个camera
标签,并设置相应的属性,如position
属性为"front"表示使用前置摄像头、"back"表示使用后置摄像头
<template>
<view>
<camera device-position="back" flash="off" @error="error" style="width: 100%; height: 300px;"></camera>
<button type="primary" @click="takePhoto">拍照</button>
<view>预览</view>
<image mode="widthFix" :src="src"></image>
</view>
</template>
3、在该页面或组件的<script> 部分,添加相应的逻辑代码来处理摄像头功能
export default {
data() {
return {
src:""
}
},
methods: {
takePhoto() {
const ctx = uni.createCameraContext();
ctx.takePhoto({
quality: 'high',
success: (res) => {
this.src = res.tempImagePath
}
});
},
error(e) {
console.log(e.detail);
}
}
}
运行uni-app项目,并打开该页面或组件,点击"拍照"按钮即可使用前置摄像头进行拍照。拍照后,照片将显示在页面上?