Created
April 12, 2015 10:08
-
-
Save dannvix/00cd288a93b65ff421f8 to your computer and use it in GitHub Desktop.
Simply capture web-page screenshot with PhantomJS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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