html-pdf 生成的 pdf 中缺少图像

Missing image in pdf generated by html-pdf

我正在使用 HTML-pdf 库将 HTML 页面转换为 pdf。我正在获取 pdf 的动态部分,但据报道图像丢失了。我曾尝试在我的一次性使用所有方法,但是,图像没有出现在生成的 pdf 中。我应该怎么办?下面是我的 HTML 模板:

<head>
    <title>Certificate</title>
    <!-- <link rel="stylesheet" href="../stuff/certificate.css"> -->
    <style>
        html,
body {
      height: 100%;
      width: 100%;
      }


img{
    height: 100%;
    width: 100%;
    margin:0px;
    }

    #name{
    margin-top:-420px;
    margin-left: 60px;
    }

  p{
    font-size:40px;
    color:black;
    font-weight:400;
    text-align: center;
  }
</style>
</head>
<body>
    <img src="../stuff/certificate.jpg">
    <div id="name"><p><%=name%></p></div>
</body>
</html>

我正在按照我的意愿获取名称,但是根本没有出现图像。请帮忙。与 html 相比,图像位于不同的文件夹中。

尝试使用 JS library that detect when images have been loaded.

你可以这样使用它:

<script src="https://npmcdn.com/imagesloaded@4.1/imagesloaded.pkgd.min.js"></script>

<script type="text/javascript">
  imagesLoaded(document.body, function() {
    window.print();
  });
</script>