Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在研究隐写术,我试图读取每个字节的 LSB 位并存储在数据库中。请帮助我如何使用 C# 读取 LSB 位。
C# 中的 LSB 隐写术项目
这是我在 C# 中为 24bitmap LSB stegnography 所做的一个项目,你可以从中获得一些想法
只需使用按位运算符。从图像数据中读取 LSB
int msgbit= msgChar & 1;
如果要设置 LSB:
msgChar=msgChar & 254; msgChar=msgChar+newbit;