I'm having a nightmare with colour matrices. I'm using an adjustment layer in photoshop with the values Hue: -37
, Saturation: -25
which results in a nice pinky dawn colour:
I'm trying to use EaselJS
to create my matrix based on the values in my HSL adjustment layer for Rainmeter (which can only use these), so I'm generating my matrix like so:
new createjs.ColorMatrix().adjustColor(0, 0, -25, -37);
See here: http://www.createjs.com/docs/easeljs/classes/ColorMatrix.html#method_adjustColor
This results in a bright green colour as you can see:
Is there another way to generate my colour matrix? Can I convert A Photoshop adjustment layer to a colour matrix?
Could the difference in results be related to not having Colorize
checked?