Pdf to tiff CCITT T.6

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
Fabry
Posts: 1
Joined: 2017-12-01T14:38:16-07:00
Authentication code: 1152

Pdf to tiff CCITT T.6

Post by Fabry »

Dear all,
How can i convert a pdf file to a tiff CCITT T.6 format?
I need these specification:

Bit depth 1
Compression CCITT T.6
Resolution unit 2

version IM 7.0.7
Thank you all

Fabrizio
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Pdf to tiff CCITT T.6

Post by fmw42 »

CCITT T.6 compression is Group 4. And unit 2 is pixels per inch.

So try

Code: Select all

magic -density XX -units pixelsperinch  image.pdf -compress Group 4 image.tif
Choose your desired XX value such as 300 to get the output tiff size that you want.
Post Reply