Search found 4 matches

by Ariel
2017-09-30T13:36:23-07:00
Forum: Users
Topic: -fx and -channel
Replies: 6
Views: 5366

Re: -fx and -channel

Code: Select all

convert 2.png +write mpr:N2 +delete 1.png mpr:N2 -channel r -fx "v.r" mpr:N2 -channel g -fx "v.g" mpr:N2 -channel b -fx "v.b" 3.png
Now works! tnx.
by Ariel
2017-09-30T13:23:42-07:00
Forum: Users
Topic: -fx and -channel
Replies: 6
Views: 5366

Re: -fx and -channel

Thank you. Unfortunately the last option works incorrectly - it sees only red channel from second image too.
by Ariel
2017-09-30T10:52:46-07:00
Forum: Users
Topic: -fx and -channel
Replies: 6
Views: 5366

Re: -fx and -channel

Thank you.
I will use:

Code: Select all

convert 1.png 2.png -channel r -fx "v.r" 2.png -channel g -fx "v.g" 2.png -channel b -fx "v.b" 3.png
Or there is a more correct solution for separate processing channels for two images?
by Ariel
2017-09-30T10:14:01-07:00
Forum: Users
Topic: -fx and -channel
Replies: 6
Views: 5366

-fx and -channel

Hello. Why result of: 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 ...