我正在使用printheaderfooter.js使用Phantomjs 1.9.7从html生成PDF。 我想在标题中显示图像。
var PhantomJSPrinting = {
header: {
height: "1cm",
contents: function(pageNum, numPages) {
return '<img src="https://www.google.com.bo/images/srpr/logo4w.png" height="0.95cm"/>';
}
} };
但是,用空白标题生成PDF。标题中没有显示图像。
在标题中显示图像的任何解决方案?
答案 0 :(得分:0)
高度属性似乎不起作用。
改为使用CSS样式属性。
return '<img src="https://www.google.com.bo/images/srpr/logo4w.png" style="height:0.95cm" />';