convert serveral image files to a single djvu file

3

4

Suppose I have serveral BMP image file, say 001.bmp, 002.bmp,..., 100.bmp. I want to convert these files to a single djvu file, whose first page is the content of 001.bmp, the second page is the content of 002.bmp...etc.

What is the best way (software) to do this task? I don't want to upload those image file to a server, since it takes too much time. On the other hand, I am not restricted to use BMP files, I can also work with PNG or JPG files.

user565739

Posted 2012-12-15T15:43:18.810

Reputation: 473

Answers

6

Assuming you are on Linux. Install the djvulibre packages (in Debian/Ubuntu djvulibre-bin), cd to the path where you have your images and run the following:

for x in *.jpg; do c44 -dpi 300 $x; done
djvm -c ../result.djvu *.djvu
ddjvu -format=pdf myfile.djvu myfile.pdf

Source: http://www.vitki.net/book/page/converting-jpeg-scans-or-djvu-files-pdf Another useful source: http://commons.wikimedia.org/wiki/Help:Creating_a_DjVu_file

On Windows you can either use cygwin and follow these steps or use any of the several available GUI tools. The latter option won't give you the same speed though, as it can't be scripted.

balkian

Posted 2012-12-15T15:43:18.810

Reputation: 684

Note: you may want to add -percent 100 or similar option after -dpi 300, otherwise image quality in the resulting DJVU (and thus PDF) file may be quite bad. – Ruslan – 2018-11-18T15:15:00.163

2

For color pages:

pages=pg1.djvu
c44 -dpi 300 pg1.jpg pg1.djvu

For black/white:

for (( i = 2; i <= $N; i++ )); do
  echo $i
  convert pg$i.jpg pg$i.pbm
  cjb2 pg$i.pbm pg$i.djvu
  pages="$pages pg$i.djvu"
done

Join all pages:

djvm -c book.djvu  $pages

gavenkoa

Posted 2012-12-15T15:43:18.810

Reputation: 1 386

Since c44 takes jpg's why do you suggest doing the conversion to pbm specifically for black and white? – Diagon – 2017-03-20T03:23:56.747

BW uses a much less memory then color. cjb2 works only with pbm files if I proper remember... – gavenkoa – 2017-03-20T08:48:32.663