TIFF to PDF

Sometimes I might have a ton of multipage tiff's that need to all be in pdf format.
So I just came up with a quick perl script to take advantage of the tiff2ps and ps2pdf linux command line apps.

tiff2pdf

1. Paste the above into /usr/bin/tiff2pdf.
2. chmod 755 /usr/bin/tiff2pdf
3. cd /location/of/tiff/files
4. tiff2pdf flip.tif flop.tif flap.tif
5. will output flip.pdf flop.pdf flap.pdf

I don't ever need to combine multiple tiff's into one pdf, so i just stick with this. It would be very easy to modify this to allow a switch to convert all input into 1 output file.

That's all folks!
- raven at netpimpz dot com.