我想像HTML this
那样通过HTML5进行移动相机捕捉我尝试使用以下方法,但需要点击某处打开相机,这意味着我无法在现场预览图像。
<input id="fileselect" type="file" accept="image/*" capture="camera">
我还发现了另一种使用名为“ getUserMedia ”的函数的方法,但它不支持IOS8。
那么如何使用HTML5实现移动摄像头捕获?
请帮忙。
答案 0 :(得分:1)
下面是一个使用HTML5将视频查看器放在屏幕上的简单示例,它还允许您捕获静态图像。 它已在Chrome版本40.0.2214.93或更高版本上进行了测试。 它已在MVC应用程序中完成。如果使用此代码替换Index.cshtml中的标记,它应该运行正常。唯一的另一个依赖是jquery。
@{
ViewBag.Title = "Home Page";
}
<style>
.videostream, #cssfilters-stream, #screenshot {
width: 307px;
height: 250px;
}
.videostream, #cssfilters-stream {
background: rgba(255,255,255,0.5);
border: 1px solid #ccc;
}
#screenshot {
vertical-align: top;
}
</style>
<div style="text-align:center;">
@*<div style="text-align:center;">*@
<div style="float:left;">
<video id="basic-stream" class="videostream" autoplay></video>
<p><button id="capture-button">Capture video</button></p>
</div>
<div style="float:left; padding-left:20px;">
<button id="SaveImageBtn" style="vertical-align:top; margin-top:100px; margin-right:20px;">Save -></button>
<canvas id="outputCanvas" class="videostream"></canvas>
</div>
</div>
<script src="~/Scripts/jquery-1.8.2.js"></script>
<script src="~/Scripts/jquery-ui-1.8.24.js"></script>
<script>
var video = document.querySelector('#basic-stream');
var button = document.querySelector('#capture-button');
var localMediaStream = null;
var canvas = document.querySelector('outputCanvas');
$(document).ready(function () {
$("#capture-button").click(function () {
RunIt();
});
$("#SaveImageBtn").click(function () {
var cvs = $("#outputCanvas")[0];
var ctx = cvs.getContext('2d');
ctx.drawImage(video, 0, 0, 300, 150);
console.log("Got here 01");
});
var videoObj = {"video": true};
var errBack = function (error) { alert("An error");};
function RunIt() {
navigator.webkitGetUserMedia(
{ "video": true, "audio": true },
function (s) {
video.src =
window.webkitURL.createObjectURL(s);
video.controls = true;
localMediaStream = s;
video.play();
},
function (e) { console.log(e); }
);
};
});
</script>
答案 1 :(得分:0)
尝试使用一些占位符图片。