C: take screenshot

15,217

Solution 1

Have you tried google? This forum entry has an example, complete with C source code using the Win32 API.

EDIT: Found a duplicate in the meantime: How can I take a screenshot and save it as JPEG on Windows?

Solution 2

in case you don't want to bother to click on link

#include <windows.h>

bool SaveBMPFile(char *filename, HBITMAP bitmap, HDC bitmapDC, int width, int height);

bool ScreenCapture(int x, int y, int width, int height, char *filename){
  // get a DC compat. w/ the screen
  HDC hDc = CreateCompatibleDC(0);

  // make a bmp in memory to store the capture in
  HBITMAP hBmp = CreateCompatibleBitmap(GetDC(0), width, height);

  // join em up
  SelectObject(hDc, hBmp);

  // copy from the screen to my bitmap
  BitBlt(hDc, 0, 0, width, height, GetDC(0), x, y, SRCCOPY);

  // save my bitmap
  bool ret = SaveBMPFile(filename, hBmp, hDc, width, height);

  // free the bitmap memory
  DeleteObject(hBmp);

  return ret;
}

main(){
  ScreenCapture(500, 200, 300, 300, "testScreenCap.bmp");
  system("pause");
}
Share:
15,217
Ariyan
Author by

Ariyan

[Linux] [PHP , Python , Java , C ]

Updated on June 28, 2022

Comments

  • Ariyan
    Ariyan almost 2 years

    How can I capture screen and save it as am image in C?
    OS: windows (XP & Seven)

    Thanks