0

我正在尝试在 windows phone 8 中使用 WriteableBitmap 更改图像的颜色。基本上,我有一个黑色和透明背景的图标 (png)。我试图将其转换为具有透明背景的白色,如下所示:

StreamResourceInfo sri = Application.GetResourceStream(new Uri(value.ToString(), UriKind.Relative));
BitmapImage src = new BitmapImage();
src.SetSource(sri.Stream);

// Get WriteableBitmap
WriteableBitmap bitmap = new WriteableBitmap(src);

// Iterate through each pixel.
for (int x = 0; x < bitmap.Pixels.Length; x++)
{
    byte[] actualColorValues = BitConverter.GetBytes(bitmap.Pixels[x]);
    byte[] modifiedColorValues = new byte[4];
    modifiedColorValues[0] = 255;
    modifiedColorValues[1] = 255;
    modifiedColorValues[2] = 255;
    //opacity
    modifiedColorValues[3] = actualColorValues[3];
    bitmap.Pixels[x] = BitConverter.ToInt32(modifiedColorValues, 0);
 }
 // Set Image object, defined in XAML, to the modified bitmap.
 return bitmap;

图像转换为白色,但略微失真,尤其是边缘,并且作为实际图标的边缘并不完美,尤其是边缘。这是一个已知问题,还是我错过了什么?

4

1 回答 1

0

关于如何更改像素颜色有一个很好的例子

我也会使用这样的方法来获得颜色的 int 等价物

public static int GetArgbValues(Color c)
{
    string colorcode = c.ToString();
    int argb = Int32.Parse(colorcode.Replace("#", ""), NumberStyles.HexNumber);

    return argb;
}
于 2014-01-08T04:16:45.090 回答