在桌面上画图

2008-02-23 05:35:44来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折

在桌面上画图,只要几个api函数既能够实现,下面给出在c builder中具体的方法如下:
1、在头文档中定义变量
private:
graphics::tbitmap *bmp;
2、图象变量的初始化:
bmp=new graphics::tbitmap();
bmp->loadfromfile("c:\\aboutlogo.bmp");
3、在paint的事件中
void __fastcall tform1::formpaint(tobject *sender)
{
hdc hdk;
trect rect;
application->minimize();
hdk=getwindowdc(getdesktopwindow());
getwindowrect(getdesktopwindow(),&rect);
bitblt(hdk,(rect.width()-bmp->width)/2,(rect.height()-bmp->height)/2,bmp->width,bmp->height,bmp->canvas->handle,0,0,srccopy);
}
4。销毁tbitmap对象
delete bmp;

以上程式在c builder 5 winnt 4.0下实现.




标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇: 屏幕抓取及回传

下一篇: DrawDib函数组的使用

热门词条
热门标签