Page 1 of 1

composite

Posted: 2014-03-30T04:05:59-07:00
by zemlik
is there a line that will combine 2 images at different percentages, one at 25% and one at 75% ?
cheers

Re: composite

Posted: 2014-03-30T04:23:40-07:00
by snibgo
Perhaps you want to blend them.

Code: Select all

convert in1.png in2.png -compose Blend -define compose:args=25 -composite out.png
See http://www.imagemagick.org/Usage/compose/#blend

Re: composite

Posted: 2014-03-30T04:30:33-07:00
by zemlik
thanks