《Windows程序设计》之位块传输

LRESULT CALLBACK WndProc(HWND hwnd,UINT message,WPARAM wParam,LPARAM lParam)
{
	static HBITMAP hBitmap;
	static int cxClient,cyClient,cxSource,cySource;
	BITMAP bitmap;
	HDC hdc,hdcMem;
	HINSTANCE hInstance;
	int x,y;
	PAINTSTRUCT ps;

	switch(message)
	{
	case WM_CREATE:
		//实例句柄
		hInstance=((LPCREATESTRUCT)lParam)->hInstance;
		//载入图片
		hBitmap=LoadBitmap(hInstance,TEXT("Bricks"));
		//该函数得到指定图形对象的信息
		GetObject(hBitmap,sizeof(BITMAP),&bitmap);
		cxSource=bitmap.bmWidth;
		cySource=bitmap.bmHeight;
		return 0;
	case WM_SIZE:
		cxClient=LOWORD(lParam);
		cyClient=HIWORD(lParam);
		return 0;
	case WM_PAINT:
		hdc=BeginPaint(hwnd,&ps);
		//创建设备上下文
		hdcMem=CreateCompatibleDC(hdc);
		//把hBitmap选入设备
		SelectObject(hdcMem,hBitmap);
		for(y=0;y<cyClient;y+=cySource)
			for(x=0;x<cxClient;x+=cxSource)
				//把设备环境中的图像进行块转换,放入目标设备中
				BitBlt(hdc,x,y,cxSource,cySource,hdcMem,0,0,SRCCOPY);
		//删除设备环境
		DeleteDC(hdcMem);
		EndPaint(hwnd,&ps);
		return 0;
	case WM_DESTROY:
		//删除hBitmap
		DeleteObject(hBitmap);
		PostQuitMessage(0);
		return 0;
	}
	return DefWindowProc(hwnd,message,wParam,lParam);
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值