Konvertieren Sie das Wort in das Djvu-Dateiformat?

1380
kvizii

Ich möchte Word-Dokumente in das djvu-Format konvertieren, aber ich kann keine Software finden, die dies kann. Kann mir jemand einen Online-Konverter oder eine Software empfehlen, die das kann? Ich brauche das wirklich, weil ich es für die Schule brauche.

Danke im Voraus.

ps Ich habe bemerkt, dass es die gleiche Frage gibt, aber der Link für den Download ist defekt.

0

1 Antwort auf die Frage

1
Pincopallino

With Word it is easy to save the file to PDF. Since Office 2010, Word has a built-in Save as PDF function, for version 2007 you can download a plugin from Microsoft website for free. With older versions, you can install one of the various free PDF printers that you can find online.

Once you have the PDF file, there are many programs that convert from PDF to DJVU. For example, the command line tool pdf2djvu available for download here. If you prefer a graphical interface, you can use PDF to DJVU GUI.

EDIT How to use pdf2djvu from the command line

First, download the zip file containing the program files and extract them to some folder. Take note of the path where you extracted them to. Open a command prompt and navigate to the folder where you extracted the files using the command (I use an example path, which you must replace with your specific path)

cd C:\pdf2djvu-0.7.14 

Now use the following command

pdf2djvu.exe pdf_file_path.pdf -o outputfile.djvu 

where pdf_file_path.pdf is the complete path to the PDF file (e.g. "C:\Users\John Doe\Documents\pdf_file.pdf", double quotes if your path includes spaces) and outputfile.djvu is the output file. If you don't specify a path then the file will be created in the program folder. The program will report its progress.

Notice that you can set options for the djvu file such as resolution, page size etc.

If you have a large number of files to convert we can work on an automated script.

Ist dieses Programm mit Windows 7 kompatibel? Ich habe es unter Windows 7 versucht, aber die Konvertierung war nicht erfolgreich. kvizii vor 11 Jahren 0
@ZlateWay, wie war es nicht erfolgreich? Wurde die Datei überhaupt erstellt oder ist ein Fehler aufgetreten? Adam vor 11 Jahren 0
@Pincopallino Die Datei wird generiert, aber ich kann sie nicht im selben Verzeichnis wie das PDF finden, das ich konvertieren möchte. Das Konsolenfenster erscheint und verschwindet nach wenigen Augenblicken. Ich weiß nicht, was das Problem ist. Ich habe die Kompatibilität geändert und versucht, das Programm als Administrator auszuführen, aber kein Glück. kvizii vor 11 Jahren 0
@ZlateWay welches Programm? "pdf2djvu"? Sie müssen es von einer Konsole aus starten und nicht durch Doppelklicken auf die ausführbare Datei. Weitere Informationen zu den Argumenten finden Sie auf der Handbuchseite https://code.google.com/p/pdf2djvu/wiki/ManualPage. Pincopallino vor 11 Jahren 0
@Pincopallino Kannst du die Schritte dafür schreiben? Ich habe die mit der grafischen Benutzeroberfläche geöffnet, aber kein Glück. kvizii vor 11 Jahren 0
@ZlateWay Ich habe die Frage mit den Anweisungen für die Befehlszeilenversion bearbeitet. Es mag komplexer erscheinen, aber meiner Meinung nach ist es besser. Wenn Sie viele Dateien konvertieren müssen, kann ich Ihnen mit einem Skript helfen, das die Dinge ein wenig automatisiert. Pincopallino vor 11 Jahren 0