Click here to Skip to main content
15,889,595 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more: , +
I have a wcf data service and windows phone 7 client. I need to take customer signature on phone and save it to database. Can you please suggest a good tutorial or advise? Cannot find anything relevant on Google.

Thanks.
Posted
Updated 25-Jul-13 12:04pm
v2
Comments
Sergey Alexandrovich Kryukov 25-Jul-13 18:43pm    
What's the problem? Each image object can be serialized into any stream...
—SA

1 solution

here is good example to capture signature

Silverlight application with Capturing and Saving Signature as BMP[^]

and regarding WCF serverice to save that captured signature in database, you can make WCF service that take base64 string as parameter which is generated from bytes array of generated signature image, you can store that base64 string directly to your database or you can convert it to bytes array and store it to database its depend on you in which format you need to store your image.
 
Share this answer
 

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900