Where is CopyOpacityCompositeOp composite operator?
Posted: 2017-04-28T06:45:43-07:00
I have been using ImageMagick 7.0.5-5 Q16 x86_64 2017-04-26 http://www.imagemagick.org.
I think in previous version there is a CopyOpacityCompositeOp CompositeOperator present. But now in the latest version it's not there. check out this link. https://www.imagemagick.org/api/MagickC ... 2375b987fb
So I want to know that, is there any alternate option for this?
I think in previous version there is a CopyOpacityCompositeOp CompositeOperator present. But now in the latest version it's not there. check out this link. https://www.imagemagick.org/api/MagickC ... 2375b987fb
Code: Select all
// This is for version 7, it gives an error because the 3rd argument is not present.
MagickCompositeImage(wand2, wand0, CopyOpacityCompositeOp, MagickFalse, 0, 0);
// In the older version it works
MagickCompositeImage(wand2,wand0,CopyOpacityCompositeOp,0,0);