码迷,mamicode.com
首页 > Windows程序 > 详细

c# 获取屏幕图片

时间:2017-05-25 00:06:19      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:code   bsp   bounds   copy   blog   phi   idt   logs   aging   

Rectangle bounds = Screen.GetBounds(Screen.GetBounds(Point.Empty));
                             using (Bitmap bitmap = new Bitmap(bounds.Width, bounds.Height))
                            {
                                using (Graphics g = Graphics.FromImage(bitmap))
                                {
                                    g.CopyFromScreen(Point.Empty, Point.Empty, bounds.Size);
                                }
                                bitmap.Save(@"c:\Capture.jpg", System.Drawing.Imaging.ImageFormat.Jpeg); 
                            }

 

c# 获取屏幕图片

标签:code   bsp   bounds   copy   blog   phi   idt   logs   aging   

原文地址:http://www.cnblogs.com/weloglog888/p/6901444.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!