c#

位置:IT落伍者 >> c# >> 浏览文章

用C#实现全屏幕抓图


发布日期:2024年03月09日
 
用C#实现全屏幕抓图

int width = ScreenPrimaryScreenBoundsWidth;

int height = ScreenPrimaryScreenBoundsHeight;

Bitmap bmp = new Bitmap(width height);

using (Graphics g = GraphicsFromImage(bmp))

{

gCopyFromScreen( new Size(width height));

}

bmpSave(@c:\jpg);

bmpDispose();

参考

上一篇:浅谈.NET互操作技术 重点托管代码

下一篇:ADO.NET 2.0 动态指定 ObjectDataSource 的 SelectMethod