Created
March 17, 2017 16:26
-
-
Save roycrxtw/5518821861b7e784ef3cdb85c6e4c058 to your computer and use it in GitHub Desktop.
This file contains 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
var pdfOptions = {format: 'Letter'}; //輸出成Letter size(216 x 279 mm) | |
pdf.create(html, pdfOptions).toFile('./weather.pdf', function(err, result){ | |
if(err){ | |
console.log('error in pdf.create(), err=', err); | |
} | |
console.log('result=', result); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment