微信小程序实现自定义拍摄组件

微信小程序实现自定义摄像头(在摄像头内添加提示信息),供大家参考,具体内容如下

摄像头组件(wxml)

<!-- 拍照功能 自定义摄像头
          bindtap:takePhotoDepot----从图库获取
          bindtap:takePhoto----拍照
          bindtap:takeFrontBack---转换摄像头
 -->

<view wx:if="{{useCameraTakePhoto}}" class="scan_view">
    <!-- 摄像头组件 -->
    <camera device-position="back" mode="normal" flash="off" binderror="error" device-position="{{phopo_camera?'front':'back'}}" style="width: 100%; height: 100vh;">
      <!-- 摄像头返回按钮 -->
       <cover-view class="camera_view">
         <cover-view class="back" bindtap="closeCamera">
           返回
         </cover-view>
         <cover-view style="overflow: hidden;margin-top: 80vh;">
           <cover-image bindtap="takePhotoDepot" class="take_photo_depot"src="../../images/phopo.png"></cover-image>
            <cover-image bindtap="takePhoto" class="take_photo" src="../../images/starCamera.png"></cover-image>
            <cover-image bindtap="takeFrontBack" class="take_photo_frontBack" src="../../images/transition.png"></cover-image>
          </cover-view>
        </cover-view>
      </camera>
    </view>

唤醒摄像头组件(wxml)

<view class="conPhopo_camera" bindtap="changePhoto">
        <text>拍摄照片</text>
</view>

自定义展示拍照后的图片(wxml)

<view style="width:100%; overflow: hidden;" wx:if="{{tempFileList.length>0}}">
<!-- 图片缩小状态  -->
        <view style="position: relative;width: 80rpx;height: 120rpx;float: left;margin-right: 10rpx; margin-top: 10rpx;" wx:for="{{tempFileList}}" wx:key="index">
          <view class="fileShow" wx:if="{{item.type ==='image' && item.thumb}}">  
            <image style="display: inline-block;width: 80rpx;height: 120rpx; " src="data:image/png;base64,{{item.thumb}}" alt="" bindtap="changeMinImage" data-item="{{item}}" data-index="{{index}}" data-src='{{item.thumb}}' data-thumb='true' />
          </view>
          <view class="fileShow" wx:elif="{{item.type ==='image' &&item.path}}">
            <image style="display: inline-block;width: 80rpx;height: 120rpx; margin-top: 10rpx;" src="{{item.path}}" alt="" bindtap="changeMinImage" data-item="{{item}}" data-index="{{index}}" data-src='{{item.path}}' />
          </view>
        </view> 
<!-- 点击缩小图片放大展示-->
      <view wx:if="{{isSrc}}" style="position: absolute;left:0;top: 0; width: 100vw;height: 100vh;background-color: rgba(0, 0, 0, 0.8);padding-top: 20%;">
          <view wx:if="{{thumb=='true'}}">
            <image style="display: block; width: 80%;height: 80%;margin: 0 auto;opacity: 1; background-color: #09ce9a;" src="data:image/png;base64,{{src.src}}" alt="" />
          </view>
          <view wx:elif="{{thumb!='true'}}">
            <image style="display: block; width: 80%;height: 80%;margin: 0 auto;opacity: 1; background-color: aqua;" src="{{src.src}}" />
          </view>
          <i class="iconfont .icon-quxiao" bindtap="changeMaxImage" style="position: absolute;left: 20rpx;top: 20rpx;color: #fff;font-size: 44rpx;"></i>
        </view> 
</view>

接下来就是关键了,主要还得看js怎么实现

实现的方法

打开摄像头并且拍照

