composite

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
zemlik
Posts: 38
Joined: 2014-03-05T06:12:01-07:00
Authentication code: 6789

composite

Post by zemlik »

is there a line that will combine 2 images at different percentages, one at 25% and one at 75% ?
cheers
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: composite

Post 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
snibgo's IM pages: im.snibgo.com
zemlik
Posts: 38
Joined: 2014-03-05T06:12:01-07:00
Authentication code: 6789

Re: composite

Post by zemlik »

thanks
Post Reply