Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public static class ScreenCapture
- {
- public static Bitmap Fullscreen()
- {
- using (Bitmap bm = new Bitmap(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height))
- {
- using (Graphics g = Graphics.FromImage(bm))
- {
- g.CopyFromScreen(Point.Empty, Point.Empty, Screen.PrimaryScreen.Bounds.Size);
- }
- return bm;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement