Zero padded image names
Posted: 2009-04-10T10:19:57-07:00
If I have images 1.jpg, 2.jpg ... 5.jpg, I can do this
But if I have images 001.jpg, 002.jpg ... 005.jpg, the above does not work, and the following also does not work.
Is there a way to do that? (I have more than 5 images, so 00[1-5].jpg is not the answer! haha)
Thanks,
Dave
Code: Select all
#convert [1-5].jpg +append append.jpg
Code: Select all
convert [001-005].jpg +append append.jpg
Thanks,
Dave