最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

vue?調(diào)用瀏覽器攝像頭實(shí)現(xiàn)及原理解析

 更新時(shí)間:2023年06月26日 08:57:19   作者:他的貓MM  
這篇文章主要為大家介紹了vue調(diào)用瀏覽器攝像頭實(shí)現(xiàn)及原理解析,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪

代碼示例

<template>
  <div class="camera_outer">
    <video
        id="videoCamera"
        :width="videoWidth"
        :height="videoHeight"
        autoplay
    ></video>
    <canvas
        style="display: none"
        id="canvasCamera"
        :width="videoWidth"
        :height="videoHeight"
    ></canvas>
    <div v-if="imgSrc" class="img_bg_camera">
      <img :src="imgSrc" alt="" class="tx_img"/>
    </div>
    <el-button @click="getCompetence">打開攝像頭</el-button>
    <el-button @click="stopNavigator">關(guān)閉攝像頭</el-button>
    <el-button @click="setImage">拍照</el-button>
  </div>
</template>
<script>
  export default {
    name: "CameraVideo",
    data() {
      return {
        videoWidth: 600,
        videoHeight: 600,
        imgSrc: "",
        thisCanvas: null,
        thisContext: null,
        thisVideo: null
      }
    },
    mounted() {
      this.getCompetence()
    },
    methods: {
      // 調(diào)用權(quán)限(打開攝像頭功能)
      getCompetence() {
        var _this = this;
        this.thisCanvas = document.getElementById("canvasCamera");
        this.thisContext = this.thisCanvas.getContext("2d");
        this.thisVideo = document.getElementById("videoCamera");
        // 舊版本瀏覽器可能根本不支持mediaDevices,我們首先設(shè)置一個(gè)空對(duì)象
        if (window.navigator.mediaDevices === undefined) {
          window.navigator.mediaDevices = {};
        }
        // 一些瀏覽器實(shí)現(xiàn)了部分mediaDevices,我們不能只分配一個(gè)對(duì)象
        // 使用getUserMedia,因?yàn)樗鼤?huì)覆蓋現(xiàn)有的屬性。
        // 這里,如果缺少getUserMedia屬性,就添加它。
        if (window.navigator.mediaDevices.getUserMedia === undefined) {
          window.navigator.mediaDevices.getUserMedia = (constraints) => {
            // 首先獲取現(xiàn)存的getUserMedia(如果存在)
            var getUserMedia =
                window.navigator.webkitGetUserMedia ||
                window.navigator.mozGetUserMedia ||
                window.navigator.getUserMedia;
            // 有些瀏覽器不支持,會(huì)返回錯(cuò)誤信息
            // 保持接口一致
            if (!getUserMedia) {
              return Promise.reject(
                  new Error("getUserMedia is not implemented in this browser")
              );
            }
            // 否則,使用Promise將調(diào)用包裝到舊的navigator.getUserMedia
            return new Promise(function (resolve, reject) {
              getUserMedia.call(window.navigator, constraints, resolve, reject);
            });
          };
        }
        var constraints = {
          audio: false,
          video: {
            width: this.videoWidth,
            height: this.videoHeight,
            transform: "scaleX(-1)",
          },
        };
        window.navigator.mediaDevices
            .getUserMedia(constraints)
            .then(function (stream) {
              // 舊的瀏覽器可能沒有srcObject
              if ("srcObject" in _this.thisVideo) {
                _this.thisVideo.srcObject = stream;
              } else {
                // 避免在新的瀏覽器中使用它,因?yàn)樗诒粭売谩?
                _this.thisVideo.src = window.URL.createObjectURL(stream);
              }
              _this.thisVideo.onloadedmetadata = function (e) {
                _this.thisVideo.play();
              };
            })
            .catch((err) => {
              console.log(err);
            });
      },
      //  繪制圖片(拍照功能)
      setImage() {
        var _this = this;
        // 點(diǎn)擊,canvas畫圖
        _this.thisContext.drawImage(
            _this.thisVideo,
            0,
            0,
            _this.videoWidth,
            _this.videoHeight
        );
        // 獲取圖片base64鏈接
        var image = this.thisCanvas.toDataURL("image/png");
        _this.imgSrc = image;
        this.$emit("refreshDataList", this.imgSrc);
      },
      // base64轉(zhuǎn)文件
      dataURLtoFile(dataurl, filename) {
        var arr = dataurl.split(",");
        var mime = arr[0].match(/:(.*?);/)[1];
        var bstr = atob(arr[1]);
        var n = bstr.length;
        var u8arr = new Uint8Array(n);
        while (n--) {
          u8arr[n] = bstr.charCodeAt(n);
        }
        return new File([u8arr], filename, {type: mime});
      },
      // 關(guān)閉攝像頭
      stopNavigator() {
        this.thisVideo.srcObject.getTracks()[0].stop();
      }
    }
  }
