Post any defects you find in the released or beta versions of the ImageMagick software here. Include the ImageMagick version, OS, and any command-line required to reproduce the problem. Got a patch for a bug? Post it here.
I'm using composite with a B/W mask to compose two images.
On Mac I've got version 7.0.7-1 Q16 x86_64 2017-09-10. On Linux 6.7.7-10 2017-07-31 Q16.
First I've discovered it doesn't work as described in documentation on Mac, then I've checked on Linux and there it works fine.
smotesko wrote: ↑2017-09-20T04:13:00-07:00First I've discovered it doesn't work as described in documentation on Mac, then I've checked on Linux and there it works fine.
I would suggest you start using the convert .... -composite syntax rather than composite. Composite is very old syntax and very limited compared to convert. See the difference in syntax at http://www.imagemagick.org/Usage/compose/#compose. The first two input images are swapped in convert syntax. So
composite -alpha set righthalf.jpg lefthalf.jpg mask.gif Mac.jpg
fmw42 wrote: ↑2017-09-20T09:07:24-07:00
I would suggest you start using the convert .... -composite syntax rather than composite. Composite is very old syntax and very limited compared to convert. See the difference in syntax at http://www.imagemagick.org/Usage/compose/#compose. The first two input images are swapped in convert syntax. So