Click here to Skip to main content
15,879,535 members
Articles / Multimedia / GDI+
Article

Draw a US Flag using C# and GDI+

Rate me:
Please Sign up or sign in to vote.
4.81/5 (20 votes)
7 Dec 2007CPOL3 min read 145.2K   1.9K   63   45
This article shows how to draw graphics objects using C# and GDI+

Introduction

Visual C# provides a powerful GDI+ class library interface that allows users to draw various graphics objects.

This article shows you how to create a US flag using C# and GDI+. The US flag contains 50 star polygons and several rectangles.

Background

Polygon is one of the most important graphics objects we are dealing with when rendering 2D and 3D graphics or processing computational geometry. Graphics.DrawPolygon method draws a polygon defined by an array of point structures. Every pair of two consecutive points in the array specifies a side of the polygon.

Here, I will show you how to create a US flag object. First we need to define the coordinates of a star. As illustrated in the following figure, suppose that the center coordinates of the star are at (xc, yc), r1 is the radius of the inner circle, and r is the radius of the outer circle. The angles a = 72 degrees and ß = 36 degrees.

Image 1

From this figure, we can easily determine the coordinates of points 0 to 9, as listed in the following table:

Points x coordinates y coordinates
0 xc yc – r
1 xc + r1 sinß yc – r1 cosß
2 xc + r sina yc – r cosa
3 xc + r1 sina yc + r1 cosa
4 xc + r sinß yc + r cosß
5 xc yc + r1
6 xc – r sinß yc + r cosß
7 xc – r1 sina yc + r1 cosa
8 xc – r sina yc – r cosa
9 xc – r1 sinß yc – r1 cosß

We first implement a DrawStar method to draw a single star polygon at the center position (xc, yc) with a size control parameter r (the radius of the outer circle, as shown in the above figure). We then add a DrawFlag method that first draws seven red strips on a white rectangle background. Note that the respect ratio of the flag is maintained by setting:

C#
float height = 10 * width / 19;

The method then draws the blue rectangle with proper size. Finally we put fifty stars on the blue rectangle uniformly by calling the DrawStar method to finish the project.

Using the Code

The US flag is really drawn by overriding the OnPaint method of the Form1 class:

C#
protected override void OnPaint(PaintEventArgs e)
{
    Graphics g = e.Graphics;
    g.SmoothingMode = SmoothingMode.AntiAlias;
    DrawFlag(g, 20, 20, this.Width - 50);
    g.Dispose();
}

Building and running this project produces the following screenshot:

Image 2

This is just for fun, perhaps even useful. This project is from the examples of the new book "Practical C# Charts and Graphics", where you can find more advanced chart and graphics programming for real-world .NET applications. For more information, please visit my website.

About the Author

Dr. Jack Xu has a Ph.D in theoretical physics. He has over 15 years programming experience in Basic, Fortran, C, C++, Matlab, and C#, specializing in numerical computation methods, algorithms, physical modeling, computer-aided design (CAD) development, graphics user interface, and 3D graphics. Currently, he is responsible for developing commercial CAD tools based on Microsoft .NET Framework.

Please read my other articles:

License

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


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralRe: More generic function for drawing a star Pin
Paul Selormey26-Mar-07 22:04
Paul Selormey26-Mar-07 22:04 
GeneralRe: More generic function for drawing a star Pin
DigitalKing26-Mar-07 21:24
DigitalKing26-Mar-07 21:24 
GeneralRe: More generic function for drawing a star Pin
Paul Selormey26-Mar-07 22:02
Paul Selormey26-Mar-07 22:02 
GeneralRe: More generic function for drawing a star Pin
Johann Gerell26-Mar-07 20:50
Johann Gerell26-Mar-07 20:50 
GeneralRe: More generic function for drawing a star Pin
Paul Selormey26-Mar-07 20:56
Paul Selormey26-Mar-07 20:56 
GeneralRe: More generic function for drawing a star Pin
DigitalKing26-Mar-07 21:15
DigitalKing26-Mar-07 21:15 
GeneralYou are missing 2 stars Pin
Gerard Nicol26-Mar-07 16:59
Gerard Nicol26-Mar-07 16:59 
GeneralRe: You are missing 2 stars Pin
Paul Selormey26-Mar-07 17:06
Paul Selormey26-Mar-07 17:06 
You mean flag of Iraq? Since the star of the current Iraqic flag is the same as the star in the USA flag.

Best regards,
Paul.

Jesus Christ is LOVE! Please tell somebody.

GeneralRe: You are missing 2 stars Pin
Juergen Gutsch26-Mar-07 20:15
Juergen Gutsch26-Mar-07 20:15 
JokeRe: You are missing 2 stars Pin
ednrgc27-Mar-07 7:31
ednrgc27-Mar-07 7:31 
GeneralRe: You are missing 2 stars Pin
Greg Russell2-Apr-07 4:41
professionalGreg Russell2-Apr-07 4:41 
GeneralRe: You are missing 2 stars Pin
tec-goblin18-Jun-07 21:58
tec-goblin18-Jun-07 21:58 
GeneralRe: You are missing 2 stars Pin
Pavel Vladov1-Aug-07 23:26
Pavel Vladov1-Aug-07 23:26 
GeneralRe: You are missing 2 stars Pin
tec-goblin1-Aug-07 23:32
tec-goblin1-Aug-07 23:32 
GeneralRe: You are missing 2 stars Pin
Marcus Deecke22-Jun-07 13:50
Marcus Deecke22-Jun-07 13:50 
GeneralNice work... Pin
Paul Selormey26-Mar-07 14:37
Paul Selormey26-Mar-07 14:37 
GeneralRe: Nice work... Pin
Jack J. H. Xu26-Mar-07 21:17
Jack J. H. Xu26-Mar-07 21:17 
GeneralRe: Nice work... Pin
Paul Selormey26-Mar-07 21:56
Paul Selormey26-Mar-07 21:56 
GeneralRe: Nice work... Pin
Jack J. H. Xu29-Mar-07 9:35
Jack J. H. Xu29-Mar-07 9:35 
GeneralRe: Nice work... Pin
Paul Selormey30-Mar-07 6:42
Paul Selormey30-Mar-07 6:42 
GeneralRe: Nice work... [modified] Pin
Jack J. H. Xu30-Mar-07 7:49
Jack J. H. Xu30-Mar-07 7:49 

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.