</script>
<style scoped lang="scss">
  .camera_outer {
    position: relative;
    overflow: hidden;
    background-size: 100%;
    video,
    canvas,
    .tx_img {
      -moz-transform: scaleX(-1);
      -webkit-transform: scaleX(-1);
      -o-transform: scaleX(-1);
      transform: scaleX(-1);
      border: 1px solid #ccc;
    }
    .btn_camera {
      position: absolute;
      bottom: 4px;
      left: 0;
      right: 0;
      height: 50px;
      background-color: rgba(0, 0, 0, 0.3);
      line-height: 50px;
      text-align: center;
      color: #ffffff;
    }
    .bg_r_img {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      top: 0;
    }
    .img_bg_camera {
      position: absolute;
      right: 0;
      top: 0;
      img {
        width: 300px;
        height: 300px;
      }
      .img_btn_camera {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 50px;
        line-height: 50px;
        text-align: center;
        background-color: rgba(0, 0, 0, 0.3);
        color: #ffffff;
        .loding_img {
          width: 50px;
          height: 50px;
        }
      }
    }
  }
</style>

報(bào)錯(cuò)處理

但是這里會(huì)出現(xiàn)一個(gè)報(bào)錯(cuò)信息: getUserMedia is not implemented in this browser這個(gè)錯(cuò)誤信息怎么處理呢, 有兩種方案一種是生產(chǎn)環(huán)境, 一種是開發(fā)環(huán)境:

  • 將http協(xié)議換成https協(xié)議訪問網(wǎng)站(生產(chǎn)環(huán)境)
  • 瀏覽器內(nèi)核指定白名單(開發(fā)環(huán)境):
//在谷歌瀏覽器內(nèi)輸入url
chrome://flags/#unsafely-treat-insecure-origin-as-secure

輸入完后照下圖輸入我們要設(shè)置的白名單域名選擇 Enabled 重啟瀏覽器就可以了

以上就是vue 調(diào)用瀏覽器攝像頭實(shí)現(xiàn)及原理解析的詳細(xì)內(nèi)容,更多關(guān)于vue 調(diào)用瀏覽器攝像頭的資料請(qǐng)關(guān)注腳本之家其它相關(guān)文章!

