Bulk process of mogrify command
Posted: 2016-07-08T05:04:42-07:00
I have a folder with these images:
test_0.png
test_1.png
test_2.png
test_3.png
test_4.png
...
This command works fine for one image.
My problem is that I need to run this command for all images, so I want a bulk process of all images in that directory without the need of specify the image.
How can I do that? thanks
test_0.png
test_1.png
test_2.png
test_3.png
test_4.png
...
This command works fine for one image.
Code: Select all
mogrify -gravity center -background white -extent 200x200 -draw 'image Dst_Over 0,0 0,0 "test_0.png"' *.png
How can I do that? thanks