Chinaunix首页 | 论坛 | 博客
  • 博客访问: 193216
  • 博文数量: 52
  • 博客积分: 2010
  • 博客等级: 大尉
  • 技术积分: 570
  • 用 户 组: 普通用户
  • 注册时间: 2007-09-09 22:20
文章分类

全部博文(52)

文章存档

2009年(9)

2008年(27)

2007年(16)

我的朋友

分类: WINDOWS

2008-07-09 23:52:22

Bitmap image = new Bitmap(
    Screen.PrimaryScreen.Bounds.Width,
    Screen.PrimaryScreen.Bounds.Height);
Graphics imgGraphics = Graphics.FromImage(image);
imgGraphics.CopyFromScreen(0, 0, 0, 0,
    new Size(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height));
image.Save("C:\\a.gif", ImageFormat.Gif);
阅读(675) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~