0
나는 GhostScriptSharp를 사용하여 PDF 문서에서 이미지를 생성하고 있습니다. 단일 페이지에서 작동하지만 전체 문서에서 하나의 이미지가 생성되도록하는 것입니다. 당신은 '부과'또는 'N 업'을 할 필요가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
}
}
);
안녕하세요.이 상황의 문서는 1 ~ 3 페이지 길이가 될 것이므로 절대 이해할 수 없습니다. 너무 미쳤어. 나는 대안을 둘러 볼 것입니다. – Phil