欢迎光临
我们一直在努力

用C#制作作屏幕捕获程序-.NET教程,C#语言

建站超值云服务器,限时71元/月

我们已经了解了visual basic或者delphi等语言是如何来实现对屏幕图象捕获的。那么对于c#来说,是如何实现这种功能的?本文就来探讨一下这个问题。

  一. 程序设计开发及运行环境:

  (1).微软视窗2000服务器版

  (2)..net framework sdk beta 2

  二. 程序设计的关键步骤以及具体的实现方法:

   (1).首先要创建一个和当前屏幕大小相同的bitmap对象:

  要实现此操作,首先就要现获得当前显示器的dc,然后根据此dc来创建graphic对象,再由此graphic对象产生此位图对象。这样产生的位图对象才是和当前屏幕大小相一致的。由于要获得显示器的dc,利用.net的类库是无法实现的,这需要调用一个windows的api函数。我们知道视窗所有api都封装在"kernel"、"user "和"gdi"三个库中文件中:其中"kernel",他的库名为 "kernel32.dll"。"user "这个类库在win32中名叫 "user32.dll"。 它主要管理全部的用户接口。譬如:窗口 、菜单 、对话框 、图标等等。"gdi"(图象设备接口),它在win32中的库名为:"gdi32.dll",要获得显示器的dc,所调用的api函数–createdc ( ),就被封装在此类库中。而要在c#中声明视窗的api函数需要使用.net framework sdk中的名字空间"system.runtime.interopservices",此名字空间提供了一系列的类来访问com对象,和调用本地的api函数。下面是在c#中声明此函数:

[ system.runtime.interopservices.dllimportattribute ( "gdi32.dll" ) ]

private static extern intptr createdc (

string lpszdriver , // 驱动名称

string lpszdevice , // 设备名称

string lpszoutput , // 无用,可以设定位"null"

intptr lpinitdata // 任意的打印机数据

) ;

在c#中声明过此api函数,就可以创建和显示器大小一致的位图对象,具体实现语句如下:

intptr dc1 = createdc ( "display" , null , null , ( intptr ) null ) ;

//创建显示器的dc

graphics g1 = graphics.fromhdc ( dc1 ) ;

//由一个指定设备的句柄创建一个新的graphics对象

myimage = new bitmap ( screen.primaryscreen.bounds.width , screen.primaryscreen.bounds.height , g1 ) ;

//根据屏幕大小创建一个与之相同大小的bitmap对象

  (2).根据此位图创建一个和其一样的graphic对象:

  通过下面代码就可以实现此功能:

graphics g2 = graphics.fromimage ( myimage ) ;

  (3).获得当前屏幕和位图的句柄:

  获得此二个对象的句柄是为了下一步实现对当前屏幕图象的捕获,程序中实现的具体捕获的方法是把当前屏幕捕获到已经创建的位图对象中。具体实现代码如下:

//获得屏幕的句柄

intptr dc3 = g1.gethdc ( ) ;

//获得位图的句柄

intptr dc2 = g2.gethdc ( ) ;

//把当前屏幕捕获到位图对象中

  (4).捕获当前屏幕:

  我们是通过当前屏幕保存到创建的位图对象中来实现的,具体的实现过程中是通过windows的一个api函数–bitblt。我想大多数程序员对此api函数一定不陌生,因为在windows的图象编程中,会在很多地方使用到此函数。这个api函数和上面介绍的那个api函数一样,也是被封装在"gdi32.dll"中的,下面是此函数在c#中的声明:

[ system.runtime.interopservices.dllimportattribute ( "gdi32.dll" ) ]

private static extern bool bitblt (

intptr hdcdest , // 目标设备的句柄

int nxdest , // 目标对象的左上角的x坐标

int nydest , // 目标对象的左上角的x坐标

int nwidth , // 目标对象的矩形的宽度

int nheight , // 目标对象的矩形的长度

intptr hdcsrc , // 源设备的句柄

int nxsrc , // 源对象的左上角的x坐标

int nysrc , // 源对象的左上角的x坐标

system.int32 dwrop // 光栅的操作值

) ;

知道了此声明就可以实现对当前屏幕的保存了,具体如下:

bitblt ( dc2 , 0 , 0 , screen.primaryscreen.bounds.width , screen.primaryscreen.bounds.height , dc3 , 0 , 0 , 13369376 ) ;

  (5).把当前屏幕保存到硬盘,并释放句柄:

g1.releasehdc ( dc3 ) ;

//释放屏幕句柄

g2.releasehdc ( dc2 ) ;

//释放位图句柄

myimage.save ( "c:\\myjpeg.jpg" , imageformat.jpeg ) ;

  我们可以根据自己的要求把当前屏幕以不同的文件格式来保存,在本文中介绍的程序是以"jpg"文件来保存的,你可以通过修改"save"方法的第二个参数来改变保存到硬盘的文件类型,譬如,如果第二个参数为"imageformat.gif",那么你保存到硬盘的文件就为"gif"文件了。对于其他文件格式可以参考.net framework sdk,里面有详细的介绍。

三. 用c#做screen capture程序的代码和运行节目:

  在掌握了上面这些重要步骤后,可以得到用c#做screen capture程序的源代码(capture.cs),具体如下:

using system ;

using system.drawing ;

using system.collections ;

using system.componentmodel ;

