Hi, On Sun, Mar 02, 2003 at 11:51:30PM +0800, Stephen Liu wrote: > I have a file of 10 pages scanned. Each page becomes a .jpg image. How > to combined them as a book. > > On Win I just scan each page of the file, stacking them together on a > desktop/platform (such as PageKeep, PaperPort, etc.) to become a > complete file and then print the file in .pdf format. That is all. > > Kindly advise how to make it on Linux environment.
Probably there are gui tools for that but I never used them. Here is a command line solution: convert image1.jpg image2.jpg [...] book.pdf convert is a very flexible tool for converting and manipulating images. It's part of the ImageMagick package. Bye, Henning