how to save an image drawn with GDI+ to sql 2005 database?
SQL has the ability to store any type of data into a blob field. Just stream the data into the column. There are many examples on Code Project, and other sites on how to do this.
I found help for uploading images. But i have drawn an image using GDI+ and i want to save that image.
Simple, save the image as a picture format and then upload it to the sql server in a BLOB format.
While using GDI+ check this website you on how to save images.
http://www.devx.com/.net%20zone/Article/10031/0/page/5
Atleast this should get you going.