如何在C#中保存带背景的位图?

时间:2016-05-26 07:36:52

标签: c# bitmap

我使用Windows.UI是C#中的Winform。 我在Photoshop中有文件图像;它是透明的。像这样:

Image transparent

所以,我想要这张照片的背景;它会显示出来。 例如,我选择了橙色。

Image with background

我尝试过:

gbmp.Clear(Color.Orange);

但它覆盖了我的照片;图片中只有一种颜色是橙色。

我的代码:

Graphics gra = Graphics.FromImage(img);

Bitmap bmp = new Bitmap(@"" + pathToFile);
panel2.BackgroundImage = bmp;
Graphics gbmp = Graphics.FromImage(bmp);
gbmp.Clear(Color.Orange);

gbmp.DrawImage(
DrawText("WHAT UP?", fontType, myColorLabel1,
    Color.Transparent),
Point.Round(StretchImageSize(new Point(activeLabels[1].Location.X, activeLabels[1].Location.Y), panel2)));
gra.Dispose();
Guid id = Guid.NewGuid();
ScaleImage(bmp, witdhImg, heightImg)
    .Save(linkLocation + "\\" + id + "." + imgType,
        ImageFormat.Png);

我发现这篇文章就像How to Change Pixel Color of an Image in C#.NET

  

以下是我对Pixels所做的解决方案。

     

附加源代码,以便可以尝试精确并获得结果。

     

我有128x128(宽x高)的样本图像。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Drawing;
using System.IO;
//using System.Globalization;

namespace colorchange
{
   class Program
   {
      static void Main(string[] args)
      {
          try
          {
              Bitmap bmp = null;
              //The Source Directory in debug\bin\Big\
              string[] files = Directory.GetFiles("Big\\");
              foreach (string filename in files)
              {
                 bmp = (Bitmap)Image.FromFile(filename);                    
                 bmp = ChangeColor(bmp);
                 string[] spliter = filename.Split('\\');
                 //Destination Directory debug\bin\BigGreen\
                 bmp.Save("BigGreen\\" + spliter[1]);
              }                                                 
           }
           catch (System.Exception ex)
           {
              Console.WriteLine(ex.ToString());
           }            
       }        
       public static Bitmap ChangeColor(Bitmap scrBitmap)
       {
          //You can change your new color here. Red,Green,LawnGreen any..
          Color newColor = Color.Red;
          Color actualColor;            
          //make an empty bitmap the same size as scrBitmap
          Bitmap newBitmap = new Bitmap(scrBitmap.Width, scrBitmap.Height);
          for (int i = 0; i < scrBitmap.Width; i++)
          {
             for (int j = 0; j < scrBitmap.Height; j++)
             {
                //get the pixel from the scrBitmap image
                actualColor = scrBitmap.GetPixel(i, j);
                // > 150 because.. Images edges can be of low pixel colr. if we set all pixel color to new then there will be no smoothness left.
                if (actualColor.A > 150)
                    newBitmap.SetPixel(i, j, newColor);
                else
                    newBitmap.SetPixel(i, j, actualColor);
             }
          }            
          return newBitmap;
       }
   }
}
  

//下面是样本图像,应用不同颜色的结果不同

  

我们非常感谢代码修改。

它改变了图像中的对象;它无法改变背景。

您是否有任何想法更改此代码?

1 个答案:

答案 0 :(得分:1)

您正在使用此行:

gbmp.Clear(Color.Orange);

加载你的img后

使用绘制图像可能会帮助你

首先制作一个尺寸为img的位图

Bitmap bmp = new Bitmap(width, height)

将其清除为您的颜色:

bmp.Clear(Color.Orange);

然后在bmp上绘制img

也看这个链接,也许帮助你:

Using Graphics.DrawImage() to Draw Image with Transparency/Alpha Channel

https://msdn.microsoft.com/en-us/library/8517ckds%28v=vs.110%29.aspx