barrylei 发表于 2018-1-11 08:57:32

使用js调用摄像头拍照

在一些浏览器里已经可以使用web api调用摄像头功能了。
基于此可以经行拍照摄像功能,网上找了些资料,然后实现了简单的拍照功能
演示地址 https://bingxl.cn/webrtc.html<!DOCTYPE html>
<html lang="ZH-CN">
<head>
<meta charset="utf-8">
<title>web RTC 测试</title>
<style>
    .booth {
      width:400px;
   
      background:#ccc;
      border: 10px solid #ddd;
      margin: 0 auto;
    }
</style>
</head>
<body>
<div class="booth">
    <video id="video" width="400" height="300"></video>
    <button id='tack'> snap shot</button>
    <canvas id='canvas' width='400' height='300'></canvas>
    <img id='img' src=''>
</div>


<script>
    var video = document.getElementById('video'),
      canvas = document.getElementById('canvas'),
      snap = document.getElementById('tack'),
      img = document.getElementById('img'),
      vendorUrl = window.URL || window.webkitURL;
      
    //媒体对象
    navigator.getMedia = navigator.getUserMedia ||
                         navagator.webkitGetUserMedia ||
                         navigator.mozGetUserMedia ||
                         navigator.msGetUserMedia;
    navigator.getMedia({
      video: true, //使用摄像头对象
      audio: false//不适用音频
    }, function(strem){
      console.log(strem);
      video.src = vendorUrl.createObjectURL(strem);
      video.play();
    }, function(error) {
      //error.code
      console.log(error);
    });
    snap.addEventListener('click', function(){
   
      //绘制canvas图形
      canvas.getContext('2d').drawImage(video, 0, 0, 400, 300);
      
      //把canvas图像转为img图片
      img.src = canvas.toDataURL("image/png");
      
    })
</script>
</body>
</html>

特别说明
[*]有些浏览器可能不支持此功能
[*]必须通过服务器打开页面,通过files://打开无效
[*]如果通过远程服务器打开则必须是https协议, http协议也无法使用

此博客出自稻草人LXB,转载请注明原文地址
博客地址:http://www.cnblogs.com/scarecrowlxb/


bohe 发表于 2018-3-9 13:40:03

还有与考勤机的通迅呢?

Simon.hu 发表于 2018-3-14 09:49:51

这需要您拿到厂家的接口文档,我们可以帮你看看

追风 发表于 2024-5-22 15:55:41

拍照之后的图片都是base64编码的格式
页: [1]
查看完整版本: 使用js调用摄像头拍照