Click here to Skip to main content
15,881,172 members
Articles / Multimedia / GDI+
Article

Eyes

Rate me:
Please Sign up or sign in to vote.
4.96/5 (34 votes)
11 Sep 2008CPOL1 min read 68.4K   1.1K   55   22
Creating an eye control.

Sample Image

Introduction

This article demonstrates how to create a perfect, useless control using C# WinForms and .NET 2.0. The control uses pure managed code, and all visual elements can be adjusted through its properties.

Background

Is it not all developer's deepest desire to create something living? Well, not me! This was solely to have fun playing with the graphics. So, don't expect to see a mouth, nose, or brains in the future.

The Graphics

The process of building the eye.

Above are the basic elements of the eye: background, iris, shadow, pupil, reflex, and the eye-lid. The eye is drawn in this order.

Architecture

The Eye is a single class that inherits from the System.Windows.Forms.Control. Below are the properties and methods of the Eye class.

The Eye class

Using the Code

Using the Eye class is straightforward, but some properties may need some explanation.

  • BlinkStep is the rate in which the eye will close when blinking.
  • FocusPoint is the point the eye will look, in screen coordinates.
  • FocusAngle and FocusDistance are derived (read only) from FocusPoint.
  • LidOffset is used when TypeOfEye is Left or Right.

    The offset in pixels is the width of the iris divided by the value. Minimum is 3.

  • SlitSize is a percentage of the eye height.
  • TypeOfEye is an enum, and can take the values Left, Right, and Cyclops (default).
  • Blink() starts a new thread that will blink the eye.

The detailed iris is done using a color blend:

C#
using (var path = new GraphicsPath())
{
  path.AddEllipse(rect);
  using (var gradientBrush = new PathGradientBrush(path))
  {
    gradientBrush.CenterPoint = centerPoint;
    var cb = new ColorBlend(4)
               {
                 Colors = irisColors,
                 Positions = new[] { 0.0F, 0.05F, 0.1F, 1.0F }
               };
    if (cb.Colors == null) return;
    gradientBrush.InterpolationColors = cb;
    g.FillPath(gradientBrush, path);
  }
}

Points of Interest

I attempted to squeeze the iris rectangle to make it more eye-like when going to the edge, but it never quite looked right.

History and Credits

This is the first version - 1.0.

License

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


Written By
Architect
Denmark Denmark
Name: Niel Morgan Thomas
Born: 1970 in Denmark
Education:
Dataengineer from Odense Technical University.
More than 20 years in IT-business.
Current employment:
Cloud architect at University College Lillebaelt

Comments and Discussions

 
QuestionReport Required (urgent) Pin
Member 99149963-Dec-13 2:56
Member 99149963-Dec-13 2:56 
GeneralNice idea and well done! Pin
Martin#7-Apr-09 1:45
Martin#7-Apr-09 1:45 
GeneralToo Cool! Pin
ArchKaine17-Sep-08 13:25
ArchKaine17-Sep-08 13:25 
GeneralAbth Project Pin
Yildirim Kocdag15-Sep-08 20:16
Yildirim Kocdag15-Sep-08 20:16 
GeneralEyes Pin
Greg.Farquhar15-Sep-08 20:10
Greg.Farquhar15-Sep-08 20:10 
GeneralToo late (grin) Pin
fredsparkle15-Sep-08 6:56
fredsparkle15-Sep-08 6:56 
QuestionProblems with source Pin
rht34110-Sep-08 7:13
rht34110-Sep-08 7:13 
AnswerRe: Problems with source [modified] Pin
Niel M.Thomas10-Sep-08 8:16
professionalNiel M.Thomas10-Sep-08 8:16 
GeneralReally cool demo! Pin
Johnny J.9-Sep-08 23:00
professionalJohnny J.9-Sep-08 23:00 
JokeRe: Really cool demo! Pin
markkuk9-Sep-08 23:16
markkuk9-Sep-08 23:16 
GeneralGreat Project !!! Pin
Reaksmey Rin9-Sep-08 16:07
Reaksmey Rin9-Sep-08 16:07 
Generalpersonally... PinPopular
Scott Bruno9-Sep-08 11:19
Scott Bruno9-Sep-08 11:19 
GeneralRe: personally... Pin
Ilíon9-Sep-08 23:48
Ilíon9-Sep-08 23:48 
GeneralRe: personally... Pin
Scott Bruno10-Sep-08 2:24
Scott Bruno10-Sep-08 2:24 
GeneralRe: personally... Pin
Ilíon10-Sep-08 6:23
Ilíon10-Sep-08 6:23 
GeneralRe: personally... Pin
Scott Bruno10-Sep-08 8:54
Scott Bruno10-Sep-08 8:54 
GeneralRe: personally... Pin
Ilíon10-Sep-08 12:22
Ilíon10-Sep-08 12:22 
GeneralRe: personally... Pin
sinklink13-Sep-08 19:15
sinklink13-Sep-08 19:15 
GeneralRe: personally... Pin
Ilíon14-Sep-08 8:15
Ilíon14-Sep-08 8:15 
GeneralRe: personally... Pin
MarkRedman15-Sep-08 7:21
MarkRedman15-Sep-08 7:21 
GeneralRe: personally... Pin
hackman3vilGuy15-Sep-08 9:21
hackman3vilGuy15-Sep-08 9:21 
GeneralRe: personally... Pin
Leblanc Meneses8-Nov-08 20:53
Leblanc Meneses8-Nov-08 20:53 

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.