我正在尝试使用其中一种颜色替换为白色alpha来显示图像,以便我可以将其叠加在其他图像之上。我已经得到它,以便我可以轻松地改变颜色,但改变它是透明的是我的想法。这是我的代码,使用C#和WPF。
private void SetAlpha(string location)
{
//bmp is a bitmap source that I load from an image
bmp = new BitmapImage(new Uri(location));
int[] pixels = new int[(int)bmp.Width * (int)bmp.Height];
//still not sure what 'stride' is. Got this part from a tutorial
int stride = (bmp.PixelWidth * bmp.Format.BitsPerPixel + 7)/8;
bmp.CopyPixels(pixels, stride, 0);
int oldColor = pixels[0];
int red = 255;
int green = 255;
int blue = 255;
int alpha = 0;
int color = (alpha << 24) + (red << 16) + (green << 8) + blue;
for (int i = 0; i < (int)bmp.Width * (int)bmp.Height; i++)
{
if (pixels[i] == oldColor)
{
pixels[i] = color;
}
}
//remake the bitmap source with these pixels
bmp = BitmapSource.Create(bmp.PixelWidth, bmp.PixelHeight, bmp.DpiX, bmp.DpiY, bmp.Format, bmp.Palette, pixels, stride);
}
}
我有两个图像,我正在测试它。 Image1就像我将要处理的那样,原始图像没有透明度。 Image2已经具有透明度。我认为从image2(0x00ffffff)中获取值会很容易,但这只会使其变为白色并覆盖后面的任何图像。
两个图像都是png,两者的格式都是Bgr32。
有谁知道如何让图片透明?