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?".
convert 1.png 2.png -channel r -fx "v.r" -channel g -fx "v.g" -channel b -fx "v.b" 3.png
is not looks like 2.png?
In "3.png" red channel - red channel of "2.png", but
In "3.png" green and blue channel - green and blue channel channel of "1.png"!
Please help.Thanks.
I am not sure -fx is channel sensitive (-channel). Operations on the channels is done with the suffix .r, .g, .b on u or v. So I suspect that -channel can be removed.