overlay many pngs
Posted: 2017-08-23T18:17:27-07:00
Hi experts!
I have a script which creates pngs that i want to overlay.
With two pngs this works fine:
No problem at all!
BUT
The problem is that with many pngs it doesnt work e.g. :
will only overlay the first 2 pngs.
Idealy I want something like:
to work, because some files e.g. lay_1.png and lay_3.png might be missing
How can it be done??
I have a script which creates pngs that i want to overlay.
With two pngs this works fine:
Code: Select all
convert -composite -compose Multiply lay_3.png lay_4.png out.png
BUT
The problem is that with many pngs it doesnt work e.g. :
Code: Select all
convert -composite -compose Multiply lay_1.png lay_2.png lay_3.png lay_4.png out.png
Idealy I want something like:
Code: Select all
convert -composite -compose Multiply lay_*.png out.png
How can it be done??