我正在使用 GhostScriptSharp 从 PDF 文档生成图像。它适用于单页,但我所追求的是让它从整个文档中生成一个图像。
这是我的代码:
GhostscriptWrapper.GenerateOutput(sourcePdfFilePath, destinationPngFilePath,
new GhostscriptSettings
{
Device = GhostscriptDevices.pngalpha,
Page = new GhostscriptPages
{
AllPages = true
},
Resolution = new Size
{
Height = 72,
Width = 72
},
Size = new GhostscriptPageSize
{
Native = GhostscriptPageSizes.a4
}
}
);