我知道這個問題已經回答過。但是沒有一個答案是正確的。 如何捕獲窗體的圖像並保存。我用這個:將窗體捕獲成圖像
Bitmap bmp = new Bitmap(this.Width, this.Height);
this.DrawToBitmap(bmp, new Rectangle(Point.Empty, bmp.Size));
bmp.Save(@"C://Desktop//sample.png",ImageFormat.Png);
,但得到的錯誤:
A generic error occurred in GDI+
我也看到了這個錯誤,但沒有任何的建議,對我的工作!請幫助
你確定你不只是忘記處理位圖嗎? – Sayse 2014-10-22 06:50:25