일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- memory
- UNO
- Read
- Android
- public
- SERIAL
- flutter
- length
- file access
- preprocessing
- Unity
- Binary
- inheritance
- sensor
- Encapusulation
- Barcode
- Pointer
- APP
- Overloading
- compare
- Contour
- aduino
- stream
- java
- wpf
- Class
- atmega328
- parameter
- digitalRead
- mfc
Archives
- Today
- Total
목록bitspixel (1)
폴크(FOLC)
MFC 테크닉 - 스크린 캡쳐 ( CImage )
# 현재 모니터 화면에서 특정한 영역의 정보를 이미지 파일로 저장 > ATL::CImage 형태를 이용 # MFC 에서 CImage 을 기본으로 제공 # 소스 코드 HDC hdcSrc = ::GetWindowDC(NULL); const int size_x = GetSystemMetrics(SM_CXSCREEN); const int size_y = GetSystemMetrics(SM_CYSCREEN); const int BitpPx = GetDeviceCaps(hdcSrc, BITSPIXEL); CImage image; if (image.Create(size_x, size_y, BitpPx, 1) == TRUE) { BitBlt(image.GetDC(), 0, 0, size_x, size_y, hdcSrc..
C, C++, MFC/C, C++, MFC 테크닉
2021. 12. 24. 11:51