私はpdfから1ページの画像生成にpdfを使うためにghostscriptを使用してきました。今私はpdfから複数のページを引っ張り、長い垂直の画像を生成する必要があります。Ghostscript Multipage PDFからPNG
私にはこれが許されていないという議論がありますか?
は、これまでのところ、私はghostscriptのを呼び出すときは、次の引数を使用しています:
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