微信小程序调取相机实现拍照/录屏(带demo)

2024-03-23 09:20

本文主要是介绍微信小程序调取相机实现拍照/录屏(带demo),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

我已上传demo案例,有需要的童鞋自行下载,项目直接用微信开发者工具打开,主要修改成自己的appid;运行需要编译到pages/ar/scene-ar-germanBusiness1/index 页面后手机预览打开。可能刚打开是白屏,需要等一会,模型加载需要时间。
在这里插入图片描述

1.效果
在这里插入图片描述

2.创建子组件
在这里插入图片描述
index.wxml代码

<xr-scene id="xr-scenecameraglb" ar-system bind:ready="handleReady" bind:ar-ready="handleARReady" >
<!-- 初始化模型 --><xr-assets bind:loaded="handleAssetsLoaded"><!-- 最后一帧模型 --><xr-asset-load type="gltf" asset-id="gltf-table2" src="https://cyvideo.i-oranges.com/ar/ds2024/zd.glb" /></xr-assets><xr-env env-data="xr-frame-team-workspace-day"/><xr-node><xr-node node-id="camera-target" position="0 0 0"></xr-node><xr-node node-id="table-wrap" position="0 0 0"><!-- <xr-gltf  id="wxball-3"node-id="mesh-gltf-table" position="0 -4 -9"  scale="0.02 0.02 0.02" rotation="360 0 0"model="gltf-table2" animation="animation-key"anim-autoplay  /> --><!-- 挪位置 --><!-- <xr-gltf  id="wxball-3"node-id="mesh-gltf-table" position="-7 -8 -9"  scale="0.018 0.018 0.018" rotation="360 50 0"model="gltf-table2" animation="animation-key"anim-autoplay  /> --></xr-node><!-- 跟着挪位置 --><!-- <xr-cameraposition="1 1 1" target="gltf-table" clear-color="0.925 0.925 0.925 1"background="ar" far="2000"  target="camera-target" /> --><!-- 不跟着挪位置 --><!-- is-ar-camera --><xr-cameraposition="1 1 1" target="gltf-table2" clear-color="0.925 0.925 0.925 1"background="ar" far="2000"  is-ar-camera/></xr-node><xr-node node-id="lights">
<!-- 第一帧最后一秒模型 --><xr-light   type="ambient" color="1 1 1" intensity="1" /><xr-light   type="directional" rotation="40 170 0" color="1 1 1" intensity="12" /><xr-light   type="directional" rotation="0 60 0" color="1 1 1" intensity="12" /><xr-light   type="directional" rotation="180 180 180" color="1 1 1" intensity="12" /><xr-light   type="directional" rotation="360 360 360" color="1 1 1" intensity="12" /><xr-light   type="point" position="0 0 0" color="1 0 0" range="3" intensity="12" /></xr-node>
</xr-scene>

index.js代码

