MFC截图功能(全屏)

按钮响应函数如下:

CTime tCurTime = CTime::GetCurrentTime();//当前日期时间;
CString strTime;
strTime = tCurTime.Format("%Y%m%d_%H%M%S");//将CTime转成CString;
CFileDialog  Dlg(FALSE,NULL,strTime,OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT,"excel文件(*.jpg)");
if(Dlg.DoModal() == IDOK)
{
m_str_save_path = Dlg.GetPathName();
m_str_save_path=m_str_save_path+".jpg";
}
CDC *pDC=GetDesktopWindow()->GetDC();//屏幕DC
int BitPerPixel = pDC->GetDeviceCaps(BITSPIXEL);//获得颜色模式
int Width = pDC->GetDeviceCaps(HORZRES);
int Height = pDC->GetDeviceCaps(VERTRES);




CDC memDC;//内存DC
memDC.CreateCompatibleDC(pDC);


CBitmap memBitmap, *oldmemBitmap;//建立和屏幕兼容的bitmap
memBitmap.CreateCompatibleBitmap(pDC, Width, Height);


oldmemBitmap = memDC.SelectObject(&memBitmap);//将memBitmap选入内存DC
memDC.BitBlt(0, 0, Width, Height, pDC, 0, 0, SRCCOPY);//复制屏幕图像到内存DC


//以下代码保存memDC中的位图到文件
BITMAP bmp;
memBitmap.GetBitmap(&bmp);//获得位图信息




//m_str_save_path="c:\\1.jpg";




FILE *fp = fopen(m_str_save_path, "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, Height, p, 
(LPBITMAPINFO) &bih, DIB_RGB_COLORS);//获取位图数据


fwrite(p, 1, bmp.bmWidthBytes * bmp.bmHeight, fp);//写入位图数据


delete [] p;


fclose(fp);


memDC.SelectObject(oldmemBitmap);
memDC.DeleteDC();
ReleaseDC(pDC);  


//  if(this->m_bOpenMspaint)  
::ShellExecute(NULL,"open","mspaint.exe",/*调用画图程序*/  
m_str_save_path,  
NULL,  
SW_SHOWMAXIMIZED);  

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值