VC6.0 MFC下截取窗口特定部分并保存为bmp图片的类
文章转自王牌软件
站长推荐:NSetup一键部署软件
一键式完成美化安装包制作,自动增量升级,数据统计,数字签名。应对各种复杂场景,脚本模块化拆分,常规复杂的脚本代码,图形化设置。无需专业的研发经验,轻松完成项目部署。(www.nsetup.cn)
只回答业务咨询
站长推荐:NSetup一键部署软件
一键式完成美化安装包制作,自动增量升级,数据统计,数字签名。应对各种复杂场景,脚本模块化拆分,常规复杂的脚本代码,图形化设置。无需专业的研发经验,轻松完成项目部署。(www.nsetup.cn)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
/*类名称:bmpScreen.h。 ; 类功能:提供了一个MFC下截取窗口特定部分并保存为bmp图片的类。 ; 类参数:Crect rect, int left, int top, int top, char* name。 ; 类参数说明: ; (1)Crect rect 定义截图框的大小。 ; (2)int left 定义截图框距截图窗口左边的距离。 ; (3)int top 定义截图框距截图窗口上边的距离。 ; (4)char *name 定义所截图的bmp图像的名称,该图像默认保存在所建项目的目录下。 */ #include "stdafx.h" #include "bmpScreen.h" void bmpScreen::screenShot(CRect rect,int left,int top,char *name) { CBitmap* m_pBitmap; // 加入类成员 CFrameWnd* pMainFrame = (CFrameWnd*)AfxGetMainWnd(); // 获得截图窗口的指针,默认为主窗口,可以更改为其他的窗口。 CPaintDC dc(pMainFrame); m_pBitmap=new CBitmap; m_pBitmap->CreateCompatibleBitmap(&dc,rect.Width(),rect.Height()); CDC memDC; memDC.CreateCompatibleDC(&dc); CBitmap memBitmap, *oldmemBitmap; // 建立和屏幕兼容的bitmap memBitmap.CreateCompatibleBitmap(&dc, rect.Width(),rect.Height()); oldmemBitmap = memDC.SelectObject(&memBitmap);//将memBitmap选入内存DC memDC.BitBlt(0, 0, rect.Width(),rect.Height(), &dc,left, top, SRCCOPY); // 调解高度宽度 BITMAP bmp; memBitmap.GetBitmap(&bmp); // 获得位图信息 FILE *fp = fopen(name, "w+b"); BITMAPINFOHEADER bih = {0}; // 位图信息头 bih.biBitCount = bmp.bmBitsPixel; // 每个像素字节大小 bih.biCompression = BI_RGB; bih.biHeight = bmp.bmHeight; // 高度 bih.biPlanes = 1; bih.biSize = sizeof(BITMAPINFOHEADER); bih.biSizeImage = bmp.bmWidthBytes * bmp.bmHeight; // 图像数据大小 bih.biWidth = bmp.bmWidth; // 宽度 BITMAPFILEHEADER bfh = {0}; // 位图文件头 bfh.bfOffBits = sizeof(BITMAPFILEHEADER) + sizeof(BITMAPINFOHEADER); // 到位图数据的偏移量 bfh.bfSize = bfh.bfOffBits + bmp.bmWidthBytes * bmp.bmHeight; // 文件总的大小 bfh.bfType = (WORD)0x4d42; fwrite(&bfh, 1, sizeof(BITMAPFILEHEADER), fp); //写入位图文件头 fwrite(&bih, 1, sizeof(BITMAPINFOHEADER), fp); //写入位图信息头 byte * p = new byte[bmp.bmWidthBytes * bmp.bmHeight]; //申请内存保存位图数据 GetDIBits(memDC.m_hDC, (HBITMAP) memBitmap.m_hObject, 0, rect.Height(), p, (LPBITMAPINFO) &bih, DIB_RGB_COLORS); //获取位图数据 fwrite(p, 1, bmp.bmWidthBytes * bmp.bmHeight, fp); //写入位图数据 delete [] p; fclose(fp); memDC.SelectObject(oldmemBitmap); memDC.DeleteDC(); } /*类名称:bmpScreen.h。 ; 类功能:提供了一个MFC下截取窗口特定部分并保存为bmp图片的类。 ; 类参数:Crect rect, int left, int top, int top, char* name。 ; 类参数说明: ; (1)Crect rect 定义截图框的大小。 ; (2)int left 定义截图框距截图窗口左边的距离。 ; (3)int top 定义截图框距截图窗口上边的距离。 ; (4)char *name 定义所截图的bmp图像的名称,该图像默认保存在所建项目的目录下。 */ #ifndef H_BMPSCREEN_H #define H_BMPSCREEN_H class bmpScreen { public: void screenShot(CRect rect,int left,int top,char *name); }; #endif |
学习日记,兼职软件设计,软件修改,毕业设计。
本文出自 学习日记,转载时请注明出处及相应链接。
本文永久链接: https://www.softwareace.cn/?p=340