明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺!

自動截屏到文件的小程序

[摘要](一)功能實(shí)現(xiàn)了一個(gè)定時(shí)截取當(dāng)前屏幕圖像的小程序。(二)準(zhǔn)備工作1)建立VC CONSOLE APPLICATION,選擇MFC SUPPORT2)在STDAFX.H文件中加入頭文件:conio.h(三)主程序主程序代碼如下: char Filename[100]; i...
(一)功能
實(shí)現(xiàn)了一個(gè)定時(shí)截取當(dāng)前屏幕圖像的小程序。

(二)準(zhǔn)備工作
1)建立VC CONSOLE APPLICATION,選擇MFC SUPPORT
2)在STDAFX.H文件中加入頭文件:conio.h

(三)主程序
主程序代碼如下:
        char Filename[100];
        int count = 0;

        while(!_kbhit())//用戶按鍵則退出
        {
            Sleep(5000);//掛起5秒

            count ++;
            
            sprintf(Filename, "%d.bmp", count);

            Screen(Filename);//調(diào)用Screen函數(shù)
        }
以上代碼每隔5秒鐘調(diào)用一次函數(shù)Screen,將當(dāng)前屏幕保存到文件中。

(四)工作函數(shù)Screen
Screen實(shí)現(xiàn)了當(dāng)前屏幕內(nèi)容到bmp文件的拷貝。
源代碼如下:
void Screen(char filename[])
{
    CDC *pDC;//屏幕DC
    pDC = CDC::FromHandle(GetDC(NULL));//獲取當(dāng)前整個(gè)屏幕DC
    int BitPerPixel = pDC->GetDeviceCaps(BITSPIXEL);//獲得顏色模式
    int Width = pDC->GetDeviceCaps(HORZRES);
    int Height = pDC->GetDeviceCaps(VERTRES);

    cout << "當(dāng)前屏幕色彩模式為" << BitPerPixel << "位色彩" << endl
         << "屏幕寬度:" << Width << endl
         << "屏幕高度:" << Height << endl << endl;
    
    CDC memDC;//內(nèi)存DC
    memDC.CreateCompatibleDC(pDC);
    
    CBitmap memBitmap, *oldmemBitmap;//建立和屏幕兼容的bitmap
    memBitmap.CreateCompatibleBitmap(pDC, Width, Height);

    oldmemBitmap = memDC.SelectObject(&memBitmap);//將memBitmap選入內(nèi)存DC
    memDC.BitBlt(0, 0, Width, Height, pDC, 0, 0, SRCCOPY);//復(fù)制屏幕圖像到內(nèi)存DC

    //以下代碼保存memDC中的位圖到文件
    BITMAP bmp;
    memBitmap.GetBitmap(&bmp);//獲得位圖信息
    
    FILE *fp = fopen(filename, "w+b");

    BITMAPINFOHEADER bih = {0};//位圖信息頭
    bih.biBitCount = bmp.bmBitsPixel;//每個(gè)像素字節(jié)大小
    bih.biCompression = BI_RGB;
    bih.biHeight = bmp.bmHeight;//高度
    bih.biPlanes = 1;
    bih.biSize = sizeof(BITMAPINFOHEADER);
    bih.biSizeImage = bmp.bmWidthBytes * bmp.bmHeight;//圖像數(shù)據(jù)大小
    bih.biWidth = bmp.bmWidth;//寬度
    
    BITMAPFILEHEADER bfh = {0};//位圖文件頭
    bfh.bfOffBits = sizeof(BITMAPFILEHEADER) + sizeof(BITMAPINFOHEADER);//到位圖數(shù)據(jù)的偏移量
    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];//申請內(nèi)存保存位圖數(shù)據(jù)

    GetDIBits(memDC.m_hDC, (HBITMAP) memBitmap.m_hObject, 0, Height, p,
        (LPBITMAPINFO) &bih, DIB_RGB_COLORS);//獲取位圖數(shù)據(jù)

    fwrite(p, 1, bmp.bmWidthBytes * bmp.bmHeight, fp);//寫入位圖數(shù)據(jù)

    delete [] p;

    fclose(fp);

    memDC.SelectObject(oldmemBitmap);
}

(五)改進(jìn)
可以在系統(tǒng)熱鍵中加入自定義熱鍵,進(jìn)行動態(tài)的(按用戶需要的)截屏操作。