Pechkin
我对(WkHtmlToPdf)
有一个严重的问题。
将 html 字符串转换为 pdf 次 n 次后,它将不再起作用。
有谁知道我该如何解决这个问题?
这是我的代码:
public static byte[] HtmlToPdf(string html)
{
// Create global configuration object
var gc = new GlobalConfig();
// A new instance of Margins with x-inch margins.
gc.SetMargins(new Margins(20, 20, 20, 20))
.SetPaperSize(PaperKind.A4);
var pechkin = new SimplePechkin(gc);
var configuration = new ObjectConfig();
// Generate the PDF with the given configuration
var pdfContent = pechkin.Convert(configuration, html);
pechkin.Dispose();
return pdfContent;
}
在调用者方法中:
var html = "Hi there!";
var pdf = PdfHelper.HtmlToPdf(html);
PdfHelper.DownloadAsPdfFile("MyFileName", pdf);
实际上在 n 次打印之后,程序就停止了Convert
:
var pdfContent = pechkin.Convert(configuration, html);
任何帮助将非常感激。