PDF到图像的转换-GhostscriptSharp转换错误

时间:2018-10-04 13:57:37

标签: ghostscript.net

在尝试使用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并非全部例外。 关于如何克服这个想法?预先感谢!

0 个答案:

没有答案