Search found 2 matches

by phaethon100
2017-08-24T01:29:22-07:00
Forum: Users
Topic: overlay many pngs
Replies: 2
Views: 2409

Re: overlay many pngs

Thank you for your reply and time.

Your solution gave me a blank page, but somehow inspired me to find a solution doing:

Code: Select all

convert  lay_*.png  -compose multiply   -repage 1200x1200-1-1 -flatten out2.png
which for my case worked fine.

Cheers!
by phaethon100
2017-08-23T18:17:27-07:00
Forum: Users
Topic: overlay many pngs
Replies: 2
Views: 2409

overlay many pngs

Hi experts! I have a script which creates pngs that i want to overlay. With two pngs this works fine: convert -composite -compose Multiply lay_3.png lay_4.png out.png No problem at all! BUT The problem is that with many pngs it doesnt work e.g. : convert -composite -compose Multiply lay_1.png lay_2 ...