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
Converting Multi-page PDF to several TIFF files
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: Converting Multi-page PDF to several TIFF files
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
-
- Posts: 1015
- Joined: 2005-03-21T21:16:57-07:00
Re: Converting Multi-page PDF to several TIFF files
That should be:convert image.pdf image_%0d.tiff
to add leading zeros
Code: Select all
convert image.pdf image_%02d.tiff
Pete
Re: Converting Multi-page PDF to several TIFF files
Thanks a lot for quick responses guys.
It works perfectly.
Thanks again,
Thiago
It works perfectly.
Thanks again,
Thiago