我正在使用html-pdf来生成带有html的动态pdf文件。 但是pdf文件很丑陋,我认为原因是dpi不好。 我尝试设置:
var options = {
dpi: 96,
};
pdf.create(htmlTemplate, options).toStream(function(err, stream){
if (err) {
return res.end(err.stack)
}
res.setHeader('Content-type', 'application/pdf');
stream.pipe(res);
});
但是没有运气。它仍然无法正常工作。我多次更改了dpi的值,但pdf文件看起来相同。 有人可以帮助我吗?谢谢!