12
以下のコードを使用して、ビットマップで画面をキャプチャしています。画面がキャプチャされますが、マウスポインタを画面に表示できません。あなたはマウスが同様にキャプチャされるようにいくつかの代替アプローチを提案できますか?Windows APIを使用して画面とマウスポインタをキャプチャする方法は?
private Bitmap CaptureScreen()
{
// Size size is how big an area to capture
// pointOrigin is the upper left corner of the area to capture
int width = Screen.PrimaryScreen.Bounds.X + Screen.PrimaryScreen.Bounds.Width;
int height = Screen.PrimaryScreen.Bounds.Y + Screen.PrimaryScreen.Bounds.Height;
Size size = new Size(width, height);
Point pointOfOrigin = new Point(0, 0);
Bitmap bitmap = new Bitmap(size.Width, size.Height);
{
using (Graphics graphics = Graphics.FromImage(bitmap))
{
graphics.CopyFromScreen(pointOfOrigin, new Point(0, 0), size);
}
return bitmap;
}
}
、ニースきれいで速いコード。ありがとう。 –
注:このコードは、オフセット用に 'GetIconInfo'を呼び出す必要があるため、一部のカーソルを間違った位置に描画します。また、いくつかは薄れて見えますが、詳細はhttp://stackoverflow.com/questions/918990/をご覧ください。 – WhoIsRich