Python -- 之Phantomjs网页截图

1.链接下载:phantomjs
2.将文件phantomjs的bin目录添加Path中
3.编写python文件 screenshot.py

var page = require('webpage').create();
page.open('https://www.baidu.com/', function(status) {
  console.log("Status: " + status);
  if(status === "success") {
    page.render('example.png');
  }
  phantom.exit();
});

4.调出 cmd 窗口,输入指令 phantomjs screenshot.py
5.当前目录获得 example.png

你可能感兴趣的:(Python)