我正在使用 wkhtmltopdf转换将HTML转换为PDF。
我的图片代码包含来自PHP文件的src,因为我们会生成一个图表并将其显示在页面上。
我的图片标记如下所示:
img src="/PresentationLayer/GetChart.php?&type=PNG&img=bop1&id=mem1i21niqlsrha063vrbmk7t551f60c2597832"
图像以HTML格式显示,但不是PDF格式。请提供一些建议。
答案 0 :(得分:1)
建议:在src中放一个绝对图片网址,看看是不是你的pdf生成器问题还是其他什么
答案 1 :(得分:0)
我遇到了<img>
未显示的完全相同的问题。我的[相当hacky]解决方案是:
div.logo
{
background-repeat: no-repeat;
background-size: cover;
width: 171px;
}
<div class="logo" style="background-image: url('path/to/img.png')"> </div>