[C++] Снимок экрана с сохранением в файл

Discussion in 'С/С++, C#, Rust, Swift, Go, Java, Perl, Ruby' started by Indev, 24 Apr 2012.

  1. Indev

    Indev New Member

    Joined:
    23 Dec 2011
    Messages:
    59
    Likes Received:
    3
    Reputations:
    0
    Мне надо программно сделать скриншот экрана и потом сохранить его в файл.
    Подскажите пожалуйста!
     
  2. Spot

    Spot Elder - Старейшина

    Joined:
    1 Mar 2007
    Messages:
    461
    Likes Received:
    38
    Reputations:
    1
    А гугл вообще никак?"Сделатьь скриншот C++"
    И что мы видим? Первая же Сцыль

    А таких сцылей ещё куча, и везде есть готовые решения.

    Я всегда буду пользоваться поисковиком перед тем как задать вопрос.
    Я всегда буду пользоваться поисковиком перед тем как задать вопрос.
    Я всегда буду пользоваться поисковиком перед тем как задать вопрос.
     
  3. enigma

    enigma Member

    Joined:
    10 Jul 2011
    Messages:
    80
    Likes Received:
    15
    Reputations:
    7
    http://forum.antichat.ru/showpost.php?p=3048264&postcount=3
     
  4. ree4

    ree4 New Member

    Joined:
    9 Mar 2011
    Messages:
    28
    Likes Received:
    2
    Reputations:
    0
    гуглом не пробывал пользоваться? - научись это делать.
    а так вот код делает скриншот:


    TPicture *p=new TPicture;
    HWND hwnd=GetDesktopWindow();
    HDC hdc=GetWindowDC(hwnd);
    TCanvas *C=new TCanvas;
    C->Handle=hdc;
    int w=Screen->Width;
    int h=Screen->Height;
    p->Bitmap->Width=w;
    p->Bitmap->Height=h;
    p->Bitmap->Canvas->CopyMode=cmSrcCopy;
    p->Bitmap->Canvas->CopyRect(TRect(0,0,w,h),C,TRect(0,0,w,h));
    ReleaseDC(hwnd,hdc);
    delete C;
    p->Bitmap->SaveToFile("screen.bmp");
    delete p;
     
  5. enigma

    enigma Member

    Joined:
    10 Jul 2011
    Messages:
    80
    Likes Received:
    15
    Reputations:
    7
    Среда разработки какая?
     
  6. tester_new

    tester_new Elder - Старейшина

    Joined:
    12 Feb 2012
    Messages:
    300
    Likes Received:
    45
    Reputations:
    24
    С++

    Code:
    int CaptureBMP(LPCTSTR szFile)
    {
        HDC hdcScr, hdcMem;
        HBITMAP hbmScr;
        BITMAP bmp;
        int iXRes, iYRes;
        hdcScr = CreateDC("DISPLAY", NULL, NULL, NULL);
        hdcMem = CreateCompatibleDC(hdcScr);
        iXRes = GetDeviceCaps(hdcScr, HORZRES);
        iYRes = GetDeviceCaps(hdcScr, VERTRES);
        hbmScr = CreateCompatibleBitmap(hdcScr, iXRes, iYRes);
        if (hbmScr == 0) 
    		return 0;
        if (!SelectObject(hdcMem, hbmScr)) 
    		return 0;
        if (!StretchBlt(hdcMem, 0, 0, iXRes, iYRes,hdcScr,0, 0, iXRes, iYRes,SRCCOPY))
            return 0;
        PBITMAPINFO pbmi;
        WORD cClrBits;
        if (!GetObject(hbmScr, sizeof(BITMAP), (LPSTR) &bmp))
    		return 0;
        cClrBits = (WORD)(bmp.bmPlanes * bmp.bmBitsPixel);
        if (cClrBits == 1)
            cClrBits = 1;
        else if (cClrBits <= 4)
            cClrBits = 4;
        else if (cClrBits <= 8)
            cClrBits = 8;
        else if (cClrBits <= 16)
            cClrBits = 16;
        else if (cClrBits <= 24)
            cClrBits = 24;
        else cClrBits = 32;
        if (cClrBits != 24)
            pbmi = (PBITMAPINFO) LocalAlloc(LPTR,
                    sizeof(BITMAPINFOHEADER) +
                    sizeof(RGBQUAD) * (1 << cClrBits));
        else
            pbmi = (PBITMAPINFO) LocalAlloc(LPTR,sizeof(BITMAPINFOHEADER));
        pbmi->bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
        pbmi->bmiHeader.biWidth = bmp.bmWidth;
        pbmi->bmiHeader.biHeight = bmp.bmHeight;
        pbmi->bmiHeader.biPlanes = bmp.bmPlanes;
        pbmi->bmiHeader.biBitCount = bmp.bmBitsPixel;
        if (cClrBits < 24)
            pbmi->bmiHeader.biClrUsed = (1 << cClrBits);
        pbmi->bmiHeader.biCompression = BI_RGB;
        pbmi->bmiHeader.biSizeImage = (pbmi->bmiHeader.biWidth + 7) / 8* pbmi->bmiHeader.biHeight * cClrBits;
        pbmi->bmiHeader.biClrImportant = 0;
        HANDLE hf;                  // file handle
        BITMAPFILEHEADER hdr;       // bitmap file-header
        PBITMAPINFOHEADER pbih;     // bitmap info-header
        LPBYTE lpBits;              // memory pointer
        DWORD dwTotal;              // total count of bytes
        DWORD cb;                   // incremental count of bytes
        BYTE *hp;                   // byte pointer
        DWORD dwTmp;
        pbih = (PBITMAPINFOHEADER) pbmi;
        lpBits = (LPBYTE) GlobalAlloc(GMEM_FIXED, pbih->biSizeImage);
        if (!lpBits) return 0;
        if (!GetDIBits(hdcMem, hbmScr, 0, (WORD) pbih->biHeight, lpBits, pbmi, DIB_RGB_COLORS)) return 0;
        hf = CreateFile(szFile,GENERIC_READ | GENERIC_WRITE,(DWORD) 0,NULL,CREATE_ALWAYS,FILE_ATTRIBUTE_NORMAL,(HANDLE) NULL);
        if (hf == INVALID_HANDLE_VALUE) 
    		return 0;
        hdr.bfType = 0x4d42;        // 0x42 = "B" 0x4d = "M"
        hdr.bfSize = (DWORD) (sizeof(BITMAPFILEHEADER) +pbih->biSize + pbih->biClrUsed *sizeof(RGBQUAD) + pbih->biSizeImage);
        hdr.bfReserved1 = 0;
        hdr.bfReserved2 = 0;
        hdr.bfOffBits = (DWORD) sizeof(BITMAPFILEHEADER) +pbih->biSize + pbih->biClrUsed *sizeof (RGBQUAD);
        if (!WriteFile(hf, (LPVOID) &hdr, sizeof(BITMAPFILEHEADER), (LPDWORD) &dwTmp, NULL))
    		return 0;
     
        if (!WriteFile(hf, (LPVOID) pbih, sizeof(BITMAPINFOHEADER)+ pbih->biClrUsed * sizeof (RGBQUAD),(LPDWORD) &dwTmp, NULL))
            return 0;
        dwTotal = cb = pbih->biSizeImage;
        hp = lpBits;
        if (!WriteFile(hf, (LPSTR) hp, (int) cb, (LPDWORD) &dwTmp, NULL)) return 0;
     
        if (!CloseHandle(hf)) 
    		return 0;
        GlobalFree((HGLOBAL)lpBits);
        ReleaseDC(0, hdcScr);
        ReleaseDC(0, hdcMem);
        return 1;
    }
    
     
  7. ree4

    ree4 New Member

    Joined:
    9 Mar 2011
    Messages:
    28
    Likes Received:
    2
    Reputations:
    0
    Builder C++