html 图片转 pdf(图片未显示)- selectpdf

html image to pdf (images not showing) - selectpdf

我正在使用 PdfSelect 从生成的 html 文件创建 pdf 文件,问题是图像没有显示在 pdf 上,而是在 html.

上生成
  Dim converter As New HtmlToPdf()

        ' set converter options
        converter.Options.PdfPageSize = PdfPageSize.A4
        converter.Options.PdfPageOrientation = PdfPageOrientation.Portrait
        ' create a new pdf document converting an url
        Dim doc As SelectPdf.PdfDocument = converter.ConvertUrl(htmlFilePath)

        ' get image path
        Dim imgFile As String = "C:\Users\Stefan\Desktop\Acczone General\statements\leda.jpg"



        ' save pdf document
        doc.Save(pdfFilePath)

        ' close pdf document
        doc.Close()

我尝试了一些编码,但它不起作用,有人可以帮助我,以便图像显示在 pdf 中吗?

我的 html 工作 100% 它只是 pdf,我正在使用 SelectPdf

使用这种格式:

Dim imgFile As String = "file:///C:\Users\Stefan\Desktop\Acczone General\statements\leda.jpg"