Click here to Skip to main content
15,890,506 members
Articles / Mobile Apps / Windows Mobile

Scratchpad/Signature Capture as BMP on Pocket PC

Rate me:
Please Sign up or sign in to vote.
4.71/5 (19 votes)
6 Sep 2006CPOL2 min read 187.3K   2.8K   56   65
A way to capture signature or scribble on the Pocket PC.

Sample Image - SignaturePPC02.gif Sample Image - SignaturePPC02.gif

Sample Image - SignaturePPC02.gif

Introduction

This control class allows a user to take a colored jot down note or signature, and save it as BMP file in the Pocket PC. This easy to use code can be plugged into any .NET application to take scribbles.

Background

Quite for a long time, I was looking for a free Signature control or some thing like that, that I could use in my own application without overloading it with bulkier codes. I was looking for some thing where I could change the pen color, width, and so on. In the internet knowledge bases, there was very few information on this, and most did not suit my needs. Later, I thought of assembling the available code and stripping down the un-needed portions, and fine-tuning the code to the level of my expectations.

Thought, may be a few people like me are still looking for this kind of a snippet and thought of sharing it. There are a few portions in this code that a programmer can even modify, like make the pen width changeable, save image as JPG or GIF etc.

Using the code

Copy the Signature.cs file to any of your Pocket PC 2003 projects. Add a Panel control to the visual form. Put this code as described and get the project rolling with signature capture capability.

Here, I have added a Panel:

C#
private System.Windows.Forms.Panel pnlSignature;
private Signature cSignature;

Later in the constructor, or in the form Load event, you can add:

C#
cSignature = new Signature();
cSignature.Location = pnlSignature.Location;
cSignature.Size = pnlSignature.Size;
this.pnlSignature.Visible = false;
this.Controls.Add(cSignature);

Under any Button's Click event, you can write this code to save the file under your desired location with a name:

C#
cSignature.Save(Path.Combine(AppPath, "CapturedPicture.bmp"));

Similarly, you can change the pen color by calling:

C#
cSignature.SetPenColor(Color.Blue);

or load a previously saved picture of the same size, using:

C#
cSignature.LoadImage(Path.Combine(AppPath, 
        "PreviouslyCapturedPicture.bmp"));

Tips and Tricks:

  1. Do not forget to set the Visibility of the Panel to false, as we need to see the control, not the Panel. Here, the Panel is just a container.
  2. It is more important to set the size of the signature control to the size of the loaded picture and the Panel size, else it may not work.

Points of Interest

While working on this, I changed the pen width by changing the following lines of code. Obviously, there must be a better way to do this than what I did.

C#
GraphicsHandle.DrawLine(SignaturePen, l.StartX+1, 
                      l.StartY, l.EndX+1,l.EndY);
GraphicsHandle.DrawLine(SignaturePen, l.StartX, 
                  l.StartY+1, l.EndX,l.EndY+1);
GraphicsHandle.DrawLine(SignaturePen, l.StartX+1, 
                  l.StartY+1, l.EndX+1,l.EndY+1);
GraphicsHandle.DrawLine(SignaturePen, l.StartX, 
                      l.StartY, l.EndX,l.EndY);

License

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


Written By
Web Developer
United States United States
Rajesh Nayak currently working with CSDC Systems Inc.'s (canada East Zone - R&D Branch) as Product Manager-Mobile Solutions.

Comments and Discussions

 
GeneralRe: cannot capture mouse event on tabpage Pin
Francisco Perez Menacho30-Mar-07 10:22
Francisco Perez Menacho30-Mar-07 10:22 
GeneralRe: cannot capture mouse event on tabpage Pin
RajeshNayak13-Jul-07 1:16
RajeshNayak13-Jul-07 1:16 
GeneralRe: cannot capture mouse event on tabpage Pin
Member 452109029-Jun-09 2:42
Member 452109029-Jun-09 2:42 
Generalnot working Pin
Maha Ibrahim2-Dec-06 21:51
Maha Ibrahim2-Dec-06 21:51 
GeneralRe: not working Pin
RajeshNayak3-Dec-06 5:16
RajeshNayak3-Dec-06 5:16 
GeneralRe: not working Pin
Maha Ibrahim3-Dec-06 20:54
Maha Ibrahim3-Dec-06 20:54 
GeneralRe: not working Pin
RajeshNayak13-Jul-07 1:17
RajeshNayak13-Jul-07 1:17 
GeneralRe: not working Pin
dravisha21-Aug-07 5:44
dravisha21-Aug-07 5:44 
GeneralPicture Box Image Pin
ribeirovski21-Nov-06 6:20
ribeirovski21-Nov-06 6:20 
GeneralRe: Picture Box Image Pin
RajeshNayak3-Dec-06 5:20
RajeshNayak3-Dec-06 5:20 
QuestionPossible for VB.NET? Pin
kokgin2-Nov-06 18:42
kokgin2-Nov-06 18:42 
AnswerRe: Possible for VB.NET? Pin
Piasecznik15-Nov-06 23:00
Piasecznik15-Nov-06 23:00 
GeneralRe: Possible for VB.NET? Pin
james19772-Dec-06 13:35
james19772-Dec-06 13:35 
QuestionHow about ASP.NET? Pin
snowdog85025-Oct-06 9:26
snowdog85025-Oct-06 9:26 
AnswerRe: How about ASP.NET? Pin
RajeshNayak25-Oct-06 9:39
RajeshNayak25-Oct-06 9:39 
GeneralRe: How about ASP.NET? Pin
snowdog85025-Oct-06 16:52
snowdog85025-Oct-06 16:52 
QuestionVB.Net version and CE5 anyone? Pin
projects.ie14-Oct-06 0:57
projects.ie14-Oct-06 0:57 
AnswerRe: VB.Net version and CE5 anyone? Pin
RajeshNayak25-Oct-06 9:36
RajeshNayak25-Oct-06 9:36 
QuestionLOOK BITMAP IMAGE TO THE CRYSTAL REPORT .NET Pin
ANDREASANTINI25-Sep-06 23:15
ANDREASANTINI25-Sep-06 23:15 
AnswerRe: LOOK BITMAP IMAGE TO THE CRYSTAL REPORT .NET Pin
RajeshNayak25-Oct-06 9:34
RajeshNayak25-Oct-06 9:34 
QuestionLicense Pin
athmok@yahoo.co.uk18-Sep-06 1:11
athmok@yahoo.co.uk18-Sep-06 1:11 
AnswerRe: License Pin
RajeshNayak18-Sep-06 2:07
RajeshNayak18-Sep-06 2:07 
GeneralRe: License Pin
Athmok21-Sep-06 3:10
Athmok21-Sep-06 3:10 
Questionit is not working in VS.net 2005 Pin
Tamil Mannan4-Jul-06 2:17
Tamil Mannan4-Jul-06 2:17 
AnswerRe: it is not working in VS.net 2005 Pin
Rothariger4-Sep-06 8:26
Rothariger4-Sep-06 8:26 

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.