Skip to content

Instantly share code, notes, and snippets.

@joemsak
Forked from javan/screenshot.js
Created July 26, 2013 18:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joemsak/6090912 to your computer and use it in GitHub Desktop.
Save joemsak/6090912 to your computer and use it in GitHub Desktop.
//
// Example usage: phantomjs screenshot.js http://yahoo.com /tmp/yahoo.png
//
var system = require('system');
var url = system.args[1];
var filename = system.args[2];
var page = new WebPage();
page.open(url, function (status) {
page.render(filename);
console.log(filename)
phantom.exit();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment