scratch/output/keynote/png2pdf.js
Yann Esposito (Yogsototh) bd537ec480 added my keynote
2012-12-11 00:55:50 +01:00

19 lines
353 B
JavaScript

var webpage = require('webpage'),
page = webpage.create(),
fs = require('fs');
page.open('temp-output.html', function(status) {
page.viewportSize = {
width: 960,
height: 522
};
page.paperSize = {
width: 960,
height: 522
};
page.render('output.pdf');
fs.removeTree('temp-slides');
fs.remove('temp-output.html');
phantom.exit();
});