Page 1 of 1

converting specific page of pdf to jpg

Posted: 2010-04-18T23:48:43-07:00
by manit
I am aware of some features in conversion from pdf to jpg like
-density 400 will make 400 pixel per inch for good resolution
Out file can be told output%04d.jpg which means that numbered from 0000,0001,,,so on for each page.

My question is if I want to convert only a particular page from big page pdf to jpg.
What do i do ?

Re: converting specific page of pdf to jpg

Posted: 2010-04-19T11:17:35-07:00
by fmw42
convert image.pdf[#] image.jpg

where # is the page number (first page starts at 0)

see http://www.imagemagick.org/Usage/basics/#sequence

Thank you fmw42 .It works well

Posted: 2010-04-29T21:32:03-07:00
by manit
Experienced users of imagemagick have helped a lot.