pen_BMP.cpp
上传用户:dq031136
上传日期:2022-08-08
资源大小:802k
文件大小:0k
源码类别:

VC书籍

开发平台:

C++ Builder

  1. HBITMAP hBitmap;
  2. HDC hDC;
  3. HDC hMemDC;
  4. //  Load the bitmap into memory
  5. hBitmap = LoadBitmap( hInst, "pen" );
  6. //  Paint the bitmap onto the MemDC and then the screen
  7. hDC = GetDc( hWnd );
  8. hMemDC = CreateCompatibleDC( hDC);
  9. SelectObject( hMemDC, hBitmap );
  10. BitBlt( hDC, 10, 10, 60, 60, hMemDC, 0, 0, SRCCOPY );
  11. DeleteDC( hMemDC );
  12. ReleaseDC( hWnd, hDC );
  13. DeleteObject( hBitmap );