我目前正在开发托管在 Azure 服务结构中的打印服务(一种将取代 Web 和辅助角色的新产品)。我使用 wkhtmltopdf 和 NReco.PDFGenerator.LT 作为其包装器,它在本地开发集群中运行良好,但在联机时失败。
我得到的唯一例外是Exception thrown: 'System.Exception' in NReco.PdfGenerator.LT.dll
我发现很难调试,因为它不能说明什么是失败的。
读到这篇我想集群上可能缺少一些东西,但是本地环境应该是在线环境的副本。此外,在切换到 wkhtmltopdf 之前,我在同一集群中使用了带有 NReco 包装器的 phantomjs,它是在线和本地工作,我相信他们都使用相同的核心引擎(尽管不同的分叉)?
这是我的代码,在远程调试中,我检查了许可证、.exe 路径和文件是否具有正确的值。
[HttpGet]
public ActionResult Get(string target)
{
var wktohtmlPath = Path.Combine(_hostingEnvironment.WebRootPath, "lib");
var htmlToPdf = new HtmlToPdfConverter() {
Quiet = false,
CustomWkHtmlArgs = "--print-media-type",
PdfToolPath = wktohtmlPath,
Margins = new PageMargins() { Left = 17, Right = 17, Top = 17, Bottom = 17 }
};
htmlToPdf.License.SetLicenseKey(
_optionsAccessor.Value.LicenceOwner,
_optionsAccessor.Value.LicenceKey
);
try
{
var fileBytes = htmlToPdf.GeneratePdfFromFile(target, null);
var fileStream = new MemoryStream(fileBytes);
return new FileStreamResult(fileStream, "application/pdf");
}
catch
{
return BadRequest();
}
}
感谢您的回答