歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

C#獲得當前截圖

主要使用Graphics的CopyFromScreen函數獲取截圖

下面是一段程序獲取當前的截圖,並以this.png的文件名保存。

需要添加的引用:

using System.Drawing;

主程序:

Bitmap bitmap = new Bitmap(Screen.AllScreens[0].Bounds.Size.Width, Screen.AllScreens[0].Bounds.Size.Height);
            Graphics g = Graphics.FromImage(bitmap);
            g.CopyFromScreen(0, 0, 0, 0, Screen.AllScreens[0].Bounds.Size);
            g.Dispose();
            bitmap.Save("this.png");

Copyright © Linux教程網 All Rights Reserved