html image to pdf(图片未显示) - selectpdf

时间:2017-12-11 09:20:15

标签: html vb.net 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:\Users\Stefan\Desktop\Acczone General\statements\leda.jpg"



        ' save pdf document
        doc.Save(pdfFilePath)

        ' close pdf document
        doc.Close()

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

我的HTML工作100%它只是pdf,我使用的是SelectPdf

1 个答案:

答案 0 :(得分:0)

使用以下格式:

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