convert a particular page number of pdf to jpeg/png

Questions and postings pertaining to the development of ImageMagick, feature enhancements, and ImageMagick internals. ImageMagick source code and algorithms are discussed here. Usage questions which are too arcane for the normal user list should also be posted here.
Post Reply
rsanjay

convert a particular page number of pdf to jpeg/png

Post by rsanjay »

Hello friends,

I have been pondering over the possibility of specifying a particular page number of a pdf to a jpeg/png format . i have used convert and was able to create images of all pages in a pdf .

any suggestions would be appreciated along with the source of the information .

thanks
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: convert a particular page number of pdf to jpeg/png

Post by fmw42 »

convert image.pdf[3] image.jpg

will convert the 4th page

convert image.pdf[0] image.jpg

will convert the first page

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