Created
July 27, 2015 18:51
-
-
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.
This file contains hidden or 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
// 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