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

Wolfgang Hugemann <[email protected]> Sun, 17 Apr 2011 12:52:32 +0200
Newsgroups gmane.comp.video.image-magick.user
Message-ID <[email protected]>
> convert -density 400 -units pixelsperinch image.pdf +adjoin image.tif

I perform this conversion on a regular basis, thus I can report that you 
can skip the -units pixelsperinch option, because it's the default. I 
though didn't know about the +adjoin option, which forces output into 
separate files; thanks for that hint, Fred.

I think that

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.

Greetings from Germany
Wolfgang Hugemann