gpt4 book ai didi

c# - 如何保存具有透明背景的 gif?

转载 作者:太空狗 更新时间:2023-10-30 00:44:58 26 4
gpt4 key购买 nike

我有一个应用程序,允许用户创建简单的图像,这些图像只不过是具有所需背景颜色的文本。用户可以从 System.Windows.Forms.ColorDialog 中选择一种颜色,并使用它来设置文本颜色和背景颜色。

背景颜色可以设置为透明(我使用 Color.Transparent 作为透明度的引用),选择后,我更新预览图像以正确显示文本和透明度。但是,当我去保存图像时,我无法获得与图像一起保存为 gif 的透明度。

我找到了 this article其中指出我应该使用 MakeTransparent设置透明度颜色的方法。

在我调用 Save 操作之前,我获取内存中的图像并使用黑色作为背景/透明颜色重新绘制它,然后在我保存图像之前调用 MakeTransperent 方法-内存图像。尽管如此,图像仍以黑色作为背景保存。

我可能做错了什么?


编辑:这是相关代码。

这是创建图像的方法。 overrideBG 变量用于指定我们是否应该将 gif 的透明度颜色设置为非 alpha 颜色。

void ReDrawImage(bool overrideBG = false) //My method that draws the image in memory.
{
//My In Memory Image creation
img = new Bitmap(sz.Width, sz.Height);
Graphics gfx = Graphics.FromImage(img);

...

//This portion of code sets the BG color to what should be the transparency color, if the BG is transparent
if (overrideBG)
{
gfx.Clear(TransparentColor); //TransparentColor = Black, unless Text Color is Black. If so, it equals White.
}
else
{
gfx.Clear(BackColorPreview.BackColor);
}

//Followed by code that writes the text.
}

//This is the save method (Assume we are always drawing a transparent background.)
Save()
{
ReDrawImage(true);
img.MakeTransparent(TransparentColor); //I've also tried moving this line before the ReDrawImage call
img.Save(SaveFile.FileName, ImageFormat.Gif);
ReDrawImage();
}

最佳答案

显然 MakeTransparent 和 gif 有问题。我找到了 this post它通过修改内存中的图像字节来提供和替代。这是帖子中的代码示例,已修复语法错误。

/// <summary>  
/// Returns a transparent background GIF image from the specified Bitmap.
/// </summary>
/// <param name="bitmap">The Bitmap to make transparent.</param>
/// <param name="color">The Color to make transparent.</param>
/// <returns>New Bitmap containing a transparent background gif.</returns>
public static Bitmap MakeTransparentGif(Bitmap bitmap, Color color)
{
byte R = color.R;
byte G = color.G;
byte B = color.B;
MemoryStream fin = new MemoryStream();
bitmap.Save(fin, System.Drawing.Imaging.ImageFormat.Gif);
MemoryStream fout = new MemoryStream((int)fin.Length);
int count = 0;
byte[] buf = new byte[256];
byte transparentIdx = 0;
fin.Seek(0, SeekOrigin.Begin);
//header
count = fin.Read(buf, 0, 13);
if ((buf[0] != 71) || (buf[1] != 73) || (buf[2] != 70)) return null; //GIF
fout.Write(buf, 0, 13);
int i = 0;
if ((buf[10] & 0x80) > 0)
{
i = 1 << ((buf[10] & 7) + 1) == 256 ? 256 : 0;
}
for (; i != 0; i--)
{
fin.Read(buf, 0, 3);
if ((buf[0] == R) && (buf[1] == G) && (buf[2] == B))
{
transparentIdx = (byte)(256 - i);
}
fout.Write(buf, 0, 3);
}
bool gcePresent = false;
while (true)
{
fin.Read(buf, 0, 1);
fout.Write(buf, 0, 1);
if (buf[0] != 0x21) break;
fin.Read(buf, 0, 1);
fout.Write(buf, 0, 1);
gcePresent = (buf[0] == 0xf9);
while (true)
{
fin.Read(buf, 0, 1);
fout.Write(buf, 0, 1);
if (buf[0] == 0) break;
count = buf[0];
if (fin.Read(buf, 0, count) != count) return null;
if (gcePresent)
{
if (count == 4)
{
buf[0] |= 0x01;
buf[3] = transparentIdx;
}
}
fout.Write(buf, 0, count);
}
}
while (count > 0)
{
count = fin.Read(buf, 0, 1);
fout.Write(buf, 0, 1);
}
fin.Close();
fout.Flush();
return new Bitmap(fout);
}

我用 Hans 的示例(替换 gif 部分)进行了尝试,它对我有用。

你的代码看起来像

img = MakeTransparent(img, TransparentColor); 
img.Save(SaveFile.FileName, ImageFormat.Gif);

关于c# - 如何保存具有透明背景的 gif?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6495952/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com