0

我只想捕获应用程序的预定义区域,例如我只想打印屏幕组框。我将 this.bounds 更改为 groupbox.bounds 但它不起作用。它捕获其他区域,但不捕获组框。有任何想法吗?代码是:

// Set the bitmap object to the size of the screen
    bmpScreenshot = new Bitmap(this.Bounds.Width, this.Bounds.Height, PixelFormat.Format32bppArgb);
    // Create a graphics object from the bitmap
    gfxScreenshot = Graphics.FromImage(bmpScreenshot);
    // Take the screenshot from the upper left corner to the right bottom corner
    gfxScreenshot.CopyFromScreen(this.Bounds.X, this.Bounds.Y, 0, 0, this.Bounds.Size, CopyPixelOperation.SourceCopy);

SaveFileDialog saveImageDialog = new SaveFileDialog();
saveImageDialog.Title = "Select output file:";
saveImageDialog.Filter = "JPeg Image|*.jpg|Bitmap Image|*.bmp|Gif Image|*.gif";
//saveImageDialog.FileName = printFileName;
if (saveImageDialog.ShowDialog() == DialogResult.OK)
{enter code here
    // Save the screenshot to the specified path that the user has chosen
    bmpScreenshot.Save(saveImageDialog.FileName, ImageFormat.Png);
}

谢谢。

4

1 回答 1

2

问题是Bounds属性中的坐标是相对于其父级的,但CopyFromScreen需要绝对坐标。

尝试使用PointToScreen方法:

Point p = this.PointToScreen(new Point(groupBox.Bounds.X, groupBox.Bounds.Y));
gfxScreenshot.CopyFromScreen(p.X, p.Y, 0, 0, 
                 groupBox.Bounds.Size, CopyPixelOperation.SourceCopy);
于 2011-03-19T11:40:47.853 回答