Page 1 of 1

Apply red channel to all channels

Posted: 2016-09-26T03:32:48-07:00
by jojizaidi
Hey guys,

So I have this exr image which has information only in the red channel. I want to create a png/tga from it but would like the Green and Blue channel to have the same information as in the Red channel.

Any thoughts?

Re: Apply red channel to all channels

Posted: 2016-09-26T05:12:15-07:00
by snibgo
Something like this:

Code: Select all

convert in.exr -channel R -separate +channel -duplicate 2 -combine -set colorspace sRGB out.tga

Re: Apply red channel to all channels

Posted: 2016-10-03T04:38:02-07:00
by jojizaidi
Hey thanks.. works like a charm !!