Skip to content

Instantly share code, notes, and snippets.

@ivanvza
Last active August 29, 2015 14:21
Show Gist options
  • Save ivanvza/f3cc4b6fb7d92dcc4f64 to your computer and use it in GitHub Desktop.
Save ivanvza/f3cc4b6fb7d92dcc4f64 to your computer and use it in GitHub Desktop.
Single PhantomJs screenshot
var page = require('webpage').create();
page.viewportSize = { width: 640, height: 480 };
page.open('<web page>', function () {
setInterval(function() {
page.render('image.png', { format: "png" });
}, 25);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment