您好我正在开发一个程序,用户可以截取屏幕截图。用户可以选择是否要从屏幕1,2,3或4中截取屏幕截图。我知道如何从第一个屏幕中获取第一个屏幕截图,但如何从屏幕2,3和4获取图像?
从第一个屏幕获取屏幕截图的代码如下所示:
private void btnScreenOne_Click(object sender, EventArgs e)
{
Bitmap bitmap = new Bitmap(Screen.PrimaryScreen.Bounds.Width,
Screen.PrimaryScreen.Bounds.Height);
Graphics graphics = Graphics.FromImage(bitmap as Image);
graphics.CopyFromScreen(0, 0, 0, 0, bitmap.Size);
bitmap.Save(@"C:\Users\kraqr\Documents\PrintScreens\" +
DateTime.Now.ToString("yyyy-MM-dd_HH-mm-ss") + " Screen1" +
".bmp", ImageFormat.Bmp);
}
感谢答案。
答案 0 :(得分:10)
改为使用Screen.AllScreens:
foreach ( Screen screen in Screen.AllScreens )
{
screenshot = new Bitmap( screen.Bounds.Width,
screen.Bounds.Height,
System.Drawing.Imaging.PixelFormat.Format32bppArgb );
// Create a graphics object from the bitmap
gfxScreenshot = Graphics.FromImage( screenshot );
// Take the screenshot from the upper left corner to the right bottom corner
gfxScreenshot.CopyFromScreen(
screen.Bounds.X,
screen.Bounds.Y,
0,
0,
screen.Bounds.Size,
CopyPixelOperation.SourceCopy );
// Save the screenshot
}
答案 1 :(得分:8)
Screen
类有一个静态属性AllScreens
,它为您提供了一系列屏幕。这些对象具有Bounds
属性,您可以使用它......
长话短说:您使用所需屏幕的大小初始化位图(不要使用PrimaryScreen
,因为这只是主要的一个,顾名思义)然后将适当的边界传递给{{ 1}}。
答案 2 :(得分:6)
使用Screen.AllScreens
通过特定屏幕的Bounds
属性检索坐标,并将其传递给CopyFromScreen
。