This thread asks for how to convert multi-page PDF to multi-page TIFF with Ghostscript;
However, I want to covert a multi page PDF to a number of single-page TIFFs: Each page in the PDF is expected to be converted to a single TIFF file. So the above answer does not exactly match what I need.
How can I achieve this?
I am using Windows XP.
Be sure to have a recent version of Ghostscript installed. Then you can run these commands:
and
and
The commands will generate you 3 sets of TIFF files. Each set contains singlepage TIFFs which carry names that contain an index numbers starting with
001
:If you have a lot of PDF pages per file, you can increase the number of digits/leading zeros to a higher number: use
%05d
to get a 5 digit numbering.The three different commands generate different types of TIFF:
They use a resolution of 204dpi by 196dpi (as the TIFF G4 fax standard requires).
They use a resolution of 72dpi by 72dpi.
They also use a resolution of 72dpi.
All the resolution values for the TIFF files result from Ghostscript's default settings. If you want to override these, for example because you require 600dpi by 600dpi, just add
to any of the above command lines.