일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- mfc
- public
- Read
- Class
- stream
- Contour
- digitalRead
- length
- sensor
- inheritance
- atmega328
- parameter
- memory
- Encapusulation
- preprocessing
- aduino
- file access
- wpf
- Android
- java
- Unity
- UNO
- compare
- Barcode
- Binary
- APP
- SERIAL
- flutter
- Overloading
- Pointer
Archives
- Today
- Total
목록BITMAPINFO (1)
폴크(FOLC)
MFC 테크닉 - 스크린 캡쳐 (Bitmap)
# 현재 모니터 화면에서 특정한 영역의 정보를 이미지 파일로 저장 > Bitmap 형태를 이용 # MFC 에서 Bitmap 을 기본으로 제공 # 소스 코드 bool CScreenCapture::CaptureFullscreen() { HDC h_screen_dc = ::GetDC(NULL); int dstX = ::GetDeviceCaps(h_screen_dc, HORZRES); int dstY = ::GetDeviceCaps(h_screen_dc, VERTRES); CaptureROI(h_screen_dc, 0, 0, dstX, dstY); if (NULL != h_screen_dc) ::ReleaseDC(NULL, h_screen_dc); return true; } bool CScreenCapture:..
C, C++, MFC/C, C++, MFC 테크닉
2021. 12. 13. 20:10