docs:pdf:tiff_workflow

This is an old revision of the document!


tiff workflow

  • requires libtiff
  • tiffsplit input.tif
  • 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
  • requires libtiff
ls -1L *.tif | while read file;do
tiff2pdf -p letter -o "${file}".pdf "${file}"
done
  • (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
  • docs/pdf/tiff_workflow.1179172670.txt.gz
  • Last modified: 2008/08/03 00:25
  • (external edit)