-1

ghoshscript を使用して pdf を画像に変換しようとしています。

PDF は次のとおりです。http://www.coppernet.zm/MPLS.pdf

$ sudo docsplit images -o /tmp/previews -p 1-5 -s 150,750,1000 -f png MPLS.pdf 
While reading gs_cidfm.ps:
Error: /rangecheck in --.dicttomark--
Operand stack:
   (gs_cidfm.ps)   1   --nostringval--   1   Arial   --dict:4/4(G)--
Execution stack:
   %interp_exit   --nostringval--   --nostringval--   --nostringval--   %array_continue   --nostringval--   --nostringval--   --nostringval--   false   1   %stopped_push   --nostringval--   --nostringval--   --nostringval--
Dictionary stack:
   --dict:956/1123(G)--   --dict:0/20(G)--   --dict:64/200(L)--   --dict:956/1123(G)--       --dict:8/14(G)--   --dict:1/1(G)--
Current allocation mode is global
Current file position is 4622
Unrecoverable error: undefined in .uninstallpagedevice
Operand stack:
    gs_cidfm.ps  1  --nostringval--  1  Arial  --nostringval--
gm convert: "gs" "-q" "-dBATCH" "-dMaxBitmap=50000000" "-dNOPAUSE" "-sDEVICE=pnmraw" "- dTextAlphaBits=4" "-dGraphicsAlphaBits=4" "-r150x150" "-dFirstPage=1" "-dLastPage=1" " sOutputFile=/tmp/d20121211-1674-zs83qu/gme03xr0" "--" "/tmp/d20121211-1674-zs83qu/gmcjhLqq" "-c" "quit".
gm convert: Postscript delegate failed (MPLS.pdf).

私はこれを適用しようとしました: http://thomas-genin.com/ghostscript-convert-error-undefined-in-findresource/そしてそれはこのエラーを作成します。

編集:ファイルを削除する/var/lib/ghostscript/fonts/cidfmapと、エラーはなくなりました。

1 /Arial << /FileType /TrueType /Path (/usr/share/fonts/truetype/msttcorefonts/arial.ttf) /SubfontID 0 /CSI [(Artifex) (Unicode) 0] >> ;
4

1 に答える 1

1

あなたが使用している Ghostscript のバージョンはわかりません。また、Ghostscript を実行するものを使用しているため、実際に試すことができるコマンド ラインも提供されていません。

ただし、エラーの (ImageMagick?) コマンド ラインが使用されているものであると仮定して、現在のコードのコピーを使用して問題なく PDF ファイルを PNM にレンダリングしたので、これは解決されたと思われます。現在のバージョンにアップグレードします。

これで問題が解決しない場合は、http://bugs.ghostscript.comでバグ レポートを開く必要があります。そこに PDF ファイルを添付し、問題を示す Ghostscript コマンド ラインを提供してください。

于 2012-12-12T08:23:08.640 に答える