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?
Apply red channel to all channels
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: Apply red channel to all channels
Something like this:
Code: Select all
convert in.exr -channel R -separate +channel -duplicate 2 -combine -set colorspace sRGB out.tga
snibgo's IM pages: im.snibgo.com
Re: Apply red channel to all channels
Hey thanks.. works like a charm !!