Reference:
http://phantomjs.org/screen-capture.html
下載 PhantomJS 解壓縮,把 phantomjs.exe 加到 PATH。
把網頁轉成圖片:
1. 編輯 web_2_png.js,內容如下
var page = require('webpage').create();
page.open('http://github.com/', function() {
page.render('github.png');
phantom.exit();
});
2. 執行 phantomjs web_2_png.js 即可產生圖片
把 html 檔案轉成圖片:
1. 編輯 html_2_png.js,內容如下
var page = require('webpage').create();
page.open('file:///c:/tmp/myfile.htm', function() {
page.render('myfile.png');
phantom.exit();
});
2. 執行 phantomjs html_2_png.js 即可產生圖片
沒有留言:
張貼留言