Re: How to convert a pdf into multiple tifs (each pdf page per tif) with given resolution (say 400 dpi)?

Fred Weinhaus <[email protected]> Sun, 17 Apr 2011 10:51:10 -0700
Newsgroups gmane.comp.video.image-magick.user
Message-ID <p06240800c9d0d8894144@[192.168.1.2]>
Wolfgang is absolutely correct. I just did not want to do into that 
complication what appeared to be a relatively novice user for fear of 
getting too complex and explaining the %02d.


Fred



>convert -density 400 image.pdf +adjoin image_%02d.tif
>
>is the better option (this is how I have done it so far), as it will
>insert leading zeros to the numbering of the files and therefore
>guarantee the correct file name ordering in subsequent steps.