-
Notifications
You must be signed in to change notification settings - Fork 0
/
sp_capture.js
48 lines (40 loc) · 1003 Bytes
/
sp_capture.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//
// capture.js
//
// REQUIREMENTS:
// phantomjs
//
// USEAGE:
// phantomjs capture.js HTML_PATH IMAGE_WIDTH IMAGE_PATH
// 引数解析
var system = require('system');
if (system.args.length != 4) {
console.log("USEAGE: phantomjs capture.js HTML_PATH IMAGE_WIDTH IMAGE_PATH");
phantom.exit();
} else {
render();
}
function render() {
var htmlPath = system.args[1];
var imageWidth = system.args[2];
var imagePath = system.args[3];
var page = require('webpage').create();
// 出力サイズ指定。
// 高さは自動調整されるようなので、とりあえず 1 に。
page.viewportSize = {
width: imageWidth,
height: 1
};
page.open(htmlPath, function() {
// 背景を白くする。
// phantomjs ではデフォルト透明なので、
// javascript 実行によって対応。
page.evaluate(function() {
document.body.bgColor = 'white';
});
// 出力
page.render(imagePath);
// 終了
phantom.exit();
});
}