C#에서 이미지를 16비트 회색조로 변환
이미지를 픽셀당 16비트 회색조로 변환하는 것은 단순히 개별 R, G, B 구성 요소를 휘도 값으로 설정하는 것과 다릅니다. C#에서 이를 달성하는 방법은 다음과 같습니다.
<code class="language-csharp">Bitmap grayScaleBP = new System.Drawing.Bitmap(2, 2, System.Drawing.Imaging.PixelFormat.Format16bppGrayScale);</code>
회색조로 변환
기존 이미지를 회색조로 변환하려면:
<code class="language-csharp">Bitmap c = new Bitmap("fromFile"); Bitmap d; for (int x = 0; x < ...</code>
(여기서는 원본 코드가 불완전하고 오류가 있어서 일부 코드를 생략합니다)
더 빠른 옵션
더 빠른 그레이스케일 변환을 위해 ColorMatrix를 사용할 수 있습니다.
<code class="language-csharp">public static Bitmap MakeGrayscale3(Bitmap original) { // 创建新的灰度图像 Bitmap newBitmap = new Bitmap(original.Width, original.Height); // 从新图像获取图形上下文 using (Graphics g = Graphics.FromImage(newBitmap)) { // 定义灰度颜色矩阵 ColorMatrix colorMatrix = new ColorMatrix( new float[][] { new float[] {.3f, .3f, .3f, 0, 0}, new float[] {.59f, .59f, .59f, 0, 0}, new float[] {.11f, .11f, .11f, 0, 0}, new float[] {0, 0, 0, 1, 0}, new float[] {0, 0, 0, 0, 1} }); // 使用灰度颜色矩阵将原始图像绘制到新图像上 using (ImageAttributes attributes = new ImageAttributes()) { attributes.SetColorMatrix(colorMatrix); g.DrawImage(original, new Rectangle(0, 0, original.Width, original.Height), 0, 0, original.Width, original.Height, GraphicsUnit.Pixel, attributes); } } return newBitmap; }</code>
위 내용은 C#에서 이미지를 16비트 회색조로 변환하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!