我正在尝试从面板中保存位图,但保存的图像与程序的栏...
如何仅使用指定面板保存图像?
这是我的代码:
Bitmap bitmap = new Bitmap(panel1.Width, panel1.Height);
this.DrawToBitmap(bitmap, panel1.ClientRectangle);
bitmap.Save("C:\\" + pagAtual + ".bmp", ImageFormat.Bmp);
我正在尝试从面板中保存位图,但保存的图像与程序的栏...
如何仅使用指定面板保存图像?
这是我的代码:
Bitmap bitmap = new Bitmap(panel1.Width, panel1.Height);
this.DrawToBitmap(bitmap, panel1.ClientRectangle);
bitmap.Save("C:\\" + pagAtual + ".bmp", ImageFormat.Bmp);