Click here to Skip to main content
15,867,453 members
Articles / Multimedia / GDI+

Matrix Transformation of Images using .NET GDI+

Rate me:
Please Sign up or sign in to vote.
4.86/5 (71 votes)
1 Jul 2016CPOL4 min read 389.6K   12.7K   187   45
Use of GDI+ Matrix class to perform image transformation.

Image 1

Introduction

2D image transformation in .NET has been very much simplified by the Matrix class in the System.Drawing.Drawing2D namespace. In this article, I would like to share with the reader on the use of Matrix class for 2D image transformation.

Background

The Matrix class takes 6 elements arranged in 3 rows by 2 cols. For example, the default matrix constructed by the default constructor has value of ( 1,0,0,1,0,0 ). In matrix representation:

Sample screenshot

This is a simplification of:

Sample screenshot

The last column is always: Sample screenshot

Thus a translation transformation of movement of 3 in x-axis and 2 in the y-axis would be represented as:

Sample screenshot but internally is represented as Sample screenshot

An important thing to note is that the transformation matrix is post multiplied to the image vectors. For example, we have an image with 4 points: (1,1) ( 2,3) (5,0) (6 7). The image vectors would be represented as a 4 rows by 2 columns matrix:

Sample screenshot but internally is represented as Sample screenshot

When the transformation matrix is operated on the image matrix, the transformation matrix is multiplied on the right of the image matrix.

Sample screenshot

The last column of the resulting matrix is ignored. Thus the resulting image would have points (4,3) (5,5) (8,2) and (9,9).

A composite transformation is made up of the product of two or more matrices. Take for example, a scaling matrix with factor 2 in x-axis and 3 in y-axis.

Sample screenshot internally represented as Sample screenshot

When we have a composite transformation of a translation followed by a scaling, the scaling matrix would be multiplied to the right of the translation matrix:

Sample screenshot

Likewise, if we have a composite matrix of a scaling followed by a translation, the translation matrix would be multiplied to the right of the scaling matrix.

Multiplying to the right is also known as appending, and to the left as prepending. Matrices on the left are always operated first.

Matrix Transformation

In this article, I would focus only on the following transformations:

  • Rotation
  • Translation
  • Stretching (Scaling)
  • Flipping (Reflection)

To create a Matrix object:

C#
//This would create an identity matrix (1,0,0,1,0,0)
Matrix m=new Matrix();
VB.NET
'This would create a matrix with elements (1,0,0,1,0,0)
Dim m As New Matrix()

To initialize the values of the matrix at creation:

C#
//This would create a matrix with elements (1,2,3,4,5,6)
 Matrix m=new Matrix(1,2,3,4,5,6);
VB.NET
'This would create a matrix with elements (1,2,3,4,5,6) 
Dim m As New Matrix(1, 2, 3, 4, 5, 6) 

The Matrix class implements various methods:

  • Rotate
  • Translate
  • Scale
  • Multiply

To create a composite matrix, first create a identity matrix. Then use the above methods to append/prepend the transformation.

C#
Matrix m=new Matrix();

//move the origin to 200,200
m.Translate(200,200);
//rotate 90 deg clockwise
m.Rotate(90,MatrixOrder.Prepend);
VB.NET
Dim m As New Matrix()

'move the origin to 200,200
m.Translate(200, 200)
'rotate 90 deg clockwise
m.Rotate(90, MatrixOrder.Prepend)

In the above code, since the rotation transformation is prepended to the matrix, the rotation transformation would be performed first.

In matrix transformations, the order of operation is very important. A rotation followed by a translation is very different from a translation followed by a rotation, as illustrated below:

Sample screenshot

Using the Matrix Object

The following GDI+ objects make use of the Matrix object:

  • Graphics
  • Pen
  • GraphicsPath

Each of these has a Transform property which is a Matrix object. The default Tranform property is the identity matrix. All drawing operations that involve the Pen and Graphics objects would perform with respect to their Transform property.

Thus, for instance, if a 45 deg clockwise rotation matrix has been assigned to the Graphics object Transform property and a horizontal line is drawn, the line would be rendered with a tilt of 45 deg.

The operation of matrix transformation on a GraphicsPath is particularly interesting. When its Transform property is set, the GraphicsPath's PathPoints are changed to reflect the transformation.

One use of this behavior is to perform localized transformation on a GraphicsPath object and then use the DrawImage method to render the transformation.

C#
Graphics g=Graphics.FromImage(pictureBox1.Image);
 //..

GraphicsPath gp=new GraphicsPath();

Image imgpic=(Image)pictureBoxBase.Image.Clone();

//the coordinate of the polygon must be
//point 1 = left top corner
//point 2 = right top corner
//point 3 = right bottom corner
if(cbFlipY.CheckState ==CheckState.Checked)
 gp.AddPolygon(new Point[]{new Point(0,imgpic.Height),
               new Point(imgpic.Width,imgpic.Height),
               new Point(0,0)});
