다음은 원하는 URL에 따라 웹페이지를 캡쳐하는 방식을 도전해볼 것이다.
var page = require('webpage').create();
var system = require('system');
if ( system.args.length == 1){
console.log('Usage : loadPage.js <someURL>');
phantom.exit();
}
address = system.args[1];
page.open(address, function (status){
if (status != 'success'){
console.log ('FAIL to load the address');
} else {
page.render('./tmp/image.jpg');
}
phantom.exit();
});
var childProcess = require('child_process');
var phantomjs = require('phantomjs');
var binPath = phantomjs.path;
var path = require('path');
var url = 'http://www.whateverYouWant.com';
var childArgs = [
path.join(__dirname, 'loadPage.js'),
url // <- 실행시킬 URL을 childProcess의 두번째 Argument로 넘긴다.
];
childProcess.execFile(binPath, childArgs, function (err,stdout, stderr){
console.log('good');
});
이상 node.js에서 phantomjs 사용하기 기초 끝
[javascript] 숫자 천단위 콤마 찍기 (0) | 2023.07.19 |
---|---|
[Javascript] Date.format 사용하기 (0) | 2023.07.19 |
[Phantomjs] Phantomjs를 이용해서 웹페이지 캡쳐하기 (2) (0) | 2023.07.19 |
[Phantomjs] Phantomjs를 이용해서 웹페이지 캡쳐하기 (1) (0) | 2023.07.19 |
[Javascript] Object Prototype 프로토타입 이해하기 (0) | 2023.07.19 |