// 控制摄像头是否显示
  changePhoto(e) {
    const {
      currentTab,
      isVideoModel,
    } = this.data;
     let casePhotoList = this.data.casePhotoList; 
     let facePhotoList = this.data.facePhotoList;
     let abnormalPhotoList = this.data.abnormalPhotoList; 
     let accessoryPhotoList = this.data.accessoryPhotoList; 
    const that = this;
    if (currentTab == 2) {
        // 摄像开始
      wx.chooseVideo({
        count: 1,
        mediaType: ['video'],
        sourceType: ['camera'],
        success: (res) => {
          // 添加formData
          let formData = new FormData();
          formData.append('type', currentTab);
          let src = {
            tempVideoPath: res.tempFilePath,
            size: res.size
          };
          abnormalPhotoList.push(src);
          that.setData({
            abnormalPhotoList: abnormalPhotoList,
            useCameraTakePhoto: false,
            isVideoModel: !isVideoModel,
          });
          for (const iterator of abnormalPhotoList) {
            formData.appendFile('files[]', iterator.tempVideoPath);
          }
          let tempFilesPath = abnormalPhotoList.map(item => ({
            type: item.type ? item.type : 'video', // 文件类型
            path: item.tempVideoPath, // 文件本地路径
            size: item.size ? item.size : '', // 文件大小
          }))
          let {
            videoTempFileList
          } = that.data;
          that.setData({
            videoTempFileList: videoTempFileList.concat(tempFilesPath)
          })
          let data = formData.getData();
            // 2.2.异步上传,发送请求 这里就不写了
          ...
        }
      })
    } else {
       this.setData({
         useCameraTakePhoto: true,
         isjustSrc: e.currentTarget.dataset.isphoto
       })
      // 拍照开始
         wx.chooseMedia({
           success: res => {
             let newTempFiles = {
               tempImagePath:res.tempFiles[0].tempFilePath,
               type:res.tempFiles[0].fileType,
               size:res.tempFiles[0].size
             }
             let formData = new FormData();
             formData.append('type', currentTab);
             if (currentTab == 0) {
                casePhotoList.push(res.tempFiles[0])
                that.setData({
                  casePhotoList: casePhotoList,
                  useCameraTakePhoto: false
                })
                for (const iterator of newTempFiles) {
                 console.log(newTempFiles,244);
                 formData.appendFile('files[]', newTempFiles.tempImagePath);
                 }
               // 2.选择文件后,页面显示选择的文件的本地临时文件,且进行异步上传
               // 2.1.返回选定文件的本地文件路径列表,可以作为img标签的src属性显示图片
                let tempFilesPath = casePhotoList.map(item => ({
                  type: newTempFiles.fileType ? newTempFiles.fileType : 'image', // 文件类型
                  path: newTempFiles.tempImagePath, // 文件本地路径
                  size: newTempFiles.size ? newTempFiles.size : '', // 文件大小
                }))
               let {
                 tempFileList
               } = that.data;
               console.log(tempFileList,257);
               that.setData({
                 tempFileList: tempFileList.concat(newTempFiles)
               },()=>{console.log(that.data);})
             } else if (currentTab == 1) {
               facePhotoList.push(...newTempFiles)
               that.setData({
                 facePhotoList: facePhotoList,
                 useCameraTakePhoto: false
               })
               for (const iterator of [...newTempFiles]) {
                 formData.appendFile('files[]', iterator.tempImagePath);
               }
               let tempFilesPath = facePhotoList.map(item => ({
                 type: item.type ? item.type : 'image', // 文件类型
                 path: item.tempImagePath, // 文件本地路径
                 size: item.size ? item.size : '', // 文件大小
               }))
               let {
                 facetTempFileList
               } = that.data;
               that.setData({
                 facetTempFileList: facetTempFileList.concat(tempFilesPath)
               })
             } else if (currentTab == 3) {
               accessoryPhotoList.push(...newTempFiles)
               that.setData({
                 accessoryPhotoList: accessoryPhotoList,
                 useCameraTakePhoto: false
               })
               for (const iterator of accessoryPhotoList) {
                 formData.appendFile('files[]', iterator.tempImagePath);
               }
             }
             let data = formData.getData();
             // 2.2.异步上传,发送请求 上传照片
           }
         })
    }
  },

转换摄像头

// 转换摄像头
  takeFrontBack() {
    const {
      phopo_camera
    } = this.data
    this.setData({
      phopo_camera: !phopo_camera
    })
  },

打开手机相册

