我刚刚开始学习计算机科学,我们的老师给了我们这个小而棘手的编程任务。我需要解码我们老师递给我们的.bmp图片http://postimg.org/image/vgtcka251/ 经过4个小时的研究和尝试,我不再接近解码它。他给了我们他的编码方法:
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
public class HideMsgInPicture {
final static long HEADSIZE=120;
public static void main(String[] args) throws IOException {
encode();
decode();
}
private static void encode() throws IOException {
FileInputStream in = null;
FileInputStream msg = null;
FileOutputStream out = null;
try {
in = new FileInputStream("car.bmp");
msg = new FileInputStream("msg.txt");
out = new FileOutputStream("carX.bmp");
int c,mb;
byte clearBit1 = (byte) 0xFE; //254; // 11111110
for (int i=1;i<=HEADSIZE;i++) out.write(in.read()); //copy header
while ((mb = msg.read()) != -1) { // for all byte in message
for (int bit=7; bit>=0; bit--) // 1 bit a time from messsage
{ c = in.read() & clearBit1; // get picturebyte,clear last bit
c = (c | ((mb >> bit) & 1));// put msg-bit in end of pic-byte
out.write(c); // add pic-byte in new file
}
}
for (int bit=7; bit>=0; bit--) // add 8 zeroes as stop-byte of msg
{ c = in.read() & clearBit1; // get picturebyte,clear last bit
out.write(c); // add pic-byte in new file
}
while ((c = in.read()) != -1) out.write(c);// copy rest of file
}
finally {
if (in != null) in.close();
if (msg != null) msg.close();
if (out != null) out.close();
}
}
}
是否有人能够向我发送正确的方向?
答案 0 :(得分:1)
您对隐写术了解多少?最简单的算法(你的任务正在实现)是最低有效位(LSB)。简而言之,您将消息转换为二进制(即字符&#39; =#01100001)并在像素值的最右边位写入各个位。例如,取8个像素(每个由一个字节表示)并在第一个字节中隐藏0,在第二个1中,在第三个1中,在第四个0中,等等。要提取消息,请从中获取二进制字符串。像素中的LSB并将其转换回文本。
你的老师给你了隐藏算法,所以基本上你必须编写一个反转过程的算法。您不需要进一步了解,您只需要了解此代码的作用。只需内联注释即可。