This is an old revision of the document!
tiff workflow
convert pdf to tif
- requires imagemagick command line tools
- convert -density 150 SN-085.pdf SN-085.tif
- density defines resolution of output image
split multi-page tiff into individual files
- requires libtiff
- tiffsplit input.tif
edit tiff pages
- edit individual files (each page should be a file) as necessary using any graphics program, such as photoshop
- since individual tiff files are not the final work product, it would be best to not use compression, since some tools do not work well with certain compression schemes
convert tif to pdf
- requires libtiff
ls -1L *.tif | while read file;do tiff2pdf -p letter -o "${file}".pdf "${file}" done
combine multiple tif files
- requires imagemagick command line tools
- convert -adjoin x*.tif output.tif
combine multiple pdf files
- (requires libtiff) tiffcp -c lzw x*.tif output2.tif
- this example uses the -c flag, which is set to lzw compression for much smaller files
- (requires pdftk) pdftk *.pdf cat output combined.pdf
- this example does not include compression, so with uncompressed tif images, the file size is very large