Datei-Konvertierung:djvu-pdf ed

geklaut von

http://www.shaftek.org/blog/2007/07/25/converting-from-djvu-to-pdf/

Here is the software that is needed for the conversion to take place:1. DjVuLibre .2. LibTiff .

If you are running Windows, then you will need Cygwin and a Cygwin version of DjVuLibre. The compiled Windows version does not include TIFF support (although you can get this package from a site in Russia which included the TIFF support). LibTiff comes in a native Windows version.

Here are the conversion steps:1. Convert DjVu file to TIFF using ddjvu.2. Convert TIFF to PDF using tiff2pdf.

Assuming the input DJVU file is called “input.djvu” here are the steps:

djvu -verbose -format=tif input.djvu output.tif
tiff2pdf output.tif -o output.pdf

new via ps ed

djvups input.djvu temp.ps
ps2pdf temp.ps output.pdf