VC屏幕截图并保存为bmp、jpg、png等格式文件

int main()
{
HDC hdcSrc = GetDC(NULL);
int nBitPerPixel = GetDeviceCaps(hdcSrc, BITSPIXEL);
int nWidth = GetDeviceCaps(hdcSrc, HORZRES);
int nHeight = GetDeviceCaps(hdcSrc, VERTRES);
CImage image;
image.Create(nWidth, nHeight, nBitPerPixel);
BitBlt(image.GetDC(), 0, 0, nWidth, nHeight, hdcSrc, 0, 0, SRCCOPY);
ReleaseDC(NULL, hdcSrc);
image.ReleaseDC();
image.Save(L"1.png", Gdiplus::ImageFormatPNG);//ImageFormatJPEG
return 0;

}

http://blog.csdn.net/chinafe/article/details/16940585


注意:HDC hdcSrc = GetDC(NULL); 和 ReleaseDC(NULL, hdcSrc);语句中的NULL是替代参数,在此位置应根据需要提供要截屏的窗口DC。

你可能感兴趣的:(VC屏幕截图并保存为bmp、jpg、png等格式文件)