using system.windows.forms ;

using system.data ;

using system.drawing.imaging ;

using system.io ;

//导入在程序中使用到的名称空间

public class capture : form

{

private system.componentmodel.container components = null ;

private icon mnettrayicon = new icon ( "tray.ico" ) ;

private bitmap myimage = null ;

private notifyicon trayicon ;

private contextmenu notifyiconmnu ;

public capture ( )

{

//初始化窗体中使用到的组件

initializecomponent ( ) ;

}

protected override void onactivated ( eventargs e )

{

this.hide ( ) ;

}

[ system.runtime.interopservices.dllimportattribute ( "gdi32.dll" ) ]

private static extern bool bitblt (

intptr hdcdest , //目标设备的句柄

int nxdest , // 目标对象的左上角的x坐标

int nydest , // 目标对象的左上角的x坐标

int nwidth , // 目标对象的矩形的宽度

int nheight , // 目标对象的矩形的长度

intptr hdcsrc , // 源设备的句柄

int nxsrc , // 源对象的左上角的x坐标

int nysrc , // 源对象的左上角的x坐标

system.int32 dwrop // 光栅的操作值

) ;

[ system.runtime.interopservices.dllimportattribute ( "gdi32.dll" ) ]

private static extern intptr createdc (

string lpszdriver , // 驱动名称

string lpszdevice , // 设备名称

string lpszoutput , // 无用,可以设定位"null"

intptr lpinitdata // 任意的打印机数据

) ;

public void capture ( object sender , system.eventargs e )

{

this.visible = false ;

intptr dc1 = createdc ( "display" , null , null , ( intptr ) null ) ;

//创建显示器的dc

graphics g1 = graphics.fromhdc ( dc1 ) ;

//由一个指定设备的句柄创建一个新的graphics对象

myimage = new bitmap ( screen.primaryscreen.bounds.width , screen.primaryscreen.bounds.height , g1 ) ;

//根据屏幕大小创建一个与之相同大小的bitmap对象

graphics g2 = graphics.fromimage ( myimage ) ;

//获得屏幕的句柄

intptr dc3 = g1.gethdc ( ) ;

//获得位图的句柄

intptr dc2 = g2.gethdc ( ) ;

//把当前屏幕捕获到位图对象中

bitblt ( dc2 , 0 , 0 , screen.primaryscreen.bounds.width , screen.primaryscreen.bounds.height , dc3 , 0 , 0 , 13369376 ) ;

//把当前屏幕拷贝到位图中

g1.releasehdc ( dc3 ) ;

//释放屏幕句柄

g2.releasehdc ( dc2 ) ;

//释放位图句柄

myimage.save ( "c:\\myjpeg.jpg" , imageformat.jpeg ) ;

messagebox.show ( "已经把当前屏幕保存到c:\\myjpeg.jpg文件中!" ) ;

this.visible = true ;

}

public void exitselect ( object sender , system.eventargs e )

{

//隐藏托盘程序中的图标

trayicon.visible = false ;

//关闭系统

this.close ( ) ;

}

//清除程序中使用过的资源

public override void dispose ( )

{

base.dispose ( ) ;

if ( components != null )

components.dispose ( ) ;

}

private void initializecomponent ( )

{

//设定托盘程序的各个属性

trayicon = new notifyicon ( ) ;

trayicon.icon = mnettrayicon ;

trayicon.text = "用c#做screen capture程序" ;

trayicon.visible = true ;

//定义一个menuitem数组,并把此数组同时赋值给contextmenu对象

menuitem [ ] mnuitms = new menuitem [ 3 ] ;

mnuitms [ 0 ] = new menuitem ( ) ;

mnuitms [ 0 ] .text = "捕获当前屏幕!" ;

mnuitms [ 0 ] .click += new system.eventhandler ( this.capture ) ;

mnuitms [ 1 ] = new menuitem ( "-" ) ;

mnuitms [ 2 ] = new menuitem ( ) ;

mnuitms [ 2 ] .text = "退出系统" ;

mnuitms [ 2 ] .click += new system.eventhandler ( this.exitselect ) ;

mnuitms [ 2 ] .defaultitem = true ;

notifyiconmnu = new contextmenu ( mnuitms ) ;

trayicon.contextmenu = notifyiconmnu ;

//为托盘程序加入设定好的contextmenu对象

this.suspendlayout ( ) ;

this.autoscalebasesize = new system.drawing.size ( 5 , 13 ) ;

this.clientsize = new system.drawing.size ( 320 , 56 ) ;

this.controlbox = false ;

this.maximizebox = false ;

this.minimizebox = false ;

this.windowstate = system.windows.forms.formwindowstate.minimized ;

this.name = "capture" ;

this.showintaskbar = false ;

this.text = "用c#做screen capture程序!" ;

this.resumelayout ( false ) ;

}

static void main ( )

{

application.run ( new capture ( ) ) ;

}

}

  四. 总结:

  虽然.net framework sdk的内容十分丰富,借助他所能够实现的功能也非常强大,但对于一些底层的操作,有时还是需要借助windows的api函数才可以实现,而实现screen capture的关键也就在于掌握c#中调用api函数的方法。希望通过本文,能够对你掌握在c#中的api编程有所帮助。

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 用C#制作作屏幕捕获程序-.NET教程,C#语言
分享到: 更多 (0)