博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[MFC] MFC 获取指定窗口截图(大小可调)
阅读量:6423 次
发布时间:2019-06-23

本文共 2583 字,大约阅读时间需要 8 分钟。

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
你可能感兴趣的文章
JDK内置工具jstack(Java Stack Trace)(转)
查看>>
[Vue @Component] Pass Props to Vue Functional Templates
查看>>
linux端口开放指定端口的两种方法
查看>>
wpf窗体定位
查看>>
[Algorithms] Insertion sort algorithm using TypeScript
查看>>
SpringBoot+gradle项目构建war
查看>>
Python使用MySQL数据库【转】
查看>>
Android蓝牙——HID开发
查看>>
Android 自定义Dialog中加EditText弹不出键盘跟Dialog遮挡键盘的问题
查看>>
__stdio_common_vsnprintf_s,该符号在函数 _vsnprintf_s_l 中被引用
查看>>
Linux iptables开放特定端口
查看>>
mongodb之 mongodump 与 mongorestore
查看>>
Cent OS home下中文目录改成英文目录
查看>>
dedecms调用日期格式化形式大全
查看>>
springboot结合maven打包发布
查看>>
thinkphp5的Auth权限认证实战
查看>>
Service插件化解决方案
查看>>
vc++各种连接的处理方法
查看>>
软件观点 - 软件工厂方法
查看>>
EM 【 Enterprise Manager】 的配置
查看>>