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

Fred Weinhaus <[email protected]> Thu, 14 Apr 2011 14:32:57 -0700
Newsgroups gmane.comp.video.image-magick.user
Message-ID <p06240802c9cd15b9c362@[192.168.1.2]>
try

convert -density 400 -units pixelsperinch image.pdf +adjoin image.tif

see http://www.imagemagick.org/script/command-line-options.php#adjoin
http://www.imagemagick.org/Usage/formats/#ps
http://www.imagemagick.org/Usage/files/#delegate_postscript

You need to have ghostscript installed also and I think the proper 
ghostscript device to handle multipage pdfs (though I am not an 
expert on the latter so cannot say which one). But you can edit the 
delegates.xml file to set the device.


>I want to convert a pdf into multiple tifs (each pdf page per tif)
>with given resolution (say 400 dpi). I've tried a few command line
>arguments. But I can't get the correct ones. Could you let me know how
>to do this task with convert? Thanks!