else
 gp.AddPolygon(new Point[]{new Point(0,0),
               new Point(imgpic.Width,0),
               new Point(0,imgpic.Height)});

//apply the transformation matrix on the graphical path
gp.Transform(mm1);
//get the resulting path points
PointF[] pts=gp.PathPoints;


//draw on the picturebox content of imgpic using the local transformation
//using the resulting parralleogram described by pts
g.DrawImage(imgpic,pts);
VB.NET
Dim g As Graphics = Graphics.FromImage(pictureBox1.Image)
'..

Dim gp As New GraphicsPath()

Dim imgpic As Image = DirectCast(pictureBoxBase.Image.Clone(), Image)

'the coordinate of the polygon must be
'point 1 = left top corner
'point 2 = right top corner
'point 3 = right bottom corner
If cbFlipY.CheckState = CheckState.Checked Then
	gp.AddPolygon(New Point() {New Point(0, imgpic.Height), New Point(imgpic.Width, imgpic.Height), New Point(0, 0)})
Else
	gp.AddPolygon(New Point() {New Point(0, 0), New Point(imgpic.Width, 0), New Point(0, imgpic.Height)})
End If

'apply the transformation matrix on the graphical path
gp.Transform(mm1)
'get the resulting path points
Dim pts As PointF() = gp.PathPoints


'draw on the picturebox content of imgpic using the local transformation 
'using the resulting parralleogram described by pts
g.DrawImage(imgpic, pts)

Flipping

Unfortunately, there is no flipping method for the Matrix class. However, the matrix for flipping is well known. For a flip along the x-axis, i.e., flipping the y-coordinates, the matrix is (1,0,0,-1,0,0). For flipping the x-coordinates, the matrix is (-1,0,0,1,0,0).

Using the Transformation Tester

The use of the demo program is quite intuitive. At startup, the CodeProject beloved iconic figure is loaded. The axes are based on graph-paper coordinate system. There is a check box to unflip the y-coordinates to reflect the computer coordinate system. The origin is set at (200,200) relative to the picture box.

Adjust the tracker for each of the transformation operations, and order the transformation as shown in the list box by using the + and - buttons. Click Go to start the operation.

Thanks to leppie (a reader) for his comment, I have added a new checkbox to allow the user to see real time transformation. After the Real Time checkbox is checked, all adjustments to the trackers and reordering of the transformation will cause the transformation to be performed immediately. This gives the effect of a real time update.

I have added a Region Demo checkbox. When checked, a pop up of CodeProject iconic figure will appear on the desktop. This is actually a form that takes the shape and image of the iconic figure. The transformation performed on the image is also performed on this floating figure.

Conclusion

The code is quite adequately commented. I hope that the reader would benefit from this article and the codes, and start to unlock the power of the Matrix object in .NET.

License

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


Written By
Software Developer (Senior)
Singapore Singapore
Coder. Hacker. Fixer.

Comments and Discussions

 
GeneralRe: Why Pin
Yang Kok Wah26-Dec-05 17:14
Yang Kok Wah26-Dec-05 17:14 
GeneralRe: Why Pin
Ista26-Dec-05 17:19
Ista26-Dec-05 17:19 
GeneralRe: Why Pin
Yang Kok Wah26-Dec-05 17:40
Yang Kok Wah26-Dec-05 17:40 
GeneralRe: Why Pin
Ista27-Dec-05 2:42
Ista27-Dec-05 2:42 
Questionhow to change the location of the image Pin
sobannazir29-Nov-05 11:50
sobannazir29-Nov-05 11:50 
AnswerRe: how to change the location of the image Pin
Yang Kok Wah4-Dec-05 15:08
Yang Kok Wah4-Dec-05 15:08 
Generalagain thanks Pin
fdworks7-Nov-05 21:21
fdworks7-Nov-05 21:21 
GeneralThanks. Pin
Member 166338519-Jul-05 3:28
Member 166338519-Jul-05 3:28 
GeneralRe: Thanks. Pin
Anonymous2-Aug-05 21:24
Anonymous2-Aug-05 21:24 
GeneralThank you Pin
Martin Welker19-Jun-05 22:23
Martin Welker19-Jun-05 22:23 
GeneralRe: Thank you Pin
Yang Kok Wah21-Jun-05 7:36
Yang Kok Wah21-Jun-05 7:36 
GeneralNice work Pin
m0nkeybot8-Oct-04 0:42
m0nkeybot8-Oct-04 0:42 
GeneralGreat stuff! Pin
leppie13-Sep-04 21:20
leppie13-Sep-04 21:20 
GeneralRe: Great stuff! Pin
Yang Kok Wah13-Sep-04 23:18
Yang Kok Wah13-Sep-04 23:18 
GeneralRe: Great stuff! Pin
Yang Kok Wah14-Sep-04 1:17
Yang Kok Wah14-Sep-04 1:17 

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.