2

我正在为 ASP.NET MVC 应用程序使用Rotativa PDF 打印从 html 内容生成 pdf。这在标准 IIS 上单独运行 MVC 应用程序时非常有用;pdf几乎立即生成。

但是,当 MVC 应用程序在 Azure 中部署为 Web 角色(在本地开发环境和 cloudapp.net 上)时,生成 pdf 打印文件最多需要 45 秒,并且似乎也无法显示内容资源(链接已损坏) . 有些事情似乎不对,不应该花那么长时间。

pdf 生成本身是使用 wkhtmltopdf 工具完成的,该工具将 html 内容转换为 PDF。wkhtmltopdf 是一个可执行文件,通过使用 Process.Start 执行,它再次被 MVC 应用程序调用。

    /// <summary>
    /// Converts given URL or HTML string to PDF.
    /// </summary>
    /// <param name="wkhtmltopdfPath">Path to wkthmltopdf.</param>
    /// <param name="switches">Switches that will be passed to wkhtmltopdf binary.</param>
    /// <param name="html">String containing HTML code that should be converted to PDF.</param>
    /// <returns>PDF as byte array.</returns>
    private static byte[] Convert(string wkhtmltopdfPath, string switches, string html)
    {
        // switches:
        //     "-q"  - silent output, only errors - no progress messages
        //     " -"  - switch output to stdout
        //     "- -" - switch input to stdin and output to stdout
        switches = "-q " + switches + " -";

        // generate PDF from given HTML string, not from URL
        if (!string.IsNullOrEmpty(html))
            switches += " -";

        var proc = new Process
                       {
                           StartInfo = new ProcessStartInfo
                                           {
                                               FileName = Path.Combine(wkhtmltopdfPath, "wkhtmltopdf.exe"),
                                               Arguments = switches,
                                               UseShellExecute = false,
                                               RedirectStandardOutput = true,
                                               RedirectStandardError = true,
                                               RedirectStandardInput = true,
                                               WorkingDirectory = wkhtmltopdfPath,
                                               CreateNoWindow = true
                                           }
                       };
        proc.Start();

        // generate PDF from given HTML string, not from URL
        if (!string.IsNullOrEmpty(html))
        {
            using (var sIn = proc.StandardInput)
            {
                sIn.WriteLine(html);
            }
        }

        var ms = new MemoryStream();
        using (var sOut = proc.StandardOutput.BaseStream)
        {
            byte[] buffer = new byte[4096];
            int read;

            while ((read = sOut.Read(buffer, 0, buffer.Length)) > 0)
            {
                ms.Write(buffer, 0, read);
            }
        }

        string error = proc.StandardError.ReadToEnd();

        if (ms.Length == 0)
        {
            throw new Exception(error);
        }

        proc.WaitForExit();

        return ms.ToArray();
    }

有没有人对可能导致问题和降低性能的原因有任何想法?

兄弟。

4

1 回答 1

3

我找到了根本原因。生成的 pdf 中损坏的 url 导致性能下降。由于负载平衡,Azure 在 URL 中包含端口号,因此我需要将 URL 转换为没有端口号的“公共”url。

于 2012-06-11T23:58:12.200 回答