B
Bill Fuller
I am creating a bitmap screen image using the following and would like to
write it to a test.bmp file, but not sure how:
Bitmap bm = new Bitmap(this.Width, this.Height);
Graphics gr = Graphics.FromImage(bm);
gr.CopyFromScreen(this.Location, new Point(0, 0), this.Size);
QUESTION: How do I write this to a test.bmp file?
write it to a test.bmp file, but not sure how:
Bitmap bm = new Bitmap(this.Width, this.Height);
Graphics gr = Graphics.FromImage(bm);
gr.CopyFromScreen(this.Location, new Point(0, 0), this.Size);
QUESTION: How do I write this to a test.bmp file?