如何使用HTML / JavaScript捕获客户端“桌面”部分的屏幕截图?

时间:2016-01-11 14:11:22

标签: javascript html screenshot html2canvas

我知道如何捕获网页,但我想知道如何在桌面上捕获桌面或其他应用程序?如果有任何方式突出显示部分屏幕。就像html2canvas对网页的作用一样,我们可以使用HTML / JS中的浏览器应用程序为桌面应用程序做些什么吗?

1 个答案:

答案 0 :(得分:3)

是的,这是可能的!
但据我所知,只有Firefox和Chrome(我使用的是Chrome)。感谢Screen Capturing和WebRTC。 More info about WebRTC

我使用了一个名为RTCMultiConnection的库,它非常易于使用,但您也可以在不使用库的情况下执行此操作。

这里,只是给你一个起点:

// 1. Create the connection Objekt
var connection = new RTCMultiConnection();

// 2. Activate screen, which is the whole monitor, not only the browser window!
connection.session = {
    screen: true,
    data: false,
    oneway: true
};

// 3. Create the callback for the stream
connection.onstream = function(event) {
  // Make something with the event
  // event.stream contains the stream, event.mediaElement the media
  // I used event.mediaElement as parameter to draw the frage into an canvas; via context2d.drawImage(event.mediaElement, ...)
  // Then I create an base64 String via canvas.toDataURL("image/png") and 
  // Don't forget to stop the stream if you just want to have one single image
};

// 4. Start Desktop Sharing
connection.open({
  // you could register a onMediaCaptured callback here
});