Click here to Skip to main content
15,881,600 members
Articles / Programming Languages / C#
Article

Steganography III - Change only one Bit per Pixel

Rate me:
Please Sign up or sign in to vote.
4.76/5 (21 votes)
3 Apr 2004CPOL1 min read 209.3K   5.8K   64   52
An article about hiding each byte of a message bit-by-bit in eight pixels.

Sample Image - steganodotnet3.png

Introduction

The application described in the last article Steganography II always added visible noise to the carrier bitmaps. This article is about splitting the bytes and hiding each bit in a different pixel. The hidden message is really invisible, because only the lowest bit of one color component is changed.

Background

Before reading this, you should have read at least part one, Steganography - Hiding messages in the Noise of a Picture. This article uses the application described in part one and two, but you don't need the features added in part two to understand this one.

End of the rainbow

Replacing a whole byte of a RGB color produces a rainbow pattern. This is how a white image (all pixels just white) looks like after hiding a text message:

typical colour noise

On a colorful photo, these rainbow pixels may be alright. In grayscale mode, the same message in the same picture looks like this:

typical grayscale noise

As you can see, too many bits of the pixels have been changed. Now, we’re going to spread each byte over eight pixels and make the rainbow disappear.

Get and set bits

spreading a byte over eight pixels

For each byte of the message, we have to:

  1. Grab a pixel.
  2. Get the first bit of the message byte.
  3. Get one color component of the pixel.
  4. Get the first bit from the color component.
  5. If the color-bit is different from the message-bit, set/reset it.
  6. Do the same for the other seven bits.

The C#-functions for getting and setting single bits are simple:

C#
private static bool GetBit(byte b, byte position){
	return ((b & (byte)(1 << position)) != 0);
}

private static byte SetBit(byte b, byte position, bool newBitValue){
	byte mask = (byte)(1 << position);
	if(newBitValue){
		return (byte)(b | mask);
	}else{
		return (byte)(b & ~mask);
	}
}

The rest of the code has not changed much. Hiding works like that now...

hide a message

...and extraction works like that:

extract a message

That's enough text for today. If you want to know the details, you should download the source.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Germany Germany
Corinna lives in Hanover/Germany and works as a C# developer.

Comments and Discussions

 
GeneralRe: need java source code for steganography Pin
chaitumad24-May-09 19:49
chaitumad24-May-09 19:49 
GeneralRe: need java source code for steganography Pin
speaker1331-May-09 6:53
speaker1331-May-09 6:53 
GeneralRe: need java source code for steganography Pin
cjeniffer10-Mar-12 21:22
cjeniffer10-Mar-12 21:22 
GeneralI Need Java code for stegnography.... Pin
D.Prasad23-Feb-09 18:57
D.Prasad23-Feb-09 18:57 
GeneralRe: I Need Java code for stegnography.... Pin
vijayalakshmi_bnmit21-Apr-09 2:36
vijayalakshmi_bnmit21-Apr-09 2:36 
GeneralRe: I Need Java code for stegnography.... Pin
chaitumad24-May-09 19:46
chaitumad24-May-09 19:46 
GeneralRe: I Need Java code for stegnography.... Pin
puvva26-Dec-10 18:17
puvva26-Dec-10 18:17 
GeneralRe: I Need Java code for stegnography.... Pin
ankit00245-Jan-10 18:56
ankit00245-Jan-10 18:56 
GeneralImage hiding project Pin
M.Arulraj10-Dec-08 0:04
M.Arulraj10-Dec-08 0:04 
GeneralRe: Image hiding project Pin
Corinna John10-Dec-08 7:13
Corinna John10-Dec-08 7:13 
Generalimage hiding Pin
rame20-Nov-08 1:15
rame20-Nov-08 1:15 
GeneralRe: image hiding Pin
M.Arulraj10-Dec-08 0:41
M.Arulraj10-Dec-08 0:41 
GeneralRe: image hiding Pin
wwwwaaaalla7-Mar-10 6:46
wwwwaaaalla7-Mar-10 6:46 
QuestionCan anybody have the Base Paper for this Steganograhy -III Pin
pvprasad12-Apr-08 5:39
pvprasad12-Apr-08 5:39 
GeneralRe: Can anybody have the Base Paper for this Steganograhy -III Pin
Corinna John12-Apr-08 7:24
Corinna John12-Apr-08 7:24 
Generalimplementation USB Token Pin
Parneyan19-Jun-07 18:19
Parneyan19-Jun-07 18:19 
GeneralSteganografy in java Pin
rafaelvecchio9-May-06 2:51
rafaelvecchio9-May-06 2:51 
GeneralRe: Steganografy in java Pin
Corinna John9-May-06 5:45
Corinna John9-May-06 5:45 
GeneralSteganografy in java Pin
rafaelvecchio9-May-06 2:46
rafaelvecchio9-May-06 2:46 
GeneralRe: Steganografy in java Pin
andre.fiap.br22-Mar-07 10:44
andre.fiap.br22-Mar-07 10:44 
GeneralRe: Steganografy in java Pin
chaitumad24-May-09 19:50
chaitumad24-May-09 19:50 
GeneralRe: Steganografy in java Pin
andre.fiap.br25-May-09 7:32
andre.fiap.br25-May-09 7:32 
GeneralVC6++ HELP HOW Pin
cnncnn18-Aug-04 20:20
cnncnn18-Aug-04 20:20 
GeneralProblem with PNG Image Pin
lonelywind198221-Jun-04 22:09
lonelywind198221-Jun-04 22:09 
GeneralRe: Problem with PNG Image Pin
Corinna John22-Jun-04 20:31
Corinna John22-Jun-04 20:31 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.