Page 1 of 1

Converting Multi-page PDF to several TIFF files

Posted: 2008-10-22T09:50:46-07:00
by Thiago
Hi guys,

I was wondering if you guys could help me. I have a multipage PDF and I want to generate a TIFF per page of the original PDF. Of course the TIFF files must be an exact copy (converted) of the PDF pages.

Thanks in advance,

Thiago

Re: Converting Multi-page PDF to several TIFF files

Posted: 2008-10-22T10:23:56-07:00
by fmw42
Thiago wrote:Hi guys,

I was wondering if you guys could help me. I have a multipage PDF and I want to generate a TIFF per page of the original PDF. Of course the TIFF files must be an exact copy (converted) of the PDF pages.

Thanks in advance,

Thiago

Have you tried:

convert image.pdf image_%d.tiff

or

convert image.pdf image_%0d.tiff

to add leading zeros

Re: Converting Multi-page PDF to several TIFF files

Posted: 2008-10-22T10:32:31-07:00
by el_supremo
convert image.pdf image_%0d.tiff

to add leading zeros
That should be:

Code: Select all

convert image.pdf image_%02d.tiff
to produce, for example, a two-digit sequence number with leading zeros so that you get image_01.tiff, image_02.tiff, etc.

Pete

Re: Converting Multi-page PDF to several TIFF files

Posted: 2008-10-22T10:47:33-07:00
by Thiago
Thanks a lot for quick responses guys.

It works perfectly.

Thanks again,

Thiago