0
我想在點擊按鈕時啓動相機,並通過javascript顯示預覽。在javascript中點擊按鈕時捕捉圖像
function emitStream() {
// Asking permission to get the user media.
// If permission granted, assign the stream to the HTML 5 video element.
navigator.webkitGetUserMedia({
video: true,
audio: true
}, function(stream) {
that._video = document.querySelector('video');
that._video.src = window.URL.createObjectURL(stream);
});
function takePicture() {
// Assigning the video stream to the canvas to create a picture.
that._canvas = document.querySelector('canvas');
var context = that._canvas.getContext('2d');
context.clearRect(0, 0, 0, 0);
context.drawImage(that._video, 0, 0, 400, 300);
}
}
有什麼題?你的部分代碼有困難嗎?它拋出一個錯誤?它不工作嗎?閱讀更多關於[如何提出一個很好的問題](http://stackoverflow.com/help/how-to-ask)。 – methode