1.

What Do You Understand About Screen Capture?

Answer»

PhantomJs provide FACILITY capture screenshot of web page. This capture image can be saved in DIFFERENT formate such as .png, .jpeg, .pdf, .gif. It is also able to convert as PDF.

Following SCRIPT show the simple way for screen capture.

var page = require(‘webpage’).CREATE();

page.open(‘website_url’,function(status){

page.render(‘imagename.png’);

phantom.exit();

});

PhantomJs provide facility capture screenshot of web page. This capture image can be saved in different formate such as .png, .jpeg, .pdf, .gif. It is also able to convert as PDF.

Following script show the simple way for screen capture.

var page = require(‘webpage’).create();

page.open(‘website_url’,function(status){

page.render(‘imagename.png’);

phantom.exit();

});



Discussion

No Comment Found