photoshop-scripting-python
photoshop-scripting-python copied to clipboard
Issue changing blue channel of the document to white. Little documentation on channels.
There is a .color method I used here
doc = ps.active_document
doc.channels.getByName('Blue').color
but you cannot set the value of color, cannot call it as a function, it takes no parameters. So, how would you target the blue channel to fill it with a color?