// 打开手机相册
takePhotoDepot() {
    const that = this;
    const {
      currentTab,
    } = this.data;
    let casePhotoList = this.data.casePhotoList; 
    let facePhotoList = this.data.facePhotoList; 
    let abnormalPhotoList = this.data.abnormalPhotoList; 
    let accessoryPhotoList = this.data.accessoryPhotoList; 
    if (currentTab == 2) {
      wx.chooseVideo({
        count: 1,
        mediaType: ['video'],
        sourceType: ['album'],
        success: (res) => {
          let src = {
            tempVideoPath: res.tempFilePath,
            size: res.size
          };
          abnormalPhotoList.push(src);
          this.setData({
            abnormalPhotoList: abnormalPhotoList,
            useCameraTakePhoto: false,
            isVideoModel: false,
          });
        }
      })
    } else {
      wx.chooseMedia({
        count: 1, // 选择数量
        mediaType: ['image'], // 文件类型 图片
        sourceType: ['album'], // 图片来源  album:从相册选
        success: res => {
          let formData = new FormData();
          formData.append('type', currentTab);
          let src = {
            tempImagePath: res.tempFiles[0].tempFilePath,
            size: res.tempFiles[0].size,
            fileType: res.tempFiles[0].fileType,
          }
          if (currentTab == 0) {
            casePhotoList.push(src)
            that.setData({
              casePhotoList: casePhotoList,
              useCameraTakePhoto: false
            })
            for (const iterator of casePhotoList) {
              formData.appendFile('files[]', iterator.tempImagePath);
            }
            // 2.选择文件后,页面显示选择的文件的本地临时文件,且进行异步上传
            // 2.1.返回选定文件的本地文件路径列表,可以作为img标签的src属性显示图片
            let tempFilesPath = casePhotoList.map(item => ({
              type: item.type ? item.type : 'image', // 文件类型
              path: item.tempImagePath, // 文件本地路径
              size: item.size ? item.size : '', // 文件大小
            }))
            let {
              tempFileList
            } = that.data;
            that.setData({
              tempFileList: tempFileList.concat(tempFilesPath)
            })
          } else if (currentTab == 1) {
            facePhotoList.push(src)
            that.setData({
              facePhotoList: facePhotoList,
              useCameraTakePhoto: false
            })
            for (const iterator of [facePhotoList]) {
              formData.appendFile('files[]', iterator.tempImagePath);
            }
            let tempFilesPath = facePhotoList.map(item => ({
              type: item.type ? item.type : 'image', // 文件类型
              path: item.tempImagePath, // 文件本地路径
              size: item.size ? item.size : '', // 文件大小
            }))
            let {
              facetTempFileList
            } = that.data;
            that.setData({
              facetTempFileList: facetTempFileList.concat(tempFilesPath)
            })
          } else if (currentTab == 3) {
            accessoryPhotoList.push(src)
            that.setData({
              accessoryPhotoList: accessoryPhotoList,
              useCameraTakePhoto: false
            })
            for (const iterator of accessoryPhotoList) {
              formData.appendFile('files[]', iterator.tempImagePath);
            }
          }
          let data = formData.getData();
          // 2.2.异步上传,发送请求 上传图片
          ...
            
        },
      })
    }
  },

关闭相机

//关闭系统相机页面
  closeCamera: function () {
    this.setData({
      useCamera: false,
      useCameraTakePhoto: false,
    })
  },

点击小图片放大功能

// 点击拍照后的图片
  changeMinImage(e) {
    wx.showLoading({
      title: '加载中',
      icon: 'loading'
    })
    let item = e.target.dataset.item;
    const that = this;
    // 1. 预览分为本地预览和下载预览, 进行判断
    if (item.type === 'image' && item.path) {
      // 1.1.本地预览,在新页面中全屏预览图片
      wx.previewImage({
        urls: [item.path], // 需要预览的图片http链接列表 Array.<string>
        success() {
          wx.hideLoading()
        },
        fail() {
          wx.showToast({
            title: '预览失败',
            icon: 'none',
            duration: 2000
          })
        }
      })
    } else {
      // 1.2.下载预览,下载文件资源到本地,单次下载允许的最大文件为200MB
      wx.downloadFile({
        url: `${app.host}order/attachments/${item.store_name}/download`,
        header: {
          'Content-Type': 'application/json',
          'token': '自己的Token'
        },
        success(res) {
          wx.hideLoading()
          if (item.type == "video") {
            that.setData({
              isSrc: true,
              src: res.tempFilePath,
            })
            wx.openVideoEditor({
              filePath: res.tempFilePath,
              success(res) {}
            })
          } else {
            wx.previewImage({ // 在新页面中全屏预览图片
              urls: [res.tempFilePath], // 需要预览的图片http链接列表 Array.<string>
            })
          }

        },
        fail() {
          wx.showToast({
            title: '预览失败',
            icon: 'none',
            duration: 2000
          })
        }
      })
    }
  },

放大后的图片关闭

// 点击放大后的图片进行关闭
  changeMaxImage() {
    this.setData({
      isSrc: false,
      src: {}
    })
  },

