Version: ImageMagick 6.8.8-0 Q16 x86_64 2013-12-26 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2014 ImageMagick Studio LLC
Features: DPC Modules
Delegates: bzlib cairo fftw fontconfig freetype gslib jbig jng jp2 jpeg lcms lqr ltdl lzma openexr png ps rsvg tiff webp x xml zlib
I am not sure if this is a bug or some limitation, but I cannot get -evaluate-sequence sum or add to produce a "correct" result when there is an alpha channel in each image.
I even tried adding -alpha on -channel rgba or -alpha on -channel rgba,sync but neither helped.
Here is what I tried:
Input:



This does not work correctly:
convert tmpR.png tmpG.png tmpB.png -evaluate-sequence sum tmpRGB1.png

This does not work correctly:
convert tmpR.png tmpG.png tmpB.png -evaluate-sequence add tmpRGB2.png

However, this alternate command works fine:
convert tmpR.png tmpG.png -compose plus -composite tmpB.png -compose plus -composite tmpRGB3.png

Is this a bug or some limitation of -evaluate-sequence sum or add?
Or am I not using the right argument?