#electron #desktopcapturer
Вопрос:
Как сделать снимок экрана, включая два экрана?
document.getElementById('screenshot-button').addEventListener('click', () => { // The button which takes the screenshot
desktopCapturer.getSources({ types: ['screen'] })
.then( sources => {
console.log(sources)
document.getElementById('screenshot').src = sources[0].thumbnail.toDataURL() // The image to display the screenshot
})
})
Комментарии:
1. Можете ли вы объяснить свои результаты, используя приведенный выше код?