■ 회색조 비트맵의 배열을 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
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 |
using System.Drawing; #region 회색조 비트맵 배열 구하기 - GetGraySacleBitmapArray(sourceBitmap) /// <summary> /// 회색조 비트맵 배열 구하기 /// </summary> /// <param name="sourceBitmap">소스 비트맵</param> /// <returns>회색조 비트맵 배열</returns> public int[,] GetGraySacleBitmapArray(Bitmap sourceBitmap) { int[,] targetArray = new int[sourceBitmap.Height, sourceBitmap.Width]; Color color; for(int y = 0; y < sourceBitmap.Height; y++) { for(int x = 0; x < sourceBitmap.Width; x++) { color = sourceBitmap.GetPixel(x, y); targetArray[y, x] = (int)(0.299 * color.R + 0.587 * color.G + 0.114 * color.B); } } return targetArray; } #endregion |