首頁 > 軟體

微信小程式呼叫攝像頭實現拍照功能

2022-07-18 22:05:05

本文範例為大家分享了微信小程式呼叫攝像頭實現拍照的具體程式碼,供大家參考,具體內容如下

微信小程式開發檔案

首先,需要使用者授權攝像頭許可權,這一步是必須的

具體步驟:

1、獲取使用者當前授權狀態,看是否已經授權,如果已經授權直接顯示攝像頭
2、如果使用者還沒有授權,則調起授權彈框,使用者允許授權則顯示攝像頭
3、如果使用者不允許,則提示使用者去設定頁面開啟攝像頭許可權

使用者授權之後,就可以進行拍攝了,微信的camera元件無法顯示為圓形,我這裡是用一張圖片遮蓋了

上程式碼:

wxml:

<view class='camera'>
  <image src="/images/border.png" mode="widthFix"></image>
  <camera wx:if="{{isAuth}}" device-position="back" flash="off" binderror="error"></camera>
</view>
<button class="takePhoto" type="primary" bindtap="takePhoto">拍照</button>

wxss:

.camera {
  width: 430rpx;
  height: 430rpx;
  border-radius: 50%;
  margin: 20px auto 0;
  position: relative;
}

.camera image {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.camera camera {
  width: 428rpx;
  height: 428rpx;
}

button.takePhoto:not([size='mini']) {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 90rpx;
  border-radius: 0;
}

js:

Page({
  data: {
    isAuth: false,
    src: ''
  },
  onLoad() {
    const _this = this
    wx.getSetting({
      success: res => {
        if (res.authSetting['scope.camera']) {
          // 使用者已經授權
          _this.setData({
            isAuth: true
          })
        } else {
          // 使用者還沒有授權,向用戶發起授權請求
          wx.authorize({
            scope: 'scope.camera',
            success() { // 使用者同意授權
              _this.setData({
                isAuth: true
              })
            },
            fail() { // 使用者不同意授權
              _this.openSetting().then(res => {
                _this.setData({
                  isAuth: true
                })
              })
            }
          })
        }
      },
      fail: res => {
        console.log('獲取使用者授權資訊失敗')
      }
    })
  },

  // 開啟授權設定介面
  openSetting() {
    const _this = this
    let promise = new Promise((resolve, reject) => {
      wx.showModal({
        title: '授權',
        content: '請先授權獲取攝像頭許可權',
        success(res) {
          if (res.confirm) {
            wx.openSetting({
              success(res) {
                if (res.authSetting['scope.camera']) { // 使用者開啟了授權開關
                  resolve(true)
                } else { // 使用者沒有開啟授權開關, 繼續開啟設定頁面
                  _this.openSetting().then(res => {
                    resolve(true)
                  })
                }
              },
              fail(res) {
                console.log(res)
              }
            })
          } else if (res.cancel) {
            _this.openSetting().then(res => {
              resolve(true)
            })
          }
        }
      })
    })
    return promise;
  },

  takePhoto() {
    const ctx = wx.createCameraContext()
    ctx.takePhoto({
      quality: 'high',
      success: (res) => {
        this.setData({
          src: res.tempImagePath
        })
        wx.previewImage({
          current: res.tempImagePath, // 當前顯示圖片的http連結
          urls: [res.tempImagePath] // 需要預覽的圖片http連結列表
        })
      }
    })
  }
})

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com