Click here to Skip to main content
Click here to Skip to main content

ColorMatrix Basics - Simple Image Color Adjustment

By , 2 Apr 2003
 

Color Image Grayscale Image Blue Image

Introduction

This article discusses color operations on digital images, using the new ColorMatrix class provided by GDI+. The ColorMatrix is a welcome addition to the GDI library, especially with the increase in demand of digital imaging applications, as more and more consumer products are made available. This class, as well as many other new GDI classes, provide more control to the developer and reduce dependence on 3rd party applications such as LEAD tools, and others. Some basic knowledge of matrix operations (multiplication, addition, etc), the RGBA colorspace and GDI+ is assumed.

Background

ColorMatrix operations are performed in the RGBA colorspace (red, green, blue, alpha). A ColorMatrix consists of a 5x5 matrix, with color values normalized to 1 for full intensity (255 -> 1.0). You might expect the matrix to be 4x4 ( [R, G, B, A] ), which would be sufficient if we only needed to perform linear transformations (multiplication: scaling, rotation, etc). However, one of the most frequent color manipulations, color adjustment, requires adding color values. This is a non-linear operation, referred to as a translation. Adding a 5th element to the color vector ( [R, G, B, A, w] ) combines these two operations, linear and non-linear, into a single operation called an affine transformation. The 5th element of the color vector is simply a dummy element, always with a value of 1, which only serves to allow a translation (addition) of the color vector.

The example below scales the color vector [255, 128, 102, 255] by .5 and then adds a value of 26 to the R, G and B components, leaving the A component at full intensity. Remember that the component values are normalized, with full intensity, 255, equal to 1.0 (values have been rounded to the nearest tenth). Also notice the addition of the 5th element to the color vector, which is simply ignored in the resultant color vector.

This takes the color and transforms it to .

Now that we've covered the basic principle of the ColorMatrix and it's operations on color vectors, we can start exploring some practical uses.

Applying the code

Applying a ColorMatrix to an image is quite simple. You must first associate a ColorMatrix object with an ImageAttributes object. Then you simply pass the ImageAttributes object as a parameter to the Graphics.DrawImage method.

Color adjustment is one of the more common color operations applied to digital images. The code to do this might look as follows:

Public Function translate(ByVal img As Image, ByVal red As Single, _
                       ByVal green As Single, ByVal blue As Single, _
                       Optional ByVal alpha As Single = 0) As Boolean

    
    Dim sr, sg, sb, sa As Single
    
    ' noramlize the color components to 1
    sr = red / 255
    sg = green / 255
    sb = blue / 255
    sa = alpha / 255
 
    ' create the color matrix
    dim New ColorMatrix(New Single()() _
                       {New Single() {1, 0, 0, 0, 0}, _
                        New Single() {0, 1, 0, 0, 0}, _
                        New Single() {0, 0, 1, 0, 0}, _
                        New Single() {0, 0, 0, 1, 0}, _
                        New Single() {sr, sg, sb, sa, 1}})

    ' apply the matrix to the image
    Return draw_adjusted_image(img, cm)

End Function
        
                               
Private Function draw_adjusted_image(ByVal img As Image, _
                ByVal cm As ColorMatrix) As Boolean


    Try
        Dim bmp As New Bitmap(img) ' create a copy of the source image 
        Dim imgattr As New ImageAttributes()
        Dim rc As New Rectangle(0, 0, img.Width, img.Height)
        Dim g As Graphics = Graphics.FromImage(img)

        ' associate the ColorMatrix object with an ImageAttributes object
        imgattr.SetColorMatrix(cm) 

        ' draw the copy of the source image back over the original image, 
        'applying the ColorMatrix
        g.DrawImage(bmp, rc, 0, 0, img.Width, img.Height, _
                               GraphicsUnit.Pixel, imgattr)

        g.Dispose()

        Return True

    Catch
        Return False
    End Try

End Function

Conversion to grayscale is another common conversion. Grayscale values are determined by calculating the luminosity of a color, which is a weighted average of the R, G and B color components. The average is weighted according to the sensitivity of the human eye to each color component. The weights used here are as given by the NTSC (North America Television Standards Committee) and are widely accepted.

Public Function grayscale(ByVal img As Image) As Boolean


    Dim cm As ColorMatrix = New ColorMatrix(New Single()() _
                           {New Single() {0.299, 0.299, 0.299, 0, 0}, _
                            New Single() {0.587, 0.587, 0.587, 0, 0}, _
                            New Single() {0.114, 0.114, 0.114, 0, 0}, _
                            New Single() {0, 0, 0, 1, 0}, _
                            New Single() {0, 0, 0, 0, 1}})


    Return draw_adjusted_image(img, cm)
    
End Function

The code below creates a digital negative:

Public Function negative(ByVal img As Image) As Boolean

    Dim cm As ColorMatrix = New ColorMatrix(New Single()() _
                           {New Single() {-1, 0, 0, 0, 0}, _
                            New Single() {0, -1, 0, 0, 0}, _
                            New Single() {0, 0, -1, 0, 0}, _
                            New Single() {0, 0, 0, 1, 0}, _
                            New Single() {0, 0, 0, 0, 1}})

    Return draw_adjusted_image(img, cm)

End Function

