Create images for first page of several pdf files
Posted: 2011-12-20T01:26:19-07:00
Hello,
I need to create images for the first page of several pdf files.
I'm able to do it for one pdf with the following command :
But I can't find how to deal with a lot of pdf. I've tried
but it doesn't work.
How could I specify the [0] option (for first page only) for all files ?
Thank you for your help.
Arnaud
I need to create images for the first page of several pdf files.
I'm able to do it for one pdf with the following command :
Code: Select all
convert -density 708x708 -resize 500 source.pdf[0] destination.png
Code: Select all
convert -density 708x708 -resize 500 -format png *.pdf[0]
How could I specify the [0] option (for first page only) for all files ?
Thank you for your help.
Arnaud