I done code for free hand drawing in ASP.Net C#(Windows App).I have to store that image in DB when I clicking that button. But i don't have idea about it.Help me guys... I draw th image in picture box. The code for save button is following:
ImageFormat format = ImageFormat.Jpeg;
SaveFileDialog sfd = new SaveFileDialog();
sfd.Filter = "Jpeg Format(*.Jpeg)|*.Jpeg";
if (sfd.ShowDialog() == DialogResult.OK)
{
//shapePB.Image.Save(sfd.FileName, System.Drawing.Imaging.ImageFormat.Jpeg);
shapePB.Image.Save(sfd.FileName, format);
}
Here shapePB is a pictureBox.Thanks in Advance
Kavisuja.M

Kavi sujaPosted May 27, 2013, 6:47 AM
Doraemon DPosted May 27, 2013, 3:12 AM
I have added a good solution for this problem.
It might be helpful for you. In my case it worked. Try it.
http://dotnetsolservices.blogspot.in/p/c.html