c# – 在PNG图像中用白色替换透明背景

前端之家收集整理的这篇文章主要介绍了c# – 在PNG图像中用白色替换透明背景前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个PNG图像从 Android中的DrawingView发送到WCF服务.图像以32位发送,并具有透明背景.我想用白色替换透明色(缺少更好的单词)背景.到目前为止我的代码看起来像这样:
// Converting image to Bitmap object
Bitmap i = new Bitmap(new MemoryStream(Convert.FromBase64String(image)));
// The image that is send from the tablet is 1280x692
// So we need to crop it
Rectangle cropRect = new Rectangle(640,640,692);
//HERE
Bitmap target = i.Clone(cropRect,i.PixelFormat);
target.Save(string.Format("c:\\images\\{0}.png",randomFileName()),System.Drawing.Imaging.ImageFormat.Png);

以上工作正常,但图像具有透明背景.我注意到在Paint.NET中你可以简单地将PNG格式设置为8位,并将背景设置为白色.但是,当我尝试使用时:

System.Drawing.Imaging.PixelFormat.Format8bppIndexed

我得到的只是一张完全黑色的照片.

问:如何在png中用白色替换透明背景?

PS.图像为灰度.

解决方法

这将绘制到给定的颜色:
Bitmap Transparent2Color(Bitmap bmp1,Color target)
{
    Bitmap bmp2 = new Bitmap(bmp1.Width,bmp1.Height);
    Rectangle rect = new Rectangle(Point.Empty,bmp1.Size);
    using (Graphics G = Graphics.FromImage(bmp2) )
    {
        G.Clear(target);
        G.DrawImageUnscaledAndClipped(bmp1,rect);
    }
    return bmp2;
}

这使用了G.CompositingMode = System.Drawing.Drawing2D.CompositingMode.SourceOver;,这是默认值.它根据绘制图像的alpha通道将绘制的图像与背景混合.

原文链接:https://www.f2er.com/csharp/96562.html

猜你在找的C#相关文章