var fs = require('fs');
var pdf = require('html-pdf');
var html = '<html><body><div>hi testing</div></body></html>'
var options = { format: 'Letter' };
pdf.create(html, options).toFile('./businesscard.pdf', function(err, res) {
if (err) return console.log(err);
console.log(res);
});
我正在使用此代码使用 html-pdf 将 html 转换为 pdf。但我不断收到同样的错误
SIGSEGV
我很长一段时间都在使用相同的代码。但突然从最近几天开始,我开始面临这个错误。
Node - v8.6.2
Npm - v6.4.1
html-pdf - v2.2.0