如何使用node.JS中的phantomJs将html内容呈现为pdf文件

时间:2016-05-14 07:03:58

标签: html node.js pdf phantomjs

如何生成包含某些html内容的pdf文件,并使用node.js中的phantom.js将文件和内容呈现给浏览器?

1 个答案:

答案 0 :(得分:7)

为什么不使用使用phantomJS的html-pdf npm模块?

代码示例

var fs = require('fs');
var pdf = require('html-pdf');
var html = fs.readFileSync('./test/businesscard.html', 'utf8');
var options = { format: 'Letter' };

pdf.create(html, options).toFile('./businesscard.pdf', function(err, res) {
  if (err) return console.log(err);
  console.log(res); // { filename: '/app/businesscard.pdf' } 
});