在尝试使用GhostscriptSharp将特定的PDF转换为图像(.jpegs)时,最终会出现“ GhostscriptSharp转换错误”异常。异常不包含有关导致异常的原因的任何信息。正在使用以下代码:
var gs = new GhostscriptSettings
{
Device = GhostscriptSharp.Settings.GhostscriptDevices.jpeg,
Page = { AllPages = true },
Resolution = new Size(100, 100),
Size = { Native = GhostscriptSharp.Settings.GhostscriptPageSizes.a4 }
};
GhostscriptWrapper.GenerateOutput(pdfPath, imagePath, gs);
特定PDF并非全部例外。 关于如何克服这个想法?预先感谢!