const STATE = {NONE: -1,MOVE: 0,ZOOM_OR_PAN: 1
}Component({behaviors: [require('../../common/share-behavior').default],properties: {isTouchstart: {type: Boolean // 判断是否需要关闭子组件的触碰事件},a: {type: Number}},markerGlb: {type: String},position: {type: Object},rotation: {type: Object},scale: {type: Object},data: {grandeShow: true, //默认引导图标显示loaded: false,arReady: false,placedFlag: true, //是否允许模型再次移动识别展示在地平线},lifetimes: {async attached() {console.log('data', this.data)}},methods: {handleReady({detail}) {const xrScene = this.scene = detail.value;// 显示加载中提示wx.showLoading({title: '加载中',mask: true // 是否显示透明蒙层,防止用户点击其他区域})console.log('xr-scene', xrScene);},handleAssetsProgress: function ({detail}) {console.log('assets progress', detail.value);},handleAssetsLoaded: function ({detail}) {console.log('assets loaded', detail.value);// 隐藏加载中提示wx.hideLoading()this.setData({loaded: true});},handleARReady: function ({detail}) {console.log('ar-ready', this.scene.ar.arModes, this.scene.ar.arVersion);},handleARError: function ({detail}) {console.log('ar-error', detail);},handleLog: function ({detail}) {const {el,value} = detail;console.log('log', detail.value);},}
})```
index.json代码```html
{"component": true,"usingComponents": {},"renderer": "xr-frame"
}

3.创建页面
在这里插入图片描述
在这里插入图片描述
index.wxml代码

<view><!-- 微信小程序调取相机实现拍照/录屏 --><view  style="color: white;"><pure-camera id="pure-camera" width="100vw" height="100vh" style="width:100vw;height:100vh;top:{{top}}px;left:{{left}}px;display:block;"></pure-camera><view style="position:fixed;left: 0;z-index: 99999;bottom: 5vw;width: 100vw;height: 100px;display: flex;justify-content: space-evenly;align-items: center;"><button bind:tap="captureScreen" style="width: 250rpx;height: 91rpx;">拍照</button><button bind:tap="screen" style="width: 250rpx;height: 91rpx;">录屏</button></view>
</view>
</view>

index.js代码

var sceneReadyBehavior = require('../../behavior-scene/scene-ready');//微信官方文档demo里有
var handleDecodedXML = require('../../behavior-scene/util').handleDecodedXML;//微信官方文档demo里有
Page({data: {flag: false, //录屏默认关闭},onUnload() {this.musicbg.stop();// 清除video定时器// clearTimeout(this.data.time3);},onShow() {/** 设置页面常亮*/wx.setKeepScreenOn({keepScreenOn: true,fail() {//如果失败 再进行调用wx.setKeepScreenOn({keepScreenOn: true});}});},onHide() {this.musicbg.stop();this.setData({video2: false})},onLoad(options) {wx.setNavigationBarTitle({title: "标题"})// 背景音乐this.musicbg = wx.createInnerAudioContext()this.musicbg.src = "音乐线上地址";this.musicbg.volume = 0.6;this.musicbg.loop = true;//初始化如果是视频则显示背景音乐;模型则注释该代码// this.musicbg.play();// 关闭主页按钮wx.hideHomeButton();},//拍照captureScreen: function () {// this.openMusic.play();let that = this;//获取手势识别场景let xrScene = this.selectComponent('#pure-camera').scene;this.setData({isTouchstart: true})//分享好友、保存本地图片xrScene.scene.share.captureToFriends({fileType: "jpg",quality: 0.8}).then(res => { });},//录屏screen: function () {this.setData({flag: !this.data.flag})//获取手势识别场景let xrScene = this.selectComponent('#pure-camera').scene;if (!this.data.flag) { //关闭录屏xrScene.scene.share.recordFinishToAlbum();} else { //开启录屏xrScene.scene.share.recordStart();}},
})

index.json文件代码

{"usingComponents": {"xr-demo-viewer": "../../../components/xr-demo-viewer/index","pure-camera":"../../../components/template/pure-camera/index"},"disableScroll": true
}

这篇关于微信小程序调取相机实现拍照/录屏(带demo)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/837856

相关文章

W外链微信推广短连接怎么做?

制作微信推广链接的难点分析 一、内容创作难度 制作微信推广链接时,首先需要创作有吸引力的内容。这不仅要求内容本身有趣、有价值,还要能够激起人们的分享欲望。对于许多企业和个人来说,尤其是那些缺乏创意和写作能力的人来说,这是制作微信推广链接的一大难点。 二、精准定位难度 微信用户群体庞大,不同用户的需求和兴趣各异。因此,制作推广链接时需要精准定位目标受众,以便更有效地吸引他们点击并分享链接

hdu1043(八数码问题,广搜 + hash(实现状态压缩) )

利用康拓展开将一个排列映射成一个自然数,然后就变成了普通的广搜题。 #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#include<stdlib.h>#include<ctype.h>#inclu

JAVA智听未来一站式有声阅读平台听书系统小程序源码

智听未来,一站式有声阅读平台听书系统 🌟&nbsp;开篇:遇见未来,从“智听”开始 在这个快节奏的时代,你是否渴望在忙碌的间隙,找到一片属于自己的宁静角落?是否梦想着能随时随地,沉浸在知识的海洋,或是故事的奇幻世界里?今天,就让我带你一起探索“智听未来”——这一站式有声阅读平台听书系统,它正悄悄改变着我们的阅读方式,让未来触手可及! 📚&nbsp;第一站:海量资源,应有尽有 走进“智听

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

【Prometheus】PromQL向量匹配实现不同标签的向量数据进行运算

✨✨ 欢迎大家来到景天科技苑✨✨ 🎈🎈 养成好习惯,先赞后看哦~🎈🎈 🏆 作者简介:景天科技苑 🏆《头衔》:大厂架构师,华为云开发者社区专家博主,阿里云开发者社区专家博主,CSDN全栈领域优质创作者,掘金优秀博主,51CTO博客专家等。 🏆《博客》:Python全栈,前后端开发,小程序开发,人工智能,js逆向,App逆向,网络系统安全,数据分析,Django,fastapi

让树莓派智能语音助手实现定时提醒功能

最初的时候是想直接在rasa 的chatbot上实现,因为rasa本身是带有remindschedule模块的。不过经过一番折腾后,忽然发现,chatbot上实现的定时,语音助手不一定会有响应。因为,我目前语音助手的代码设置了长时间无应答会结束对话,这样一来,chatbot定时提醒的触发就不会被语音助手获悉。那怎么让语音助手也具有定时提醒功能呢? 我最后选择的方法是用threading.Time

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo

C#实战|大乐透选号器[6]:实现实时显示已选择的红蓝球数量

哈喽,你好啊,我是雷工。 关于大乐透选号器在前面已经记录了5篇笔记,这是第6篇; 接下来实现实时显示当前选中红球数量,蓝球数量; 以下为练习笔记。 01 效果演示 当选择和取消选择红球或蓝球时,在对应的位置显示实时已选择的红球、蓝球的数量; 02 标签名称 分别设置Label标签名称为:lblRedCount、lblBlueCount

Kubernetes PodSecurityPolicy:PSP能实现的5种主要安全策略

Kubernetes PodSecurityPolicy:PSP能实现的5种主要安全策略 1. 特权模式限制2. 宿主机资源隔离3. 用户和组管理4. 权限提升控制5. SELinux配置 💖The Begin💖点点关注,收藏不迷路💖 Kubernetes的PodSecurityPolicy(PSP)是一个关键的安全特性,它在Pod创建之前实施安全策略,确保P

工厂ERP管理系统实现源码(JAVA)

工厂进销存管理系统是一个集采购管理、仓库管理、生产管理和销售管理于一体的综合解决方案。该系统旨在帮助企业优化流程、提高效率、降低成本,并实时掌握各环节的运营状况。 在采购管理方面,系统能够处理采购订单、供应商管理和采购入库等流程,确保采购过程的透明和高效。仓库管理方面,实现库存的精准管理,包括入库、出库、盘点等操作,确保库存数据的准确性和实时性。 生产管理模块则涵盖了生产计划制定、物料需求计划、