HTML图像到PDF(未显示图像)-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:UsersStefanDesktopAcczone Generalstatementsleda.jpg"

        ' save pdf document
        doc.Save(pdfFilePath)
        ' close pdf document
        doc.Close()

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

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

使用此格式:

Dim imgFile As String = "file:///C:UsersStefanDesktopAcczone Generalstatementsleda.jpg"

相关内容

  • 没有找到相关文章

最新更新