C#中利用鼠标的坐标进行截图


C#中利用鼠标的坐标进行截图

private void Form1_Click(object sender, EventArgs e)
        {

            if (flag % 2 == 0)
            {
                Fx = Cursor.Position;//获取在控件中的鼠标坐标 这个就是屏幕的坐标了
                this.textBox1.Text = string.Format("{0},{1},{2},{3}", Fx.X, Fx.Y, Fy.X, Fy.Y);
            }
            else
            {
              // Fy = this.PointToScreen(Cursor.Position);
                //MessageBox.Show(string.Format("{0},{1},{2},{3}",Fx.X,Fx.Y,Fy.X,Fy.Y));

                Fy = Cursor.Position;
              //  this.textBox1.Text = string.Format("{0},{1},{2},{3}", Fx.X, Fx.Y, Fy.X - Fx.X, Fy.Y-Fx.Y);
                this.textBox1.Text = string.Format("{0},{1},{2},{3}", Fx.X, Fx.Y, Fy.X, Fy.Y);
                int screenWidth = Screen.GetBounds(new Point(0, 0)).Width;
                int screenHeight = Screen.GetBounds(new Point(0, 0)).Height;
                Bitmap bmpScreenShot = new Bitmap(screenWidth, screenHeight);  // the final image used by memory reference
                Graphics gfx = Graphics.FromImage((Image)bmpScreenShot); //获取绘图绘画
                // gfx.CopyFromScreen(this.pictureBox1.PointToScreen(this.pictureBox1.Location), new Point(0, 0), this.pictureBox1.Size);
                //gfx.CopyFromScreen(0, 0, 0, 0, new Size(screenWidth, screenHeight));//获取整个屏幕的类似printscreen
              // Cursor.Position = new Point(Fx.X + 100, Fx.Y + 100);
                gfx.CopyFromScreen(Fx.X, Fx.Y, 0, 0, new Size(Fy.X-Fx.X, Fy.Y-Fx.Y));//从这个屏幕中截取我们所需要的部分
                this.imageBox1.BackgroundImage = bmpScreenShot;
                bmpScreenShot.Save("shot.png");
            }
          // MessageBox.Show("OK");
            flag++;
        }

推荐阅读:

Linux下C语言实现多线程文件复制

在Win32下用C++实现多线程读写锁

Linux多进程多线程互斥同步例子

Linux下多线程通过蒙特卡洛法来求取pi值

C++中使用模板传递函数类型

相关内容