Tags
- solidity
- 좋은 개발자
- postman session
- UI/UX Engineer
- web developer
- postman collection
- LSL_Script
- C++
- postman pre-request
- MFC
- Interaction developer
- postman csv
- 프런트엔드
- postman collection variables
- Intellij
- Android
- Unity
- 다빈치 리졸브
- postman automations
- emplace_back
- Android/iOS Developer
- Java
- postman tests
- postman excel
- c#
- Front-end developer
- postman html parse
- postman
- oracle
- 우수한 프런트 개발자
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Archives
- Today
- Total
목록gray-scale (1)
david's daily developer note
C#, 이미지 작업.
C#에서 이미지 작업을 위한 기본적인 소스를 작성해본다. 1. 화면에 뿌려질 바탕 이미지를 초기화 한다. 뿌려질 폼의 크기와 같은 Bitmap 클레스를 만들고, Bitmap 클레스에서 Graphics을 얻어온다. 아래 소스의 grBm 은 바탕 이미지의 Graphics이 되고, 오픈한 이미지나 작업한 이미지를 뿌리게 된다. Bitmap drawBitmap = new Bitmap(ClientSize.Width, ClientSize.Height); Graphics grBm = Graphics.FromImage(drawBitmap); grBm.Clear(BackColor); 2. 앞에서 이미지를 뿌리기 위해서 초기화한 Graphics를 뿌려주는 이벤트를 추가하자. 이벤트는 폼의 변화가 발생하면 발생해야 함으로,..
[Develop] Language/C#
2010. 12. 8. 17:17