Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
docs:pdf:tiff_workflow [2013/07/31 16:42] – [convert pdf to tif] billh | docs:pdf:tiff_workflow [2014/03/03 11:29] (current) – [convert pdf to tif] billh | ||
---|---|---|---|
Line 17: | Line 17: | ||
# monochrome, small size, similar to multi page tiff (fax) sheets | # monochrome, small size, similar to multi page tiff (fax) sheets | ||
convert -density 300 -units PixelsPerInch -page letter -monochrome -compress Group4 SN-085.pdf SN-085.tif | convert -density 300 -units PixelsPerInch -page letter -monochrome -compress Group4 SN-085.pdf SN-085.tif | ||
+ | |||
+ | # convert color pdf from Illustrator to small grayscale 8 bit tif w/small file size, adjusting contrast to make it darker | ||
+ | convert.exe -density 200 -units PixelsPerInch -page letter -colorspace gray -compress lzw -alpha off -depth 8 -contrast-stretch .15%x60% input.pdf output.tif | ||
</ | </ | ||