美文网首页亮宝前端学习室
vue jsQR 二维码扫描

vue jsQR 二维码扫描

作者: 吴占超 | 来源:发表于2019-06-06 17:09 被阅读0次

感谢 jsQR
https://github.com/cozmo/jsQR

进行二维码扫描,使用convas 进行边框标注。如果只是用二维码不想用zxing,可以考虑 jsQR。
重点:
【开启https】

代码如下:

<template>
  <div class="v-body">
    <p>Pure JavaScript QR code decoding library.</p>
    <div id="loadingMessage" v-if="!showCanvas">{{loadingMessage}}</div>
    <canvas
      :width="canvasWidth"
      :height="canvasHeight"
      id="canvas"
      v-show="showCanvas"
      ref="canvasElement"
    ></canvas>
    <div id="output" v-if="showCanvas">
      <div v-if="!outputData">No QR code detected.</div>
      <div v-else>
        <b>Data:</b>
        <span id="outputData">{{outputData}}</span>
      </div>
    </div>
    <button @click="openScan">开启扫描</button>
  </div>
</template>

<script>
// eslint-disable-next-line no-unused-vars
import adapter from 'webrtc-adapter';
// WebRTC适配器 只需要引入就ok
import jsQR from 'jsqr';
/**
 * jsqr demo
 */
export default {
  data: () => ({
    video: document.createElement('video'),
    loadingMessage: '🎥 Unable to access video stream (please make sure you have a webcam enabled)',
    // 是否显示摄像头
    showCanvas: false,
    canvas2d: undefined,
    outputData: undefined,
    canvasWidth: 320,
    canvasHeight: 480
  }),
  methods: {
    openScan () {
      const videoParam = this.$vuetify.breakpoint.xsOnly ? { video: { facingMode: { exact: 'environment' } } } : { video: true };
      console.log(this.video);
      navigator.mediaDevices.getUserMedia(videoParam).then((stream) => {
        this.video.srcObject = stream;
        this.video.setAttribute('playsinline', true); // required to tell iOS safari we don't want fullscreen
        this.video.play();
        requestAnimationFrame(this.tick);
      });
    },
    tick () {
      this.loadingMessage = '⌛ Loading video...';
      if (this.video.readyState === this.video.HAVE_ENOUGH_DATA) {
        this.showCanvas = true;
        this.canvasHeight = this.video.videoHeight;
        this.canvasWidth = this.video.videoWidth;
        !this.canvas2d && (this.canvas2d = this.$refs.canvasElement.getContext('2d'));
        this.canvas2d.drawImage(this.video, 0, 0, this.canvasWidth, this.canvasHeight);
        var imageData = this.canvas2d.getImageData(0, 0, this.canvasWidth, this.canvasHeight);
        var code = jsQR(imageData.data, imageData.width, imageData.height, {
          inversionAttempts: 'dontInvert'
        });
        if (code) {
          this.drawLine(code.location.topLeftCorner, code.location.topRightCorner, '#FF3B58');
          this.drawLine(code.location.topRightCorner, code.location.bottomRightCorner, '#FF3B58');
          this.drawLine(code.location.bottomRightCorner, code.location.bottomLeftCorner, '#FF3B58');
          this.drawLine(code.location.bottomLeftCorner, code.location.topLeftCorner, '#FF3B58');
          this.outputData = code.data;
        } else {
          this.outputData = undefined;
        }
      }
      requestAnimationFrame(this.tick);
    },
    drawLine (begin, end, color) {
      this.canvas2d.beginPath();
      this.canvas2d.moveTo(begin.x, begin.y);
      this.canvas2d.lineTo(end.x, end.y);
      this.canvas2d.lineWidth = 4;
      this.canvas2d.strokeStyle = color;
      this.canvas2d.stroke();
    }
  }
};
</script>

<style lang="scss" scoped>
.v-body {
  font-family: "Ropa Sans", sans-serif;
  color: #333;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}
#githubLink {
  position: absolute;
  right: 0;
  top: 12px;
  color: #2d99ff;
}
h1 {
  margin: 10px 0;
  font-size: 40px;
}
#loadingMessage {
  text-align: center;
  padding: 40px;
  background-color: #eee;
}
#canvas {
  width: 100%;
}
#output {
  margin-top: 20px;
  background: #eee;
  padding: 10px;
  padding-bottom: 0;
}
#output div {
  padding-bottom: 10px;
  word-wrap: break-word;
}
#noQRFound {
  text-align: center;
}
</style>

相关文章

网友评论

    本文标题:vue jsQR 二维码扫描

    本文链接:https://www.haomeiwen.com/subject/llmuxctx.html