나는 pdf에서 한 페이지의 이미지 생성에 pdf를하기 위해 ghostscript를 사용 해왔다. 이제는 pdf에서 여러 페이지를 가져 와서 긴 세로 이미지를 생성 할 수 있어야합니다.Ghostscript Multipage PDF to PNG
내가 허용하지 않는 인수가 있습니까?
지금까지 내가 고스트 스크립트를 호출 할 때 다음 인수를 사용하고 있습니다 :
string[] args ={
"-q",
"-dQUIET",
"-dPARANOIDSAFER", // Run this command in safe mode
"-dBATCH", // Keep gs from going into interactive mode
"-dNOPAUSE", // Do not prompt and pause for each page
"-dNOPROMPT", // Disable prompts for user interaction
"-dFirstPage="+start,
"-dLastPage="+stop,
"-sDEVICE=png16m",
"-dTextAlphaBits=4",
"-dGraphicsAlphaBits=4",
"-r300x300",
// Set the input and output files
String.Format("-sOutputFile={0}", tempFile),
originalPdfFile
};
위의 C#처럼 높은 수준의 코드로 연결하지 않고도 스크립트/bash 수준에서 할 수 있습니까? – Supra
@Supra'man gs'는'-sOutputFile ='과'% d'을 사용하여 각 페이지를 개별적으로 인쇄하는 섹션을 가지고 있습니다 – dat