zoukankan      html  css  js  c++  java
  • MFC实现屏幕截屏

    屏幕截屏

    void CMainFormDlg::GetScreenPic(Rect area, OUT Mat &img, float rate, bool gray) {
    
    	CDC *pDC = GetDesktopWindow()->GetDC();//屏幕DC
    	int BitPerPixel = pDC->GetDeviceCaps(BITSPIXEL);//获得颜色模式
    	int Width = MIN(pDC->GetDeviceCaps(HORZRES), area.width);
    	int Height = MIN(pDC->GetDeviceCaps(VERTRES), area.height);
    
    
    	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, area.x, area.y, SRCCOPY);//复制屏幕图像到内存DC
    
    	BITMAP bmp;
    	memBitmap.GetBitmap(&bmp);//获得位图信息
    	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;
    
    	//Mat(nHeight, nWidth, CV_8UC1, pImageData).copyTo(CCDImage[0]);
    	byte * p = new byte[bmp.bmWidthBytes * bmp.bmHeight];//申请内存保存位图数据
    	GetDIBits(memDC.m_hDC, (HBITMAP)memBitmap.m_hObject, 0, Height, p, (LPBITMAPINFO)&bih, DIB_RGB_COLORS);//获取位图数据
    
    	Mat temp;
    	flip(Mat(Height, Width, CV_8UC4, p), temp, 0);
    	delete[] p;
    
    	memDC.SelectObject(oldmemBitmap);
    	memDC.DeleteDC();
    	ReleaseDC(pDC);
    
    	if (gray) {
    		cvtColor(temp, temp, CV_BGRA2GRAY);
    		resize(temp, img, Size(), rate, rate);
    	} else {
    		cvtColor(temp, temp, CV_BGRA2BGR);
    		resize(temp, img, Size(), rate, rate);
    	}
    }
    
    
  • 相关阅读:
    solidity定长数组和动态数组
    以太坊solidity智能合约-生成随机数
    Drools规则引擎-如果判断某个对象中的集合是否包含指定的值
    solidity 智能合约之间的调用
    如果离开一线城市,你会选择如何开始
    solidity的delete操作汇总
    Drools规则引擎-如果Fact对象参数为null如何处理
    信息孤岛
    异构计算
    xml
  • 原文地址:https://www.cnblogs.com/Abraverman/p/15200199.html
Copyright © 2011-2022 走看看