Color channel separations, alpha transparency adjustment, image toning (Sepia, etc) are just a few more common operations that can be easily performed with a ColorMatrix.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Michael Combs
Architect
United States United States
Michael has been developing software for about 12 years primarily in Fortran, C/C++, Visual Basic and now .NET. His previous experience includes Internet data services (communication, data storage and mapping) for the mortgage industry, oil platform instrumentation and explosives simulation and testing. He holds a B.S. in astrophysics and computer science. He is currently working for Global Software in Oklahoma City developing law enforcement and emergency services related software.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 1memberXmen W.K.6-Jul-10 3:01 
GeneralMy vote of 4memberjoerg-schumann29-Jun-10 1:46 
GeneralI have an error "A Graphics object cannot be created from an image that has an index"memberrpiniones7-Apr-10 0:46 
Questionaspx file ? How to call in a page to see resluts ?memberAlain Van haecke9-Jul-09 3:00 
GeneralColorize Imagememberdanielku1531-May-09 9:46 
GeneralSub OffsetMatrix incorrectmemberThomas Nichols17-Mar-09 6:19 
AnswerAlpha Channel BugmemberAndy Davies27-Feb-09 22:09 
GeneralMethod for producing a "Color Match"? [modified]memberMichael Schäuble21-Sep-08 3:29 
QuestionPure Black and White [modified]memberLuca Crisi, MCP22-May-08 23:44 
AnswerRe: Pure Black and White [modified]memberLuca Crisi, MCP23-May-08 2:19 
GeneralRe: Pure Black and WhitememberAamir Mustafa9-Oct-08 17:43 
GeneralRe: Pure Black and WhitememberLuca Crisi, MCP13-Oct-08 8:27 
QuestionSaving Changed Image Formatmemberstixoffire19-Sep-07 0:16 
QuestionHow to Applymember*shona13-Aug-07 0:53 
QuestionHow to do softlight on an image?memberfreecoke12-Apr-07 6:41 
QuestionSave File [modified]memberCarlHackman11-Mar-07 13:22 
Questionabaout grayscalememberaimaniez10-Mar-07 13:22 
GeneralUnderstanding The MatrixmemberJonFrost25-Nov-06 23:32 
QuestionColoring a grayscale imagememberkspaun28-Sep-06 2:17 
AnswerRe: Coloring a grayscale imagememberthefellow3j3-Feb-07 20:32 
Questionhow to do sharpness and blur [modified]membersingam17-Jul-06 3:35 
AnswerRe: how to do sharpness and blur [modified]memberwlh21cn19-Jul-06 23:44 
GeneralStrange bug while printingmemberPugwash200410-May-06 0:23 
GeneralComplete Grayscale ClasssussAnonymous3-May-05 10:49 
QuestionHow about 256-colored picturesmemberoffslinker16-Apr-05 21:41 
AnswerRe: How about 256-colored pictures [modified]memberLuca Crisi, MCP23-May-08 2:30 
GeneralHue, Saturation and Brightness...memberAndrewVos1-Apr-05 1:30 
GeneralRe: Hue, Saturation and Brightness...memberheadspin30-Jan-06 8:45 
QuestionRe: Hue, Saturation and Brightness...membercodepunk9-Feb-06 12:29 
AnswerRe: Hue, Saturation and Brightness...memberheadspin9-Feb-06 14:11 
GeneralRe: Hue, Saturation and Brightness...memberThomas Nichols17-Mar-09 6:29 
GeneralTranslucent ExamplesussAnonymous19-Mar-05 2:20 
GeneralWhy doi get an errormemberBigBertB4-Mar-05 1:47 
GeneralRe: Why do i get an errormemberOlaf.Rabbachin19-Mar-05 7:03 
GeneralRe: Why do i get an errormemberspeqter19-Jul-07 20:29 
GeneralWow!memberK.h.e.o.p.s14-Dec-04 9:25 
GeneralYeah, fine...sussAnonymous15-Jun-04 21:31 
GeneralNegative matrix correctionmemberKonstantin Vasserman20-Nov-03 16:39 
GeneralRe: Negative matrix correctionmemberAnthony Queen24-May-06 5:37 
GeneralRe: Negative matrix correctionmemberMikeDC18-Sep-06 19:04 
GeneralSaving the new changed imagememberQaiser_Awan21-Oct-03 0:03 
GeneralRe: Saving the new changed imagememberMichael Combs21-Oct-03 4:20 
GeneralRe: Saving the new changed imagememberQaiser_Awan22-Oct-03 21:40 
GeneralRe: Saving the new changed imagememberthefellow3j3-Feb-07 20:36 
Generalavg rgb valuesmemberwiseleyb1-Jul-03 13:25 
GeneralRe: avg rgb valuesmemberMichael Combs2-Jul-03 4:50 
GeneralRe: avg rgb valuesmemberMikeDC28-Sep-06 2:38 
GeneralImage Manipulationsusstantang1215-Jun-03 18:20 
GeneralRe: Image ManipulationsussAnonymous27-Aug-03 21:34 
GeneralRe: Image ManipulationsussAnonymous13-Sep-03 5:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130617.1 | Last Updated 3 Apr 2003
Article Copyright 2003 by Michael Combs
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid