is there a line that will combine 2 images at different percentages, one at 25% and one at 75% ?
cheers
composite
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: composite
Perhaps you want to blend them.
See http://www.imagemagick.org/Usage/compose/#blend
Code: Select all
convert in1.png in2.png -compose Blend -define compose:args=25 -composite out.png
snibgo's IM pages: im.snibgo.com
Re: composite
thanks