Making a PDF from scanned B/W pages
First, scan the pages at 300 dpi. Save the scanned images in pnm format. Convert them to a multipage tiff file with ImageMagick:
convert -adjoin -density 300x300 -colors 2 `ls *.pnm` output.tiff
Convert the tiff
file to pdf format:
tiff2pdf -r300 -o output.pdf output.tiff
For comments, please send me an e-mail.
Related articles
- PDF tricks
- Adding text or graphics to a PDF file (again)
- Adding an overlay to each page of a pdf file
- Adding text or graphics to a PDF file
- Converting PostScript and PDF images to SVG format