PhantomJS-화면 캡처
PhantomJS는 웹 페이지의 스크린 샷을 찍고 웹 페이지를 PDF로 변환하는 데 매우 유용합니다. 작동 방식을 보여주는 간단한 예를 여기에 제공했습니다.
예
var page = require('webpage').create();
page.open('http://phantom.org/',function(status){
page.render('phantom.png');
phantom.exit();
});
위의 프로그램을 실행하면 출력이 다음과 같이 저장됩니다. phantom.png.
웹 페이지를 PDF로 변환
PhantomJS는 또한 웹 페이지를 머리글과 바닥 글이 추가 된 PDF로 변환하는 데 도움이됩니다. 작동 방식을 이해하려면 다음 예제를 살펴보십시오.
var wpage = require('webpage').create();
var url = "https://en.wikipedia.org/wiki/Main_Page";
var output = "test.pdf";
wpage.paperSize = {
width: screen.width+'px',
height: '1500px',
margin: {
'top':'50px',
'left':'50px',
'rigtht':'50px'
},
orientation:'portrait',
header: {
height: "1cm",
contents: phantom.callback(function(pageNumber, nPages) {
return "<h5>Header <b>" + pageNumber + " / " + nPages + "</b></h5>";
})
},
footer: {
height: "1cm",
contents: phantom.callback(function(pageNumber, nPages) {
return "<h5>Footer <b>" + pageNumber + " / " + nPages + "</b></h5>";
})
}
}
wpage.open(url, function (status) {
if (status !== 'success') {
console.log('Page is not opening');
phantom.exit();
} else {
wpage.render(output);
phantom.exit();
}
});
위의 프로그램은 다음을 생성합니다. output.
The above will convert the page into pdf and will be saved in test.pdf
캔버스를 이미지로 변환
Phantomjs는 캔버스를 이미지로 쉽게 변환 할 수 있습니다. 작동 방식을 이해하려면 다음 예제를 살펴보십시오.
var page = require('webpage').create();
page.content = '<html><body><canvas id="surface" width="400" height="400"></canvas></body></html>';
page.evaluate(function() {
var context,e1;
el = document.getElementById('surface');
context = el.getContext('2d');
context.font = "30px Comic Sans MS";
context.fillStyle = "red";
context.textAlign = "center";
context.fillText("Welcome to PhantomJS ", 200, 200);
document.body.style.backgroundColor = 'white';
document.body.style.margin = '0px';
});
page.render('canvas.png');
phantom.exit();
위의 프로그램은 다음을 생성합니다. output.