Convert from PDF to a TIF (Single file)

The command line below specifies the input (/S) and output (/T) files. It also converts all pages (/1 *) and uses 200 DPI Resolution (/5 200). Lastly, the /V switch is used  to give on-screen confirmation of how the conversion went.

 

ConvertPDFToImage.exe   /S "C:\Input\Coffee.pdf"    /T "C:\Output\Cream.TIF"   /1 *   /5 200   /V

Because /8 wasn't specified, a tif file will be created for each page in the pdf. This switch is explained below:

/8{TiffConvertToSingleFile }

If you are converting multiple pages in a PDF file to a TIFF, you can have a single file output or multiple file output. Use:

/8 1 to create a single file or

/8 0 to create multiple output files (default).

Not specifying this switch will result in multiple TIF files being created.

See Also:

  Command Line Examples

  All Command Line Switches