任意形状的窗体

2008-02-23 05:36:56来源:互联网 阅读 ()

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

Graphics::TBitmap* Spirite=new Graphics::TBitmap();
bool bkey=true;
int iCount=0;
TColor ColorKey=clWhite;
Spirite->LoadFromFile("D:\\bcbbak\\resource\\traffic.bmp");
Width=Spirite->Width;Height=Spirite->Height;
for(int i=0;i<Spirite->Height;i )
{
bkey=true;
for(int j=0;j<Spirite->Width;j )
{
if(Spirite->Canvas->Pixels[j][i]==ColorKey)
bkey=true;
else{ if(bkey) iCount ; bkey=false;}
}
}
byte* pData;
RGNDATA* pRgnData;
RECT* pRect;
int iIndex=0,iLeft=0;
pData=new Byte[sizeof(RGNDATAHEADER) sizeof(RECT)*iCount];
pRgnData=(RGNDATA* )pData;
pRect=(RECT* )(pData sizeof(RGNDATAHEADER));
pRgnData->rdh.dwSize= sizeof( RGNDATAHEADER ) ;
pRgnData->rdh.iType= RDH_RECTANGLES;
pRgnData->rdh.nCount= iCount;
pRgnData->rdh.nRgnSize = sizeof( RECT )*iCount;
pRgnData->rdh.rcBound.left= 0;
pRgnData->rdh.rcBound.top= 0;
pRgnData->rdh.rcBound.right=Spirite->Width;
pRgnData->rdh.rcBound.bottom=Spirite->Height;
for( int i=Spirite->Height-1;i>=0;i--) //因为Bitmap位图在Y方向是颠倒的所以要从底部开始
{
bkey = TRUE ; iLeft = -1;
for( int j=0;j<Spirite->Width;j )
{
if(Spirite->Canvas->Pixels[j][i]==ColorKey )
{if( !bkey )
{pRect[iIndex].left =iLeft;
pRect[iIndex].right=j;
pRect[iIndex].top=Spirite->Width-i-1;
pRect[iIndex].bottom=Spirite->Height-i;
bkey=TRUE ;iIndex ;iLeft=-1;
}
}
else if(bkey){iLeft=j; bkey=false;}
}
if(iLeft>=0)
{
pRect[iIndex].left=iLeft ;
pRect[iIndex].right=Spirite->Width;
pRect[iIndex].top=i;
pRect[iIndex].bottom=i;
iIndex ;
}
}
bool br=ExtCreateRegion(NULL,sizeof( RGNDATAHEADER ) sizeof(RECT)*iCount,pRgnData);
if(!br) { ShowMessage("Create Form Failed."); Close(); }
delete[] pData;




标签:

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

上一篇: 如何去掉MDI子窗体的标题栏

下一篇: 重载CreateParams实现无标题栏的窗体

热门词条
热门标签