nodejs实现网站截图 Posted on 2018-07-24 Views: Disqus: 这里介绍使用pageres来进行网站截图。 pageres安装 1npm install pageres 使用 123456789const Pageres = require('pageres');const pageres = new Pageres({delay: 2}) .src('yeoman.io', ['480x320', '1024x768', 'iphone 5s'], {crop: true}) .src('todomvc.com', ['1280x1024', '1920x1080']) .src('data:text/html;base64,PGgxPkZPTzwvaDE+', ['1024x768']) .dest(__dirname) .run() .then(() => console.log('done')); 具体使用参考:pageres pageres-cli安装 1npm install --global pageres-cli 使用 12345678# pageres <url> <resolution>pageres todomvc.com 1024x768 1366x768 # 2 screenshotspageres todomvc.com yeoman.io 1024x768 # 2 screenshotspageres todomvc.com yeoman.io 1024x768 1366x768 # 4 screenshots# pageres [ <url> <resolution> ] [ <url> <resolution> ]pageres [ yeoman.io 1024x768 1600x900 ] todomvc.com 1366x768pageres [ yeoman.io 1024x768 --no-crop ] todomvc.com 1366x768 --crop 具体使用参考:pageres-cli