Converting multipage PDF to TIFF
Converting multipage PDF to TIFF
Hello! I'm looking for the right batch command to convert ALL .pdf-files (multipage!) to .tif-files (also multipage!). All I got is a command to convert all .pdf to .tif-files but it creates single sheet files. I need to create new .tif-multipage-Files. Can somebody give me a hint please... Thanx!!!
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: Converting multipage PDF to TIFF
see mogrify at http://www.imagemagick.org/Usage/basics/#mogrify it works on a folder of images at a time. recommend that you create a second new directory to put the newly created files into, so you don't walk over you orginals until you are sure the new ones are fine.
create folder2
assume images are in folder1
cd folder1
mogrify -path /fullpathto/folder2 -format .tif *.pdf
try that.
create folder2
assume images are in folder1
cd folder1
mogrify -path /fullpathto/folder2 -format .tif *.pdf
try that.