我正在使用phantomjs生成pdf文件但是我想用HTML重复一个已定义的标题,它在没有图像的情况下工作但是一旦我添加它就不起作用
page.viewportSize = { width: 600, height: 600 };
page.paperSize = {
format: 'A4', orientation: 'portrait', margin: '0px',
header: {
height: "1.2cm",
contents: phantom.callback(function(pageNum, numPages) {
return '<img src="https://www.google.com.bo/images/srpr/logo4w.png" height="0.95cm"/>';
})
},
footer: {
height: "0.7cm",
contents: phantom.callback(function(pageNum, numPages) {
return '<h3 class="header">Footer</h>';
})
}
}
答案 0 :(得分:8)
Hacky解决这个问题,通过将img放入正文并使用display:none;来预先缓存页面上的图像。
<img src="https://www.google.com.bo/images/srpr/logo4w.png" height="0.95cm" style="display: none;"/>
然后在页眉和/或页脚中添加img标记。
这是必需的,因为在继续使用栅格之前,页眉和页脚不会等待html完成加载。它需要被改进为更多Async并且是一个已知的bug。
由于在页面完全加载后处理页眉和页脚,因此图像将可供他们使用。这也适用于base64图像源。
答案 1 :(得分:5)
适用于来自https://github.com/ariya/phantomjs/pull/359的补丁 安装它:
git clone git://github.com/ariya/phantomjs.git
cd phantomjs
git checkout 1.9
edit [remote "origin"] part in .git/config
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = https://github.com/ariya/phantomjs.git
fetch = +refs/pull/*/head:refs/remotes/origin/pr/*
git fetch
git merge pr/359
./build.sh