Como posso converter um arquivo PDF / djvu para PNGs no Linux?

2

O Imagemagick não funciona (Fedora 14) em um arquivo PDF:

$ convert -density 300 INPUT.PDF out.png
Error: /ioerror in --showpage--
Operand stack:
   1   true
Execution stack:
   %interp_exit   .runexec2   --nostringval--   --nostringval--   --nostringval--   2   %stopped_push   --nostringval--   --nostringval--   --nostringval--   false   1   %stopped_push   1878   1   3   %oparray_pop   1877   1   3   %oparray_pop   1861   1   3   %oparray_pop   --nostringval--   --nostringval--   141   1   319   --nostringval--   %for_pos_int_continue   --nostringval--   --nostringval--   1761   0   9   %oparray_pop   --nostringval--   --nostringval--
Dictionary stack:
   --dict:1157/1684(ro)(G)--   --dict:1/20(G)--   --dict:75/200(L)--   --dict:75/200(L)--   --dict:108/127(ro)(G)--   --dict:288/300(ro)(G)--   --dict:22/25(L)--   --dict:6/8(L)--   --dict:22/40(L)--
Current allocation mode is local
Last OS error: 27
GPL Ghostscript 8.71: Unrecoverable error, exit code 1
convert: Postscript delegate failed 'INPUT.PDF':  @ error/pdf.c/ReadPDFImage/645.
convert: missing an image filename 'out.png' @ error/convert.c/ConvertImageCommand/2953.
$ 

Não funciona em um arquivo djvu:

$ convert -density 300 INPUT.DJVU out.png
convert: no decode delegate for this image format 'INPUT.DJVU' @ error/constitute.c/ReadImage/532.
convert: missing an image filename 'out.png' @ error/convert.c/ConvertImageCommand/2953.
$

Um extra: os nomes dos arquivos de saída

out-0.png
out-1.png
...
out-9.png
out-10.png
out-11.png
...
out-123.png
out-124.png

Existe uma maneira de ser assim?

out-000.png
out-001.png
...
out-009.png
out-010.png
out-011.png
...
out-123.png
out-124.png

Porque eles estariam na ordem errada:

out-0.png
out-1.png
out-10.png
out-11.png
out-123.png
out-124.png
out-9.png
    
por LanceBaynes 16.01.2011 / 19:21

1 resposta

1

O ImageMagick foi compilado sem o suporte do DJVU. Você deve recompilá-lo com a opção: --with-djvu , que você pode passar para o script ./configure .

    
por 05.04.2011 / 13:00

Tags