到这里就写完了,样式就不多写了,主要的是js实现

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • 微信小程序实现身份证取景框拍摄

    本文实例为大家分享了微信小程序实现身份证取景框拍摄的具体代码,供大家参考,具体内容如下 wxml <view class="camera_box"> <camera class="camera" wx:if="{{!show}}" device-position="back" flash="off" binderror="error"> <cover-vie

  • 微信小程序实现自定义拍摄组件

    微信小程序实现自定义摄像头(在摄像头内添加提示信息),供大家参考,具体内容如下 摄像头组件(wxml) <!-- 拍照功能 自定义摄像头           bindtap:takePhotoDepot----从图库获取           bindtap:takePhoto----拍照           bindtap:takeFrontBack---转换摄像头  --> <view wx:if="{{useCameraTakePhoto}}" class=&qu

  • 微信小程序实现自定义弹窗组件的示例代码

    目录 编写组件代码 Dialog.wxml Dialog.js Dialog.wxss 调用自定义组件 上一篇中说的是小程序自带的弹窗组件,今天,我们来试试小程序的自定义组件,我们自定义一个带确定取消的弹窗组件. 首先,放一下,最终的效果图: 这是我们最后要实现的效果 那么,首先,我们创建一个组件 新建component文件夹存放我们的组件,里边存放的就是我们所用的组件,我们今天要做的事弹出框,新建文件夹popup存放我们的组件模板,点击右键选择新建component,就会自动生成组件的模板wx

  • 微信小程序如何自定义table组件

    背景 最近想要捣鼓一个自己的小程序,其中数据展示部分比较多,想用table来做展示,但是微信小程序并没有table组件,于是就自己动手捣鼓了一个,勉强能用. 可以看看效果: etable使用介绍 etable的使用很简单,分为 引入.使用.配置等3个阶段 1.引入 首先在要使用的页面中的json文件中配置如下: { "usingComponents": { "etable" : "/compenents/etable/etable" } } 2.

  • 微信小程序之自定义组件的实现代码(附源码)

    最近在项目开发中,遇到好多雷同的页面样式,就想着可以将常用的功能模块封装成组件,方便在项目中使用和修改,下面就参照微信小程序的文档分步骤写一个微信小程序的组件. 附上效果图: step1:创建文件并申明 与创建微信小程序的页面一样,一个自定义组件也需要json,wxml,wxss,js四个文件. 在项目根目录中创建文件夹,取名为:component,在该目录下继续创建文件夹successModal. 可以在开发工具中右键创建,选择component,默认自动会创建四个文件.如图: 在succes

  • 微信小程序封装自定义弹窗的实现代码

    最近在做小程序的登录,需要同时获取用户手机号和头像昵称等信息,但是小程序又不支持单个接口同时获取两种数据,因此想到自定义一个弹窗,通过弹窗按钮触发获取手机号事件.记录一下. 具体代码如下: 业务代码中: 在业务代码中引入dialog组件即可 <dialog visible="{{dialogVisible}}" showFooter="{{footerVisible}}" title="测试一下"> <view class='d

  • 微信小程序实现自定义modal弹窗封装的方法

    前言 小程序官方提供了 wx.showModal 方法,但样式比较固定,不能满足多元化需求,自定义势在必行~ 老规矩先上图 点击某个按钮,弹出 modal框,里面的内容可以自定义,可以是简单的文字提示,也可以输入框等复杂布局.操作完点击取消或确定关闭 modal. 如何使用 将下面的 modal.wxml .modal.wxss .modal.js .modal.json 四个文件复制到对应位置即可. 封装完之后调用起来也很简单,看看调用的代码吧 <modal show="{{showMo

  • 微信小程序实现自定义动画弹框/提示框的方法实例

    目录 前言 css3 实现动画 小程序动画 API-实现动画 结语 相关文档 前言 在小程序中,用户与界面进行交互时,有一些用户反馈提示,例如:触发某个按钮,从底部弹出框,从顶部弹出等 如今,有一些现成的 UI 库,虽然已经实现了的,但若只是为了实现一个底部弹出框或者自定义提示框,不引用第三方 UI 库 怎么手动原生方式去实现呢,最主要的是怎么去实现动画 css3 实现动画 如下是wxml代码 <view> <view class="click-btn" catcht

  • 微信小程序tabBar自定义弹窗遮挡不住解决技巧

    目录 背景 方法一:自定义tabbar 方法二:套用原生提供的tabbar自定义功能,嵌套自己的tabbar组件 总结 成果 背景 最近开发微信小程序发现一个问题,就是微信小程序官方自带的tabbar层级很高,自定义modal盖不住tabbar的问题:翻阅官方的社区,很多同学说 设置z-index:99999:可以解决这个问题,我实践下来是有问题的:ios是解决不了问题:经过反复实践有两种方法可以解决问题: 方法一:自定义tabbar 这个方法就是完全放弃微信官方的tabbar:自己用SPA的方

  • 微信小程序开发自定义tabBar实战案例(定制消息99+小红心)

    目录 一.前提概要 二. 动态显示info消息 三. 页面切换效果 四. 配置总结 一.前提概要 效果:实现一个自定义tabBar,使消息tabBar能够显示消息数量,并通过全局共享的方式,控制消息数量 需要的知识点如下: mobx辅助库(全局共享,见文章) vant组件库(见文章) 组件的behavior (见文章) 自定义组件 样式隔离 组件数据监听器 自定义组件主要分为三个步骤(许多实例实现步骤差不多流程) 配置信息 (几乎每个要实现的都需要这一步) 创建自定义组件代码文件 编写代码 详细

  • 微信小程序中的swiper组件详解

    微信小程序中的swiper组件 微信小程序中的swiper组件真的是简单方便 提供了页面中图片文字等滑动的效果 <swiper> <swiper-item></swiper-item> <swiper-item></swiper-item> <swiper-item></swiper-item> </swiper> 这里的就是一个滑块视图容器:而就是你希望滑动的东西,可以是文字也可以是image 其中swipe

随机推荐