gpt4 book ai didi

javascript - 上传从网络摄像头拍摄的图片

转载 作者:行者123 更新时间:2023-11-28 09:03:30 24 4
gpt4 key购买 nike

如何上传从网络摄像头拍摄的图片,i've found a code that worked (only on Chrome)

我已经使用了代码,当点击拍照时,我得到了照片,但我在源代码中没有看到它?

<video autoplay id="vid" style="display:none;"></video>
<canvas id="canvas" width="640" height="480" style="border:1px solid #d3d3d3;"></canvas><br>
<button onclick="snapshot()">Take Picture</button>

<script type="text/javascript">

var video = document.querySelector("#vid");
var canvas = document.querySelector('#canvas');
var ctx = canvas.getContext('2d');
var localMediaStream = null;

var onCameraFail = function (e) {
console.log('Camera did not work.', e);
};

function snapshot() {
if (localMediaStream) {
ctx.drawImage(video, 0, 0);
}
}

navigator.getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia || navigator.msGetUserMedia;
window.URL = window.URL || window.webkitURL;
navigator.getUserMedia({video:true}, function (stream) {
video.src = window.URL.createObjectURL(stream);
localMediaStream = stream;
}, onCameraFail);

</script>

如何将其添加到具有图片元素的表单

<input name="avatar" class="avatar" type="file" required>

如您所见,该字段是必填字段,因此如果将其添加到该字段,表单会将其视为非空?

为什么它在 Opera 上不起作用?我使用 Opera 12.15

更新:i found how to convert to canvas to image ,但不知道如何将其填充到图像中:

a = canvas.toDataURL("image/jpeg")
document.getElementById("avatar").src = a

如果我使用 JavaScript 控制台,我会得到源代码,但如果我验证表单,表单会认为图像仍然丢失并且是空白的。

有什么想法吗?

最佳答案

使用 snapshot() 构建 SetInterval,运行时间为 300 毫秒。

该按钮仅停止间隔,;)

<小时/>
<button onclick="clearInterval(ivl)">Take Picture</button>

var ivl = setInterval(function(){ snapshot(); },300);

关于javascript - 上传从网络摄像头拍摄的图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17393479/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com