Rotate Hue using ImageAttributes in C# - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T01:39:59Zhttp://stackoverflow.com/feeds/question/1079820http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1079820/rotate-hue-using-imageattributes-in-c1Rotate Hue using ImageAttributes in C#SLaks2009-07-03T15:16:23Z2009-08-25T22:43:56Z
<p>How can I rotate the hue of an image using GDI+'s <code>ImageAttributes</code> (and presumably <code>ColorMatrix</code>)?</p>
<p>Note that I want to rotate the hue, not tint the image.</p>
<p><B>EDIT</B>: By rotating the hue, I mean that each color in the image should be shifted to a different color, as opposed to making the entire image a shade of one color.</p>
<p>For example,</p>
<p>Original:<img src="http://www.codeguru.com/img/legacy/gdi/Tinter03.jpg" alt="" title="" /></p>
<p>Rotated: <img src="http://www.codeguru.com/img/legacy/gdi/Tinter15.jpg" alt="" title="" /> or <img src="http://www.codeguru.com/img/legacy/gdi/Tinter17.jpg" alt="" title="" /></p>
http://stackoverflow.com/questions/1079820/rotate-hue-using-imageattributes-in-c/1079901#10799010Answer by ChrisF for Rotate Hue using ImageAttributes in C#ChrisF2009-07-03T15:42:07Z2009-07-03T16:17:08Z<p>Have you seen <a href="http://www.codeproject.com/KB/GDI-plus/colormatrix.aspx" rel="nofollow">this article</a> on CodeProject?</p>
<p>From an admittedly quick look at the page it looks like 4D maths. You can adopt a similar approach to contstructing matrices as you would for 2D or 3D maths.</p>
<p>Take a series of source "points" - in this case you'll need 4 - and the corresponding target "points" and generate a matrix. This can then be applied to any "point".</p>
<p>To do this in 2D (from memory so I could have made a complete howler in this):</p>
<p>Source points are (1, 0) and (0, 1). The targets are (0, -1) and (1,0). The matrix you need is:</p>
<pre><code>(0, -1, 0)
(1, 0, 0)
(0, 0, 1)
</code></pre>
<p>Where the extra information is for the "w" value of the coordinate.</p>
<p>Extend this up to {R, G, B, A, w} and you'll have a matrix. Take 4 colours Red (1, 0, 0, 0, w), Green (0, 1, 0, 0, w), Blue (0, 0, 1, 0, w) and Transparent (0, 0, 0, 1, w). Work out what colours they map to in the new scheme and build up your matrix as follows:</p>
<blockquote>
<p>(R<sub>1</sub>, G<sub>1</sub>, B<sub>1</sub>, A<sub>1</sub>, 0)<br>
(R<sub>2</sub>, G<sub>2</sub>, B<sub>2</sub>, A<sub>2</sub>, 0)<br>
(R<sub>3</sub>, G<sub>3</sub>, B<sub>3</sub>, A<sub>3</sub>, 0)<br>
(R<sub>4</sub>, G<sub>4</sub>, B<sub>4</sub>, A<sub>4</sub>, 0)<br>
(0, 0, 0, 0, 1)</p>
</blockquote>
<p><strong>NOTE:</strong> The order you do you mulitplication (vector * matrix or matrix * vector) will determine whether the transformed points go vertically or horizontally into this matrix, as matrix multiplication is non-commutative. I'm assuming vector * matrix.</p>
http://stackoverflow.com/questions/1079820/rotate-hue-using-imageattributes-in-c/1079913#10799130Answer by Bogdan_Ch for Rotate Hue using ImageAttributes in C#Bogdan_Ch2009-07-03T15:45:33Z2009-07-03T15:45:33Z<p>I suppose that <a href="http://www.aforgenet.com/framework/" rel="nofollow">www.aforgenet.com</a> could help</p>
http://stackoverflow.com/questions/1079820/rotate-hue-using-imageattributes-in-c/1080203#10802031Answer by Rex M for Rotate Hue using ImageAttributes in C#Rex M2009-07-03T17:12:03Z2009-07-03T17:12:03Z<p><a href="http://rexmorgan.net/journal/rotate%5Fimage%5Fhue%5Fin%5Fcnet" rel="nofollow">I threw this together</a> for this question (ZIP file with c# project linked at the bottom of the post). It does not use <code>ImageAttributes</code> or <code>ColorMatrix</code>, but it rotates the hue as you've described:</p>
<pre><code>//rotate hue for a pixel
private Color CalculateHueChange(Color oldColor, float hue)
{
HLSRGB color = new HLSRGB(
Convert.ToByte(oldColor.R),
Convert.ToByte(oldColor.G),
Convert.ToByte(oldColor.B));
float startHue = color.Hue;
color.Hue = startHue + hue;
return color.Color;
}
</code></pre>
http://stackoverflow.com/questions/1079820/rotate-hue-using-imageattributes-in-c/1331429#13314290Answer by SLaks for Rotate Hue using ImageAttributes in C#SLaks2009-08-25T22:43:56Z2009-08-25T22:43:56Z<p>I ended up porting <a href="http://www.codeguru.com/cpp/g-m/gdi/gdi/article.php/c3667" rel="nofollow">QColorMatrix</a> to C# and using its <code>RotateHue</code> method.</p>