ubuntu下如何使用djvu檔案
阿新 • • 發佈:2018-11-28
收藏於 2012-03-18
創建於個人的百度空間
-------------------------------
DjVu是由AT&T實驗室自1996年起開發的一種影象壓縮技術,已發展成為標準的影象文件格式之一。國際上大量應用例項已證明,DjVu可替代PDF成為網路傳輸掃描文件、數碼照片、影象檔案的主流技術。
將djvu檔案轉換為pdf格式檔案,參考了論壇裡一老外的方法http://ubuntuforums.org/showthread.php?t=1232038
Step - 1: Install
- djvulibre-bin
- libdjvulibre21
- okular-extra-backends
- evince
- libevdocument1
- libevview1
Step - 2 : Goto terminal and write
sudo apt-get install libtiff-tools
Step - 3: Goto the directory where the djvu file is present. Click the right mouse button. Goto “Open In Terminal” option. Click on it. A terminal will open.
Step - 4: In that terminal write
ddjvu -format=tiff file_name.djvu file_name.tiff
tiff2pdf -j -o file_name.pdf file_name.tiff
The djvu to pdf conversion is done.