i have the following code to generate my bitmap image using C#. i just want to know how i can save the output image to my desktop directory instead of showing to my picture box?
Image bmp = new Bitmap(100, 100); Graphics g = Graphics.FromImage(bmp); g.DrawString(randomString, myFont, new SolidBrush(Color.Black), new PointF(0, 0)); pictureBox1.Image = bmp;
Image.Saveto google and go the first msdn link. It also contains an example. Is this so hard?