如何在 Node JS 中截取整个屏幕?

How can I take a screenshot of the entire screen in Node JS?

如何在 Node JS 中截取一个监视器/屏幕的屏幕截图?我需要哪些库以及如何使用它们?它需要能够成功地将整个监视器的内容写入文件。

除了如何截取网页截图,我似乎找不到任何东西,或者具体的 windows。感谢您的帮助!

你可以试试screenshot-desktop npm module。它是跨平台的(Linux、Mac、Windows)并且可以直接保存到文件中。

安装:

$ npm install --save screenshot-desktop

使用:

const screenshot = require('screenshot-desktop')

screenshot({ filename: 'shot.jpg' }).then((imgPath) => {
  // imgPath: absolute path to screenshot
  // created in current working directory named shot.png
});

// absolute paths work too. so do pngs
screenshot({ filename: '/Users/brian/Desktop/demo.png' })