function captureImage () {
var scale = 0.25;
var txt = document.querySelector('div p .external');
video = document.querySelector("video");
var canvas = document.createElement('canvas');
canvas.width = video.videoWidth * scale;
canvas.height = video.videoHeight * scale;
canvas.getContext("2d").drawImage(video, 0, 0, canvas.width, canvas.height);
var img = document.createElement("img");
img.src = canvas.toDataURL();
// console.log(img.src)
txt.appendChild(img)
}
相关文章
- 12-17getopt()函数 命令解析
- 12-17msyql常用函数
- 12-17getopt函数
- 12-17main函数的的两个参数
- 12-17main函数参数
- 12-17python – 使用函数不适用于getopt
- 12-178行代码的模板字符串替换函数
- 12-17shell study-15day--shell函数
- 12-17python函数之杂货铺
- 12-17REACT--函数式组件与类式组件