gpt4 book ai didi

c# - 保存位图时不保留 Alpha 值

转载 作者:太空宇宙 更新时间:2023-11-03 13:43:38 25 4
gpt4 key购买 nike

大家早上好

我正在为大学做一个图像隐写术项目。在图像中隐藏数据。我正在写“文本长度”,它是一个像素的 Int32。因为 Int32 是 4 个字节。我想我可以把它写在 Alpha、Red、Green、Blue 的 4 个字节中,因为每种颜色都是 1 个字节。然后我将图像保存为 bmp 格式。我使用单步执行,数据得到正确分布并设置在像素中。

当我读回像素时出现问题。 R、G、B 具有我设置的值。但无论设置什么,alpha 始终为 255。

我用于将 Int32 分配为 4 个字节的代码是

byte R, G, B, A;
int colorValue = messageLength;
int first = colorValue & 255;
//R contains bit 0-7 means the least significant 8 bits
R = (byte)first;
colorValue = colorValue - first;
int second = colorValue & 65535;
colorValue = colorValue - second;
second = second >> 8;
//G contains 8-15
G = (byte)second;
int third = colorValue & 16777215;
colorValue = colorValue - third;
third = third >> 16;
//B contains 16-23
B = (byte)third;
colorValue = colorValue >> 24;
//A contains 24-31
A = (byte)colorValue;
pixelColor = Color.FromArgb(A, R, G, B);
bitmap.SetPixel(location.X, location.Y, pixelColor);

取回值的代码是

byte R, G, B, A;
R = pixelColor.R;
G = pixelColor.G;
B = pixelColor.B;
A = pixelColor.A;

messageLength = A;
messageLength = messageLength << 8;
messageLength += B;
messageLength = messageLength << 8;
messageLength += G;
messageLength = messageLength << 8;
messageLength += R;

有什么我想念的吗?是不是 BMP 不允许 alpha 值持续存在???请帮忙。谢谢。

最佳答案

很抱歉,Bitmap 不支持 alpha 值。

关于c# - 保存位图时不保留 Alpha 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16077947/

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