프로그래밍언어/VB.NET

GetPixel 로 불러온값을 Color 로 변환

부산딸랑이 2014. 3. 9. 02:47



dim i as integer = 6421504
dim c as color

c = System.Drawing.Color.FromArgb(i)
Probably the Alpha channel is missing, so you'd have to use

c = System.Drawing.Color.FromArgb(i or &Hff000000)


'프로그래밍언어 > VB.NET' 카테고리의 다른 글

변수이름으로 컨트롤 접근  (0) 2014.03.19
배열내 갯수 출력  (0) 2014.03.10
ProgressBar 사용하기 (BackgroundWorker)  (0) 2014.03.09
GETpixel 로 색깔가져오기  (0) 2013.11.02
실행된 파일경로  (0) 2013.10.21