7

我在运行于 .NET 4.0 的 C# Web 应用程序中使用 WkhtmltoPdf 从 HTML 文件生成 PDF。一般来说,除了 HTML 文件的大小低于 250KB 时,一切正常。一旦 HTML 文件大小超过此值,运行 wkhtmltopdf.exe 的进程就会出现如下异常。在任务管理器上,我看到 wkhtmltopdf.exe 进程的内存值没有增加到超过 40,096 K 的值,我相信这就是该进程在两者之间被放弃的原因。

我们如何配置以增加外部 exe 的内存限制?有没有其他方法可以解决这个问题?

更多信息:
当我直接从命令行运行转换时,PDF 生成良好。因此,它不太可能是 WkhtmlToPdf 的问题。

错误来自本地主机。我在 DEV 服务器上尝试过相同的方法,结果相同。

编辑:

更具体的异常消息: - 对于 Process 对象的 MainModule 属性,错误显示 - {“仅部分 ReadProcessMemory 或 WriteProcessMemory 请求已完成”},NativeErrorCode 值 - 299。

例外:

> [Exception: Loading pages (1/6) [>                                    
> ] 0% [======>                                                     ]
> 10% [======>                                                     ] 11%
> [=======>                                                    ] 13%
> [=========>                                                  ] 15%
> [==========>                                                 ] 18%
> [============>                                               ] 20%
> [=============>                                              ] 22%
> [==============>                                             ] 24%
> [===============>                                            ] 26%
> [=================>                                          ] 29%
> [==================>                                         ] 31%
> [===================>                                        ] 33%
> [=====================>                                      ] 35%
> [======================>                                     ] 37%
> [========================>                                   ] 40%
> [=========================>                                  ] 42%
> [==========================>                                 ] 44%
> [============================>                               ] 47%
> [=============================>                              ] 49%
> [==============================>                             ] 51%
> [============================================================] 100%
> Counting pages (2/6)                                               
> [============================================================] Object
> 1 of 1 Resolving links (4/6)                                          
> [============================================================] Object
> 1 of 1 Loading headers and footers (5/6)                              
> Printing pages (6/6) [>                                               
> ] Preparing [=>                                                       
> ] Page 1 of 49 [==>                                                   
> ] Page 2 of 49 [===>                                                  
> ] Page 3 of 49 [====>                                                 
> ] Page 4 of 49 [======>                                               
> ] Page 5 of 49 [=======>                                              
> ] Page 6 of 49 [========>                                             
> ] Page 7 of 49 [=========>                                            
> ] Page 8 of 49 [==========>                                           
> ] Page 9 of 49 [============>                                         
> ] Page 10 of 49 [=============>                                       
> ] Page 11 of 49 [==============>                                      
> ] Page 12 of 49 [===============>                                     
> ] Page 13 of 49 [================>                                    
> ] Page 14 of 49 [==================>                                  
> ] Page 15 of 49 [===================>                                 
> ] Page 16 of 49 [====================>                                
> ] Page 17 of 49 [=====================>                               
> ] Page 18 of 49 [======================>                              
> ] Page 19 of 49 [========================>                            
> ] Page 20 of 49 [=========================>                           
> ] Page 21 of 49 [==========================>                          
> ] Page 22 of 49 [===========================>                         
> ] Page 23 of 49 [============================>                        
> ] Page 24 of 49 [==============================>                      
> ] Page 25 of 49 [===============================>                     
> ] Page 26 of 49 [=================================>                   
> ] Page 27 of 49 [==================================>                  
> ]

我使用的代码:

    var fileName = " - ";
    var wkhtmlDir = ConfigurationManager.AppSettings[Constants.AppSettings.ExportToPdfExecutablePath];
    var wkhtml = ConfigurationManager.AppSettings[Constants.AppSettings.ExportToPdfExecutablePath] + "\\wkhtmltopdf.exe";
    var p = new Process();


    string switches = "";
    switches += "--print-media-type ";
    switches += "--margin-top 10mm --margin-bottom 10mm --margin-right 5mm --margin-left 5mm ";
    switches += "--page-size A4 ";
    switches += "--disable-smart-shrinking ";

    var startInfo = new ProcessStartInfo
    {
        CreateNoWindow = true,
        FileName = wkhtml,
        Arguments = switches + " " + url + " " + fileName,
        UseShellExecute = false,
        RedirectStandardOutput = true,
        RedirectStandardError = true,
        RedirectStandardInput=true,
        WorkingDirectory=wkhtmlDir
    };

    p.StartInfo = startInfo;
    p.Start();

WkHtmlToPdf.exe 进程调试器截图:

在此处输入图像描述

4

2 回答 2

0

看看这个,看看每个进程的线程数限制是否会在这里发挥作用。这是一个很长的镜头(我不知道 IIS 对外部进程施加的任何内存限制),但请从文档中注意这一点:

因为该属性定义了可以同时执行的最大 ASP 请求数,所以该设置应保持默认值,除非您的 ASP 应用程序对外部组件进行扩展调用。在这种情况下,您可以增加 Threads Per Processor Limit 的值。这样做允许服务器创建更多线程来处理更多并发请求。

于 2012-09-11T12:13:33.107 回答
0

这就是你要找的:

http://jobobjectwrapper.codeplex.com/

我找不到与“增加”进程的内存限制有关的任何其他内容,尽管我听说有人用 来限制进程内存MaxWorkingSet,但我相信这仅适用于应用程序使用完所有它可以.

Job Object 是一个很好的起点,它们只是易于控制的过程的集合。

“使用这个库,您可以创建作业对象、创建进程并将其分配给作业、控制进程和作业限制,并注册各种与进程和作业相关的通知事件。”

这也可能有用:

调用 wkhtmltopdf 从 HTML 生成 PDF

于 2012-09-04T22:36:47.547 回答