Click here to Skip to main content
15,886,963 members
Articles / Programming Languages / C#
Article

Very Simple Paint

Rate me:
Please Sign up or sign in to vote.
3.92/5 (13 votes)
7 Nov 2006CPOL1 min read 78.1K   6K   25   10
Painting with different colors into the images
Sample Image - sources_very_simple_paint.jpg

Introduction

I was working on a project and I needed to make some changes to images such as delete and remove information and mark some features using a different type, width and colors to the pencil.

Using the Code

The core of this small code is the usage of the Graphics object. Usually, you can use it to paint something to the picture to provide some information to the client but really you don't paint within a Bitmap structure. In this case, you obtain your goal using the Graphics of visual component like:

C#
Graphics graphics = pictureBox.CreateGraphics();

But this way requires that you do all your paint operations on the paint event of pictureBox because all modifications belong to the visual control and not to the bitmap structure. Besides one application like this should generate several paint events and you must redraw unnecessary things in each paint operation. Due to the reasons previously commented, I did my paint operations using the graphics of bitmap directly like:

C#
Graphics graphics = Graphics.FromImage(bitmap);

You must be careful because you are applying transformations to the original bitmap. First make a copy if you want to save the original image. To obtain the changed image, you must only read the variable bitmap used to create the graphics. In the application, you can see the usage of the Cursor object to visually establish the difference of pencils.

C#
/// <summary>
/// Set the image to pointer
/// </summary>
private void SetMouseCursor()
{
    string name = picBoxClicked.Name;
    switch (name)
    {
        case "picBoxCircleBig":
            Cursor = new Cursor("CursorCircleBig.cur");
            break;
        case "picBoxCircleMedium":
            Cursor = new Cursor("CursorCircleMedium.cur");
            break;
        case "picBoxCircleSmall":
            Cursor = new Cursor("CursorCircleSmall.cur");
            break;
        case "picBoxRecBig":
            Cursor = new Cursor("CursorRectBig.cur");
            break;
        case "picBoxRecMedium":
            Cursor = new Cursor("CursorRectMedium.cur");
            break;
        case "picBoxRecSmall":
            Cursor = new Cursor("CursorRectSmall.cur");
            break;
    }
} 

The files *.cur were created using images edited by myself. All the implementation is very simple but I think that there are some small tips that may be useful for someone. I hope you enjoy this!

History

  • 7th November, 2006: Initial post

License

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


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

Comments and Discussions

 
QuestionProblem : Open a existing file and save it after editing Pin
nitin-aem23-Aug-17 1:32
nitin-aem23-Aug-17 1:32 
AnswerVote of thanks & crash solved Pin
Ritesh bagalkoti4-Aug-14 20:48
Ritesh bagalkoti4-Aug-14 20:48 
GeneralMy vote of 5 Pin
Manoj Kumar Choubey26-Feb-12 21:17
professionalManoj Kumar Choubey26-Feb-12 21:17 
Generalgreat but cant use for paint Pin
adhi setyawan14-Apr-10 13:40
adhi setyawan14-Apr-10 13:40 
GeneralRe: great but cant use for paint Pin
Zamshed Farhan14-Jan-13 21:13
Zamshed Farhan14-Jan-13 21:13 
Generalcursor Pin
Member 685241512-Jan-10 4:20
Member 685241512-Jan-10 4:20 
Generalthanks for the great article Pin
jas0n2329-Apr-09 17:58
jas0n2329-Apr-09 17:58 
GeneralProblem with the solution Pin
Member 37050631-Jul-08 10:48
Member 37050631-Jul-08 10:48 
GeneralPaint Functionalities Pin
bsundarapandian6-Mar-07 0:07
bsundarapandian6-Mar-07 0:07 
GeneralViva el Diego carajo!!! Pin
CastorTiu9-Nov-06 14:00
CastorTiu9-Nov-06 14:00 

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.