I was looking at a way to convert a CMYK composite TIFF to a PDF. I
thought about using SIPS but that doesn't save out as PDF. What is
the best way anybody has found to make a PDF file from a TIFF? Has
anybody tried doing this?
In addition to the excellent suggestions you've got already, you may
want to use Smile (free version.) A script for Smile would be:
set (a,b,c,d) to imagefile bounds thetiff
set w to make new graphic window with properties {pagewidth: c, pageheight: d}
beginfigure(w)
drawimage ( thetiff , (0,0) , "" )
endfigure()
save w in file thepdf