📅  最后修改于: 2023-12-03 15:13:49.829000             🧑  作者: Mango
屏幕截图是一种常见的功能,用于捕获屏幕上的图像并保存为图像文件或在应用程序中显示。在 C# Windows 编程中,我们可以使用 .NET Framework 提供的类库来实现屏幕截图功能。本文将介绍一些常见的实现方法,帮助程序员实现屏幕截图功能。
.NET Framework 提供了 System.Drawing
命名空间下的 Bitmap
类和 Graphics
类,可以方便地实现屏幕截图功能。具体步骤如下:
using System.Drawing;
Bitmap screenshot = new Bitmap(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height, PixelFormat.Format32bppArgb);
using System.Drawing;
Graphics gfxScreenshot = Graphics.FromImage(screenshot);
using System.Drawing;
gfxScreenshot.CopyFromScreen(Screen.PrimaryScreen.Bounds.X, Screen.PrimaryScreen.Bounds.Y, 0, 0, Screen.PrimaryScreen.Bounds.Size, CopyPixelOperation.SourceCopy);
using System.Drawing;
screenshot.Save("screenshot.jpg", ImageFormat.Jpeg);
pictureBox1.Image = screenshot;
除了 .NET Framework 提供的类库外,还有一些第三方库可以用来实现屏幕截图功能。比如 ScreenShot.NET 库,可以轻松地实现屏幕截图功能。
通过 NuGet 包管理器安装 ScreenShot.NET 库:
Install-Package ScreenShot.NET
using ScreenShotNET;
IScreenShot screenShot = ScreenShot.Take(ScreenShotArea.PrimaryMonitor);
screenShot.Save(@"screenshot.jpg", System.Drawing.Imaging.ImageFormat.Jpeg);
本文介绍了在 C# Windows 编程中实现屏幕截图功能的两种方法:使用 .NET Framework 提供的类库和使用第三方库。程序员可以根据自己的需要选择合适的方法实现屏幕截图功能。