在WPF中将颜色位图绘制为灰度

时间:2014-09-10 01:02:40

标签: c# .net wpf graphics bitmap

我正在寻找一种将位图绘制为WPF DrawingContext作为灰度的方法。我希望能够在给定的x,y位置绘制它并将其缩放到给定的宽度和高度。 256级灰度(8位灰度)足够好。我在磁盘上有一个彩色位图文件,它可以是bmp,png或jpg格式。

2 个答案:

答案 0 :(得分:2)

using System;
using System.Windows;
using System.Windows.Media;
using System.Windows.Media.Imaging;

void DrawBitmapGreyscale(DrawingContext dc, string filename, int x, int y, int width, int height)
{
    // Load the bitmap into a bitmap image object
    BitmapImage bitmap = new BitmapImage();
    bitmap.BeginInit();
    bitmap.CacheOption = BitmapCacheOption.OnLoad;
    bitmap.UriSource = new Uri(filename);
    bitmap.EndInit();

    // Convert the bitmap to greyscale, and draw it.
    FormatConvertedBitmap bitmapGreyscale = new FormatConvertedBitmap(bitmap, PixelFormats.Gray8, BitmapPalettes.Gray256, 0.0);
    dc.DrawImage(bitmapGreyscale, new Rect(x, y, width, height));
}

答案 1 :(得分:1)

你可以使用效果来做到这一点 - 可能不像纯代码那样高效,但提供了灵活性。

<Image Source="../Images/ChartSample.png" Stretch="Uniform" Margin="5">
<Image.Effect>
    <ee:ColorToneEffect DarkColor="Black" LightColor="White" ToneAmount="0" Desaturation="1" />
</Image.Effect>

将名称空间引用为

xmlns:ee=”http://schemas.microsoft.com/expression/2010/effects&#8221;