Skip to content

Instantly share code, notes, and snippets.

@alnutile
Created July 27, 2015 18:51
Show Gist options
  • Save alnutile/749971ab6d245c33dc7f to your computer and use it in GitHub Desktop.
Save alnutile/749971ab6d245c33dc7f to your computer and use it in GitHub Desktop.
Print the page this is influenced by the library that Laravel made for Cashier.
// PhantomJS Screenshot Capture...
var page = require('webpage').create();
//page.viewportSize = {width: 600, height: 600};
page.paperSize = {format: 'A4', orientation: 'portrait', margin: '1cm'};
page.open('http://startup-scorecard.com/core/functions/answers_pdf4.php', function() {
setTimeout(function() {
page.render('output.pdf');
phantom.exit()
}, 3000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment