Как я могу сделать снимок с экрана? - PullRequest
0 голосов
/ 30 сентября 2010

Я хочу написать программу, которая показывает экран одного компьютера другим ... что-то вроде системы презентаций.как я могу сделать снимок с текущего экрана?

1 Ответ

2 голосов
/ 30 сентября 2010

.NET предоставляет эту функцию через класс Screen ( System.Windows.Forms ).

     // the surface that we are focusing upon
     Rectangle rect = new Rectangle();

     // capture all screens in Windows
     foreach (Screen screen in Screen.AllScreens)
     {
        // increase the Rectangle to accommodate the bounds of all screens
        rect = Rectangle.Union(rect, screen.Bounds);
     }

     // create a new image that will store the capture
     Bitmap bitmap = new Bitmap(rect.Width, rect.Height, PixelFormat.Format32bppArgb);

     using (Graphics g = Graphics.FromImage(bitmap))
     {
        // use GDI+ to copy the contents of the screen into the bitmap
        g.CopyFromScreen(rect.X, rect.Y, 0, 0, rect.Size, CopyPixelOperation.SourceCopy);
     }

     // bitmap now has the screen capture
...