Click here to Skip to main content
15,881,738 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 187K   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

 
QuestionDamaged file Pin
David Rodher22-Aug-18 1:24
David Rodher22-Aug-18 1:24 
GeneralWinforms User Signature Capture Control Pin
jay_dubal31-Mar-11 0:19
jay_dubal31-Mar-11 0:19 
GeneralSignature Capture in standalone(Windows Forms Application) Pin
radhikakiran1313-Jan-10 9:37
radhikakiran1313-Jan-10 9:37 
GeneralSaves a white background (no ink marks) Pin
Jacob Dixon16-Nov-09 10:46
Jacob Dixon16-Nov-09 10:46 
Question2 color bitmap Pin
Natarajan R22-Jul-09 22:54
Natarajan R22-Jul-09 22:54 
Questionhow do I get this to work Pin
Lisa Mulcahy27-May-09 4:22
Lisa Mulcahy27-May-09 4:22 
AnswerRe: how do I get this to work Pin
grandk28-Nov-09 8:44
grandk28-Nov-09 8:44 
NewsASP.NET Signature Capture Pin
jay_dubal26-Aug-08 0:33
jay_dubal26-Aug-08 0:33 
Generalgetting error during save the file Pin
souravmoy sau18-Jun-08 2:44
souravmoy sau18-Jun-08 2:44 
QuestionRunning with parameter (e.g. Filename) Pin
conny12319-Nov-07 5:06
conny12319-Nov-07 5:06 
QuestionHow can I give a BackgroundImage for the Control. Pin
ajsri7727-Sep-07 1:02
ajsri7727-Sep-07 1:02 
GeneralWM 60 Pin
smidz15-Aug-07 4:14
smidz15-Aug-07 4:14 
GeneralConversion to JPG Pin
Sambora20-Jul-07 6:22
Sambora20-Jul-07 6:22 
GeneralRe: Conversion to JPG Pin
RajeshNayak20-Jul-07 7:35
RajeshNayak20-Jul-07 7:35 
GeneralRe: Conversion to JPG Pin
Sambora20-Jul-07 7:41
Sambora20-Jul-07 7:41 
Generaladd to word Pin
simon250213-Jul-07 0:37
simon250213-Jul-07 0:37 
GeneralRe: add to word Pin
RajeshNayak13-Jul-07 1:23
RajeshNayak13-Jul-07 1:23 
GeneralSignature Control on Windows Tab Pin
Haroon Khokhar24-Jun-07 20:35
Haroon Khokhar24-Jun-07 20:35 
GeneralRe: Signature Control on Windows Tab Pin
RajeshNayak13-Jul-07 1:09
RajeshNayak13-Jul-07 1:09 
QuestionJust black and white image Pin
Sergey Kamenev31-May-07 13:52
Sergey Kamenev31-May-07 13:52 
AnswerRe: Just black and white image Pin
RajeshNayak13-Jul-07 1:11
RajeshNayak13-Jul-07 1:11 
QuestionRe: Just black and white image Pin
Natarajan R22-Jul-09 22:58
Natarajan R22-Jul-09 22:58 
QuestionSignature Capture in VB.NET Pin
Shashidhar19-Apr-07 18:28
Shashidhar19-Apr-07 18:28 
AnswerRe: Signature Capture in VB.NET Pin
RajeshNayak13-Jul-07 1:13
RajeshNayak13-Jul-07 1:13 
Generalcannot capture mouse event on tabpage Pin
Amit Singh4-Feb-07 0:34
Amit Singh4-Feb-07 0:34 

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.