pdfページを半分に分割できません。 通常、私は毎月100種類以上のpdfを作成しています。しかし、私はエラーを出すものを見つけました。Ghostscript - エラー:再帰/ SMask属性を無視して、出力が正しくない可能性があります。
抽出PDF-ページ:私の現在のPDFで195.pdf
、それは195ページにあり、私はそのページを抽出しました:
gs -o 195.pdf -dFirstPage=195 -dLastPage=195 -sDEVICE=pdfwrite -dAutoRotatePages=/None original_file.pdf
このPDF(195.pdf)はPAGE-サイズ:だから
3152.13 x 612.28 pts
私が使用してそれを半分に分割する:
gs -o left_sections.pdf -sDEVICE=pdfwrite -dAutoRotatePages=/None -g15760x6122 -c "<</PageOffset [0 0]>> setpagedevice" -f 195.pdf
そして、これは次のエラーを生成します。
Page 1
**** Error: ignoring recursive /SMask attribute.
Output may be incorrect.
**** Error: ignoring recursive /SMask attribute.
Output may be incorrect.
**** Error: ignoring recursive /SMask attribute.
Output may be incorrect.
**** Error: ignoring recursive /SMask attribute.
Output may be incorrect.
**** This file had errors that were repaired or ignored.
**** The file was produced by:
**** >>>> GPL Ghostscript 9.19 <<<<
**** Please notify the author of the software that produced this
**** file that it does not conform to Adobe's published PDF
**** specification.
**** The rendered output from this file may be incorrect.
私は視覚的に元に作成したleft_sections.pdfで見ることができる唯一の違いは、トップ&右下の隅にある小さな横縞です。
はghostscriptの私のバージョンでは、これを引き起こす可能性がありますか、これを解決する方法を何9.19
任意のアイデアですか?
よろしく ニクラスRådström