If I convert a PDF with more then 11 pages, the outputfiles generated are like the following:
convert input.pdf output.jpg
output-0.jpg
output-1.jpg
output-2.jpg
..
output-10.jpg
How can I add a leading "0" by the first 10 pages in the Outputfile. I like to have the output like this:
output-00.jpg
output-01.jpg
output-02.jpg
..
output-10.jpg
And is it possible to start with output-01.jpg instead of output-01.jpg?
Thanks for the help!
convert pdf (over 11 pages) to jpg -> outputfile numbering
-
- Posts: 1
- Joined: 2012-11-13T07:47:37-07:00
- Authentication code: 6789
Re: convert pdf (over 11 pages) to jpg -> outputfile numberi
Code: Select all
convert input.pdf output-%02d.jpg
- whugemann
- Posts: 289
- Joined: 2011-03-28T07:11:31-07:00
- Authentication code: 8675308
- Location: Münster, Germany 52°N,7.6°E
Re: convert pdf (over 11 pages) to jpg -> outputfile numberi
Add the optionAnd is it possible to start with output-01.jpg instead of output-01.jpg?
-scene 1
to the command line.
Wolfgang Hugemann