我正在使用 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 文件看起来相同。任何人都可以帮助我吗?谢谢!