Skip to content

Instantly share code, notes, and snippets.

@NikolayIT
Last active February 6, 2020 15:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NikolayIT/2180a0e05622cf1d33b95b3228959e83 to your computer and use it in GitHub Desktop.
Save NikolayIT/2180a0e05622cf1d33b95b3228959e83 to your computer and use it in GitHub Desktop.
"use strict";
var page = require('webpage').create(),
system = require('system'),
address,
output;
console.log('Usage: rasterize.js [URL] [filename] [paperformat] [orientation]');
address = system.args[1];
output = system.args[2];
page.viewportSize = { width: 800, height: 600 };
page.paperSize = {
format: system.args[3],
orientation: system.args[4],
margin: '0.5cm',
footer: {
height: "0.5cm",
contents: phantom.callback(function (pageNum, numPages) {
return "<span style='float:right; font-family: sans-serif; font-size: 10px; font-weight: 400;'>" + pageNum + " / " + numPages + "</span>";
})
}
};
page.open(address, function (status) {
if (status !== 'success') {
console.log('Unable to load the address!');
phantom.exit(1);
} else {
window.setTimeout(function () {
page.render(output);
phantom.exit();
}, 200);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment