图像显示在HTML,但不是在PDF使用WKHTMLTOPDF

本文关键字:PDF 使用 WKHTMLTOPDF 显示 HTML 图像 | 更新日期: 2023-09-27 18:10:24

我正在使用Wkhtmltopdf从Html页面使用c#, Asp.net创建PDF。PDF是顺利创建的,但是当我将图像添加到HTML时,它不会显示在PDF上。

     public static string HtmlToPdf(string pdfOutputLocation, string outputFilenamePrefix, string[] urls,
        string[] options = null,
        // string pdfHtmlToPdfExePath = "C:''Program Files (x86)''wkhtmltopdf''wkhtmltopdf.exe")
       string pdfHtmlToPdfExePath = "C:''Program Files''wkhtmltopdf''wkhtmltopdf.exe")
    {
        string urlsSeparatedBySpaces = string.Empty;
        try
        {
            //Determine inputs
            if ((urls == null) || (urls.Length == 0))
                throw new Exception("No input URLs provided for HtmlToPdf");
            else
                urlsSeparatedBySpaces = String.Join(" ", urls); //Concatenate URLs
            string outputFolder = pdfOutputLocation;
            string outputFilename = outputFilenamePrefix + "_" + DateTime.Now.ToString("yyyy-MM-dd-hh-mm-ss-fff") + ".PDF"; // assemble destination PDF file name
            var p = new System.Diagnostics.Process()
            {
                StartInfo =
                {
                    FileName = pdfHtmlToPdfExePath,
                    Arguments = ((options == null) ? "" : String.Join(" ", options)) + " " + urlsSeparatedBySpaces + " " + outputFilename,
                    UseShellExecute = false, // needs to be false in order to redirect output
                    RedirectStandardOutput = true,
                    RedirectStandardError = true,
                    RedirectStandardInput = true, // redirect all 3, as it should be all 3 or none
                    WorkingDirectory = HttpContext.Current.Server.MapPath(outputFolder),
                    CreateNoWindow = true
                }
            };
            p.Start();
            // read the output here...
            var output = p.StandardOutput.ReadToEnd();
            var errorOutput = p.StandardError.ReadToEnd();
            // ...then wait n milliseconds for exit (as after exit, it can't read the output)
            p.WaitForExit(60000);
            // read the exit code, close process
            int returnCode = p.ExitCode;
            p.Close();
            // if 0 or 2, it worked so return path of pdf
            if ((returnCode == 0) || (returnCode == 2))
                return outputFolder + outputFilename;
            else
                throw new Exception(errorOutput);
        }
        catch (Exception exc)
        {
            throw new Exception("Problem generating PDF from HTML, URLs: " + urlsSeparatedBySpaces + ", outputFilename: " + outputFilenamePrefix, exc);
        }
    }

这是我的HTML代码区域显示图像。

<div id="Image" class="right" style="background:#333;height:15%;width:25%;">
  <img id="LogoImage" runat="server" width="100%" height="100%" src="../TempLogo/chafa.jpg" />

图像显示在HTML,但不是在PDF使用WKHTMLTOPDF

我有这个问题,对我来说,"修复"是删除高度属性。

代替

<img id="Logo" runat="server" width="100%" height="100%" src="../TempLogo/chafa.jpg" />

<img id="Logo" runat="server" width="100%" src="../TempLogo/chafa.jpg" />

我没有一个解释这个行为,它可能是一个bug。

尝试添加图像src的完整路径。这通常是由于"../TempLogo/chafa.jpg"实际上不是wkhtmltopdf工作目录的正确相对URL。

所以,代替"../TempLogo/chafa.jpg"尝试"C:/yourpath/TempLogo/chafa.jpg"或"file:///C:/yourpath/TempLogo/chafa.jpg",看看是否有帮助。如果是,那么你的相对路径就是问题所在。

使用ruby的pdfkit,我发现如果我在STDIN上发送带有图像的html文件到wkhtmltopdf,图像不会呈现。(即wkhtmltopdf - toto.pdf: no images)

如果我通过手动传递一个html文件来执行完全相同的命令(wkhtmltopdf toto.html toto.html),这是有效的。

不知道为什么,但是,我只是写了一个小包装器,这样称呼它,就是这样。

我使用Views来存储我想要的每个pdf模板的HTML标记,我将模型传递给视图。使用Server.MapPath()将获得图像的完整路径。

<img src="@Server.MapPath("~/path/to/your/image.jpg")" />

我最近看到一个jpeg文件转换失败-问题是图像是灰度图像。

请注意,并非所有的灰度图像都是灰度图像-如果是这种情况,请使用irfanview等程序检查。