Can ImageMagick number output files with two digits?
You can use the following:
convert.exe -density 96 -resize 640x480 input.pdf +adjoin -alpha remove -alpha off output-%02d.jpg
The %02d
makes sure the number is zero padded to 2 digits.
You can use the following:
convert.exe -density 96 -resize 640x480 input.pdf +adjoin -alpha remove -alpha off output-%02d.jpg
The %02d
makes sure the number is zero padded to 2 digits.