我正在使用https://www.npmjs.com/package/html-pdf库,它基于内部使用webkit的Phantom JS。我正在粘贴虚拟 HTML 和 JS 代码(将这些文件保存在 1 个文件夹中)并附上输出屏幕截图。
我面临的问题是,在 Windows 上生成的 PDF 顶部有一些额外的空间(红色上方的空白空间),我无法摆脱.
这是一个讨论类似问题的论坛(过时),https://groups.google.com/forum/# !topic/phantomjs/YQIyxLWhmr0 。
输入.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
</head>
<body>
<div id="pageHeader" style="border-style: solid;border-width: 2px;color:red;">
header <br/> header <br/> header <br/> header
</div>
<div id="pageContent" style="border-style: solid;border-width: 2px;color:green;">
<div>
body <br/> body <br/> body
</div>
</div>
JS (你需要 path、fs、handlebars、html-pdf npm 包)
var path = require('path');
var fs = require('fs');
var handlebars = require('handlebars');
var pdf = require('html-pdf');
saveHtml();
function saveHtml() {
fs.readFile('input.html', 'utf-8', {
flag: 'w'
}, function(error, source) {
handlebars.registerHelper('custom_title', function(title) {
return title;
})
var template = handlebars.compile(source);
var data = {};
var html = template(data);
var options = {
'format': 'A4',
'base': "file://",
/* You can give more options like height, width, border */
};
pdf.create(html, options).toFile('./output.pdf', function(err, res) {
if (err) {
console.log('err pdf');
return;
} else {
console.log('no err pdf');
return;
}
});
});
}
Windows 中顶部的额外空间(红色上方的空白空间)是问题所在。
不起作用的事情 1. 在 JS 文件中的选项中添加 "border": { "top": "0px" // 或 mm, cm, in }
https://www.npmjs.com/package/html-pdf#options
在 JS 文件的选项中给出固定的 "height": "10.5in" & "width": "8in"
将 margin-top 和 padding-top 设置为 0px/-50px 到 pageHeader div。
- 在 bootstrap.css 中的 @media print 中将主体的边距顶部和填充覆盖为 0px/-20px
- 为标题提供固定高度
任何帮助将不胜感激。谢谢。