I have an Image along with labels on top of the image. My goal is to fill in the labels with information and then take a screen capture of the image with labels and save it.
I currently can take a perfect image and save it, but it does not include the labels. I tried graphics and a few other things, but am not getting anywhere.
Any help is much appreciated :)
Bitmap bitmap = new Bitmap(pictureBox1.Width, pictureBox1.Height);
pictureBox1.DrawToBitmap(bitmap, new Rectangle(0, 0, bitmap.Width, bitmap.Height));
bitmap.Save("c:\\bitmap_images\\NewTest.jpeg", ImageFormat.Jpeg);