我们正在使用WPF开发erp应用程序,该应用程序目前仍处于初始阶段。

我需要知道如何在运行时使用C#代码为特定的子窗口实例将.png或.jpg图标的颜色更改为灰度。

例如,窗口处理编辑操作应禁用“保存图像”按钮,并将其变成灰度。

非常感谢您的帮助,
谢谢。

最佳答案

我使用这种扩展方法将图像转换为灰度:

public static Image MakeGrayscale(this Image original)
{
    Image newBitmap = new Bitmap(original.Width, original.Height);
    Graphics g = Graphics.FromImage(newBitmap);
    ColorMatrix colorMatrix = new ColorMatrix(
        new float[][]
        {
            new float[] {0.299f, 0.299f, 0.299f, 0, 0},
            new float[] {0.587f, 0.587f, 0.587f, 0, 0},
            new float[] {.114f, .114f, .114f, 0, 0},
            new float[] {0, 0, 0, 1, 0},
            new float[] {0, 0, 0, 0, 1}
        });

    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);

    g.Dispose();
    return newBitmap;
}

关于c# - 使用C#代码在运行时将图像按钮图标的颜色更改为灰度,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10120516/

10-17 00:41