html调用电脑摄像头进行拍照demo
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>test</title>
<style>
html,body{position:relative;height:100%;}
.main { display: flex; flex-direction: row; justify-content:space-between;width:100%}
#canvas{background-color:#eee;}
.btnBox { display:flex;align-items:center;justify-content:center; position: absolute; bottom: 0px; left: 0px; width: 100%; height: 60px; background-color: #eee; border-top: solid 1px #ddd; }
#btnSave{margin-left:20px;}
</style>
</head>
<body>
<div class="main">
<video id="video" autoplay style="width: 640px;height: 480px"></video>
<canvas id="canvas" width="640" height="480"></canvas>
</div>
<div class="text-center btnBox">
<button id="capture" class="btn btn-success"><i class="fa fa-camera"></i> 拍照</button>
<button id="btnSave" class="btn btn-success"><i class="fa fa-save"></i> 使用此图片</button>
</div>
<script>
window.onload = function () {
function getUserMedia(constraints, success, error) {
if (navigator.mediaDevices.getUserMedia) {
navigator.mediaDevices.getUserMedia(constraints).then(success).catch(error);
} else if (navigator.webkitGetUserMedia) {
navigator.webkitGetUserMedia(constraints, success, error)
} else if (navigator.mozGetUserMedia) {
navigator.mozGetUserMedia(constraints, success, error);
} else if (navigator.getUserMedia) {
navigator.getUserMedia(constraints, success, error);
}
}
let video = document.getElementById('video');
let canvas = document.getElementById('canvas');
let context = canvas.getContext('2d');
function success(stream) {
video.srcObject = stream;
video.play();
}
function error(error) {
console.log(`访问用户媒体设备失败${error.name}, ${error.message}`);
}
if (navigator.mediaDevices.getUserMedia || navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia) {
if (!navigator.mediaDevices || !navigator.mediaDevices.enumerateDevices) {
console.log("enumerateDevices() not supported.");
return;
}
var exArray = [];
navigator.mediaDevices.enumerateDevices()
.then(function (devices) {
devices.forEach(function (device) {
if (device.kind == "videoinput") {
exArray.push(device.deviceId);
}
});
var mediaOpts = { video: { width: 420, height: 120 } };
var mediaOpts =
{
video:
{
deviceId: { exact: exArray[1] }
}
};
getUserMedia(mediaOpts, success, error);
})
.catch(function (err) {
console.log(err.name + ": " + err.message);
});
} else {
alert('不支持访问用户媒体');
}
var img = new Image();
document.getElementById('capture').addEventListener('click', function () {
context.drawImage(video, 0, 0, 640, 480);
var image = new Image();
image.src = canvas.toDataURL("image/jpeg");
console.log(image.src);
})
}
</script>
</body>
</html>
|