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?".
I get all kinds of alpha issue with the layers after i combine four commands. Ran individually they output correctly but when combined I get the issue at hand.
I am using ImageMagick 6.9.1-10 Q16 x86_64 2015-07-26 in Term2 on OSX El Capitan.
weblife wrote:I get all kinds of alpha issue with the layers after i combine four commands. Ran individually they output correctly but when combined I get the issue at hand.
Without running tests, and just from looking over the commands, I'd suspect your "-compose" operators are causing the problem. If you reset them with "+compose" after you apply each "-composite", you'll return to the default compose method. As it is you're carrying the "-compose copy_opacity" into each next part of the combined command, where with the individual commands, you're starting with a default "-compose" setting.
@sergpush Apologize for the delay in response, went away for the weekend. Thank you for your rapid response. I gave your suggestion a try and it resolved the alpha transparency issue I was having. The layers still aren't being processed correctly, but at least one problem solved.