相關(guān)文章

  • vue3?實(shí)現(xiàn)右鍵菜單編輯復(fù)制粘貼功能

    vue3?實(shí)現(xiàn)右鍵菜單編輯復(fù)制粘貼功能

    在瀏覽器中,Vue3編輯器自帶默認(rèn)右鍵菜單,然而,在Electron桌面應(yīng)用中,這一功能需自行編寫代碼實(shí)現(xiàn),本文詳細(xì)介紹了如何在Vue3中手動(dòng)實(shí)現(xiàn)右鍵菜單的編輯、復(fù)制、粘貼功能,并提供了代碼示例,更多細(xì)節(jié)和相關(guān)教程可參考腳本之家的其他文章
    2024-10-10
  • Vue過濾器filters如何使用

    Vue過濾器filters如何使用

    Vue過濾器filters用于一些常見的文本格式化,通過過濾器可以進(jìn)行處理成自己想要展示出來的格式,由“管道”符號(hào)指示,本文給大家介紹Vue過濾器filters使用方式,感興趣的朋友一起看看吧
    2023-10-10
  • VUE前端實(shí)現(xiàn)token的無感刷新方式

    VUE前端實(shí)現(xiàn)token的無感刷新方式

    這篇文章主要介紹了VUE前端實(shí)現(xiàn)token的無感刷新方式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2023-11-11
  • Vue.js 踩坑記之雙向綁定

    Vue.js 踩坑記之雙向綁定

    這篇文章給大家?guī)砹薞ue.js 踩坑記之雙向綁定問題,非常不錯(cuò),具有參考借鑒價(jià)值,感興趣的朋友跟隨腳本之家小編一起學(xué)習(xí)吧
    2018-05-05
  • vue3在router中使用store報(bào)錯(cuò)的完美解決方案

    vue3在router中使用store報(bào)錯(cuò)的完美解決方案

    這篇文章主要介紹了vue3在router中使用store報(bào)錯(cuò)解決方案,就是需要在實(shí)例化一下,因?yàn)樵诰幾grouter的時(shí)候pinia還未被實(shí)例化,文中補(bǔ)充介紹了vue3中router和store詳細(xì)使用教程方法,感興趣的朋友一起看看吧
    2023-11-11
  • vue實(shí)現(xiàn)點(diǎn)擊按鈕input保持聚焦?fàn)顟B(tài)的示例代碼

    vue實(shí)現(xiàn)點(diǎn)擊按鈕input保持聚焦?fàn)顟B(tài)的示例代碼

    這篇文章主要介紹了vue實(shí)現(xiàn)點(diǎn)擊按鈕input保持聚焦?fàn)顟B(tài),本文通過實(shí)例代碼給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友參考下吧
    2025-06-06
  • Vue拖拽組件開發(fā)實(shí)例詳解

    Vue拖拽組件開發(fā)實(shí)例詳解

    本文重點(diǎn)給大家介紹Vue拖拽組件開發(fā)實(shí)例,拖拽的原理是手指在移動(dòng)的過程中,實(shí)時(shí)改變?cè)氐奈恢眉磘op和left值,使元素隨著手指的移動(dòng)而移動(dòng)。對(duì)實(shí)例代碼感興趣的朋友跟隨腳本之家小編一起學(xué)習(xí)吧
    2018-05-05
  • 詳解vue渲染從后臺(tái)獲取的json數(shù)據(jù)

    詳解vue渲染從后臺(tái)獲取的json數(shù)據(jù)

    這篇文章主要介紹了詳解vue渲染從后臺(tái)獲取的json數(shù)據(jù),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2017-07-07
  • 使用vite兼容低端瀏覽器配置

    使用vite兼容低端瀏覽器配置

    這篇文章主要介紹了使用vite兼容低端瀏覽器配置方式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2024-05-05
  • 詳解如何優(yōu)雅運(yùn)用Vue中的KeepAlive組件

    詳解如何優(yōu)雅運(yùn)用Vue中的KeepAlive組件

    在Vue中,KeepAlive組件是一種特殊的組件,用于緩存已經(jīng)渲染過的組件實(shí)例,本文主要為大家詳細(xì)介紹了KeepAlive組件的用法,需要的小伙伴可以參考下
    2023-09-09

最新評(píng)論

清涧县| 罗平县| 东城区| 顺义区| 峨眉山市| 伊川县| 沙田区| 肇源县| 中超| 明溪县| 改则县| 邳州市| 冀州市| 海安县| 临泉县| 汤原县| 贵州省| 天长市| 唐山市| 额尔古纳市| 兴国县| 兴文县| 宁化县| 南丹县| 荥阳市| 奉贤区| 棋牌| 贡山| 太仆寺旗| 富蕴县| 金溪县| 资兴市| 伊通| 大足县| 镇宁| 蒙阴县| 西宁市| 宁波市| 通化县| 筠连县| 聂拉木县|