js調(diào)用網(wǎng)絡(luò)攝像頭的方法
不支持IE瀏覽器(需要使用flash插件), 支持移動(dòng)端, 未經(jīng)過(guò)完全測(cè)試
PC端使用的時(shí)候, HTML頁(yè)面需要預(yù)留video標(biāo)簽, canvas標(biāo)簽
移動(dòng)端使用的時(shí)候, HTML頁(yè)面需要預(yù)留file標(biāo)簽, canvas標(biāo)簽, img標(biāo)簽
(function (window, document) {
window.camera = {
init: function (options) {
/**
* options 屬性示例
* videoID: video控件ID
* canvasID: canvas控件ID
* fileID: type為file的input控件的ID
* imageID: img控件的ID
* videoEnable: 是否啟用攝像頭
* audioEnable: 是否啟用麥克風(fēng)
* videoWidth: 視頻寬度
* videoHeight: 視頻高度
* photoWidth: 拍照寬度
* photoHeight: 拍照高度
*/
_options = options;
if (isMobileTerminal()) {
initMobileTerminal();
} else {
initComputerTerminal();
}
},
photo: function () {
if (isMobileTerminal()) {
photoMobileTerminal();
} else {
photoComputerTerminal();
}
}
};
let _options = null;
function initComputerTerminal() {
let videoDom = document.getElementById(_options.videoID);
if (!videoDom) {
alert('Video 控件無(wú)效');
return;
}
let canvasDom = document.getElementById(_options.canvasID);
if (!canvasDom) {
alert('Canvas 控件無(wú)效');
return;
}
canvasDom.setAttribute('width', _options.photoWidth + 'px');
canvasDom.setAttribute('height', _options.photoHeight + 'px');
let parameters = {
video: _options.videoEnable ? {
width: _options.videoWidth,
height: _options.videoHeight
} : false,
audio: _options.audioEnable
};
navigator.mediaDevices.getUserMedia(parameters)
.then(function (MediaStream) {
video.srcObject = MediaStream;
video.play();
}).catch(function (reason) {
console.log(reason);
alert(reason);
});
}
function photoComputerTerminal() {
let videoDom = document.getElementById(_options.videoID);
if (!videoDom) {
alert('Video 控件無(wú)效');
return;
}
let canvasDom = document.getElementById(_options.canvasID);
if (!canvasDom) {
alert('Canvas 控件無(wú)效');
return;
}
let context = canvasDom.getContext('2d');
context.drawImage(videoDom, 0, 0, _options.photoWidth, _options.photoHeight);
}
function initMobileTerminal() {
let fileDom = document.getElementById(_options.fileID);
if (!fileDom) {
alert('File 控件無(wú)效');
return;
}
fileDom.setAttribute('accept', 'image/*');
fileDom.setAttribute('capture', 'camera');
let canvasDom = document.getElementById(_options.canvasID);
if (!canvasDom) {
alert('Canvas 控件無(wú)效');
return;
}
canvasDom.setAttribute('width', _options.photoWidth + 'px');
canvasDom.setAttribute('height', _options.photoHeight + 'px');
let imageDom = document.getElementById(_options.imageID);
if (!imageDom) {
alert('Image 控件無(wú)效');
return;
}
fileDom.addEventListener('change', function () {
let file = fileDom.files[0];
let reader = new FileReader();
reader.onloadend = function () {
imageDom.setAttribute('src', reader.result);
setTimeout(function () {
let context = canvas.getContext("2d");
context.drawImage(imageDom, 0, 0, _options.photoWidth, _options.photoHeight);
}, 300);
};
reader.readAsDataURL(file);
});
}
function photoMobileTerminal() {
let fileDom = document.getElementById(_options.fileID);
fileDom.click();
}
function isMobileTerminal() {
if (/AppleWebKit.*Mobile/i.test(navigator.userAgent) || /Mobile/.test(navigator.userAgent) || /MIDP|SymbianOS|NOKIA|SAMSUNG|LG|NEC|TCL|Alcatel|BIRD|DBTEL|Dopod|PHILIPS|HAIER|LENOVO|MOT-|Nokia|SonyEricsson|SIE-|Amoi|ZTE/.test(navigator.userAgent))
return /Android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent);
return false;
}
})(window, document);
以上就是js調(diào)用網(wǎng)絡(luò)攝像頭的方法的詳細(xì)內(nèi)容,更多關(guān)于js調(diào)用網(wǎng)絡(luò)攝像頭的資料請(qǐng)關(guān)注腳本之家其它相關(guān)文章!
- js實(shí)現(xiàn)web調(diào)用攝像頭 js截取視頻畫(huà)面
- JS調(diào)用安卓手機(jī)攝像頭掃描二維碼
- js調(diào)用設(shè)備攝像頭的方法
- JS實(shí)現(xiàn)調(diào)用本地?cái)z像頭功能示例
- Vue2.0實(shí)現(xiàn)調(diào)用攝像頭進(jìn)行拍照功能 exif.js實(shí)現(xiàn)圖片上傳功能
- JavaScript 如何在瀏覽器中使用攝像頭
- 微信JSSDK實(shí)現(xiàn)打開(kāi)攝像頭拍照再將相片保存到服務(wù)器
- javascript實(shí)現(xiàn)攝像頭拍照預(yù)覽
相關(guān)文章
解決Webpack 熱部署檢測(cè)不到文件變化的問(wèn)題
下面小編就為大家分享一篇解決Webpack 熱部署檢測(cè)不到文件變化的問(wèn)題,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)看看吧2018-02-02
three.js中文文檔學(xué)習(xí)之通過(guò)模塊導(dǎo)入
這篇文章主要給大家介紹了關(guān)于three.js中文文檔學(xué)習(xí)之通過(guò)模塊導(dǎo)入的相關(guān)資料,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家學(xué)習(xí)或使用three.js具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧。2017-11-11
Javascript 計(jì)算字符串在localStorage中所占字節(jié)數(shù)
js判斷一個(gè)對(duì)象是數(shù)組(函數(shù))的方法實(shí)例

