91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

微信小程序怎么調用攝像頭實現拍照功能

發布時間:2022-07-19 09:25:06 來源:億速云 閱讀:3070 作者:iii 欄目:開發技術

這篇文章主要介紹“微信小程序怎么調用攝像頭實現拍照功能”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“微信小程序怎么調用攝像頭實現拍照功能”文章能幫助大家解決問題。

具體步驟:

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鏈接列表
        })
      }
    })
  }
})

關于“微信小程序怎么調用攝像頭實現拍照功能”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

永定县| 会昌县| 奉贤区| 梁山县| 余姚市| 定兴县| 古浪县| 灵宝市| 太仓市| 蒲江县| 磐石市| 黄平县| 沙河市| 岗巴县| 赞皇县| 阳朔县| 兴义市| 淳化县| 南投市| 清苑县| 蒙城县| 大余县| 古田县| 丰城市| 西乌珠穆沁旗| 靖边县| 当雄县| 棋牌| 泾源县| 德昌县| 綦江县| 扬中市| 宁武县| 彝良县| 金寨县| 左贡县| 福州市| 辰溪县| 清河县| 上杭县| 云阳县|