728x90
반응형
728x170
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
728x90
반응형
그리드형(광고전용)
'C# > WinForm' 카테고리의 다른 글
[C#/WINFORM] 문자열 너비 구하기 (0) | 2015.09.02 |
---|---|
[C#/WINFORM] 히스토그램 비트맵 구하기 (0) | 2015.06.19 |
[C#/WINFORM] 비트맵 설정하기 (0) | 2015.06.19 |
[C#/WINFORM] 비트맵 배열 구하기 (0) | 2015.06.19 |
[C#/WINFORM] 회색조 비트맵 설정하기 (0) | 2015.06.15 |
[C#/WINFORM] 비트맵 경계선 설정하기 (0) | 2015.06.13 |
[C#/WINFORM] 회색조 비트맵 명도 조정하기 (0) | 2015.06.13 |
[C#/WINFORM] 비트맵 명도 조정하기 (0) | 2015.06.13 |
[C#/WINFORM] 회색조 비트맵 구하기 (0) | 2015.06.13 |
[C#/WINFORM] RichTextBox 클래스 : 텍스트 라인 추가하기 (0) | 2015.05.15 |
댓글을 달아 주세요