Skip to content

Instantly share code, notes, and snippets.

@dannvix
Created April 12, 2015 10:08
Show Gist options
  • Save dannvix/00cd288a93b65ff421f8 to your computer and use it in GitHub Desktop.
Save dannvix/00cd288a93b65ff421f8 to your computer and use it in GitHub Desktop.
Simply capture web-page screenshot with PhantomJS
#!/usr/bin/env phantom
var webpage = require("webpage"),
system = require("system");
var args = system.args;
if (args.length < 3) {
system.stderr.writeLine("usage: " + args[0] + " <URL> <Filename.png> [delay] [viewWidth] [viewHeight]");
phantom.exit();
}
var url = args[1];
var filename = args[2];
var delay = args[3] || 3000;
var viewWidth = args[4] || 1280;
var viewHeight = args[5] || 960;
var page = webpage.create();
page.viewportSize = {
width: viewWidth,
height: viewHeight
};
page.open(url, function() {
setTimeout(function() {
page.render(filename);
phantom.exit();
}, delay);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment