我正在使用rasterize.js从包含文本和图像的本地html文件生成PDF文档。文本看起来很好,但在最终的PDF中忽略了图像。我将图像包含为html img标签。例如
<img src="signature.png" alt="Sign" border="0" >
答案 0 :(得分:0)
尝试增加超时。示例中的默认值仅为200ms,因此请注意当这是2秒时会发生什么,例如
window.setTimeout(function () {
page.render(output);
phantom.exit();
}, 2000);