How can I convert a graphic, created on a PictureBox, to Bitmap?
+2
A:
Or if you want to create a Bitmap object:
Bitmap myBitmap = new Bitmap(pictureBox1.Image);
deltreme
2010-05-21 14:04:04
+2
A:
You need to draw directly on a Bitmap object by calling Graphics.FromImage, then set the Bitmap as the PictureBox's Image.
SLaks
2010-05-21 16:15:13
thank for your answer
Hesam Qodsi
2010-05-23 09:49:56