So there's this new copier at work which can also scan documents. The documents it produces are in TIFF format (one per page scanned). Typically, I would want to get them into a format suitable for PDF'ing. The problem is that I hadn't figured out how to get multiple TIFF files into one file. There might be an easier way, but here goes.
- download the TIFF
- open it in the GIMP
- Convert it to greyscale (or truecolor)
- Scale it down to 25% of the original size, set the DPI to 200
- Zoom to 100%
- Save as... filename.ps (postscript)
- In the dialog box that comes up, set the image size to 8.5x11, change the X and Y offset to 0.
- Rinse and repeat for each TIFF file
- cat each file in page order to a new file (cat *.ps > new_file.ps)
- Run ps2pdf on the new_file.ps
Now if I could only use ImageMagick to manipulate the TIFF file, then I could script the whole thing.