幻影js在屏幕截图期间忽略图像为PDF

时间:2014-03-27 01:48:06

标签: phantomjs

我正在使用rasterize.js从包含文本和图像的本地html文件生成PDF文档。文本看起来很好,但在最终的PDF中忽略了图像。我将图像包含为html img标签。例如

<img src="signature.png" alt="Sign" border="0" >

1 个答案:

答案 0 :(得分:0)

尝试增加超时。示例中的默认值仅为200ms,因此请注意当这是2秒时会发生什么,例如

window.setTimeout(function () {
    page.render(output);
    phantom.exit();
}, 2000);