1 void screenShot(CRect rect,int left,int top,char *name){ //截取窗口的大小,位置,名字(保存在默认路径下) 2 CBitmap* m_pBitmap; // 加入类成员 3 CFrameWnd* pMainFrame = (CFrameWnd*)AfxGetMainWnd(); // 获得截图窗口的指针,默认为主窗口,可以更改为其他的窗口。 4 CPaintDC dc(pMainFrame); 5 6 m_pBitmap=new CBitmap; 7 m_pBitmap->CreateCompatibleBitmap(&dc,rect.Width(),rect.Height()); 8 9 CDC memDC; 10 memDC.CreateCompatibleDC(&dc); 11 CBitmap memBitmap, *oldmemBitmap; // 建立和屏幕兼容的bitmap12 memBitmap.CreateCompatibleBitmap(&dc, rect.Width(),rect.Height());13 14 oldmemBitmap = memDC.SelectObject(&memBitmap);//将memBitmap选入内存DC15 memDC.BitBlt(0, 0, rect.Width(),rect.Height(), &dc,left, top, SRCCOPY); // 调解高度宽度16 BITMAP bmp;17 memBitmap.GetBitmap(&bmp); // 获得位图信息 18 19 FILE *fp = fopen(name, "w+b");20 21 BITMAPINFOHEADER bih = { 0}; // 位图信息头22 bih.biBitCount = bmp.bmBitsPixel; // 每个像素字节大小23 bih.biCompression = BI_RGB;24 bih.biHeight = bmp.bmHeight; // 高度25 bih.biPlanes = 1;26 bih.biSize = sizeof(BITMAPINFOHEADER);27 bih.biSizeImage = bmp.bmWidthBytes * bmp.bmHeight; // 图像数据大小28 bih.biWidth = bmp.bmWidth; // 宽度29 30 BITMAPFILEHEADER bfh = { 0}; // 位图文件头31 bfh.bfOffBits = sizeof(BITMAPFILEHEADER) + sizeof(BITMAPINFOHEADER); // 到位图数据的偏移量32 bfh.bfSize = bfh.bfOffBits + bmp.bmWidthBytes * bmp.bmHeight; // 文件总的大小33 bfh.bfType = (WORD)0x4d42;34 35 fwrite(&bfh, 1, sizeof(BITMAPFILEHEADER), fp); //写入位图文件头36 37 fwrite(&bih, 1, sizeof(BITMAPINFOHEADER), fp); //写入位图信息头38 39 byte * p = new byte[bmp.bmWidthBytes * bmp.bmHeight]; //申请内存保存位图数据40 41 GetDIBits(memDC.m_hDC, (HBITMAP) memBitmap.m_hObject, 0, rect.Height(), p, 42 (LPBITMAPINFO) &bih, DIB_RGB_COLORS); //获取位图数据43 44 fwrite(p, 1, bmp.bmWidthBytes * bmp.bmHeight, fp); //写入位图数据45 delete [] p; 46 fclose(fp);47 memDC.SelectObject(oldmemBitmap);48 memDC.DeleteDC();49 }
http://www.cnblogs.com/zjutlitao/p/3577991.html