Click here to Skip to main content
15,881,852 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

 
Questioni need to hide text inside image without key Pin
sonbolty1-Mar-12 1:10
sonbolty1-Mar-12 1:10 
AnswerRe: i need to hide text inside image without key Pin
Corinna John1-Mar-12 10:53
Corinna John1-Mar-12 10:53 
GeneralRe: i need to hide text inside image without key Pin
sonbolty12-Mar-12 1:49
sonbolty12-Mar-12 1:49 
GeneralPLEASE PLEASE : I AM BEGGINNER : CAN YOU HELP ME SOURCE CODE FOR stegonagraphy in picture and audio !! Pin
kutomba6-Dec-11 12:58
kutomba6-Dec-11 12:58 
Questioni need code of steganography urgently ..... Pin
himanshu199020-Nov-11 19:46
himanshu199020-Nov-11 19:46 
Questionthe length of the bitmap image Pin
174t26-Jun-11 6:23
174t26-Jun-11 6:23 
QuestionOut image Pin
174t26-Jun-11 2:11
174t26-Jun-11 2:11 
Generalproject Pin
Member 784332614-Apr-11 20:59
Member 784332614-Apr-11 20:59 
QuestionSteganography code in java Pin
Mukesh konde4-Mar-11 18:01
Mukesh konde4-Mar-11 18:01 
GeneralImage Steganography Pin
Anshuli23-Sep-10 5:21
Anshuli23-Sep-10 5:21 
Generalbadly need image steganography source code using java..... Pin
suresh54624-Jul-10 21:03
suresh54624-Jul-10 21:03 
Generalimage steganography - embed message in image using LSB Pin
star_light16-Jul-10 17:07
star_light16-Jul-10 17:07 
GeneralModule Pin
vinayanand527-Feb-10 22:19
vinayanand527-Feb-10 22:19 
GeneralSteganography Code for BMP Pin
pamdee8323-Jan-10 19:19
pamdee8323-Jan-10 19:19 
Generalcode required using java Pin
palaash16-Dec-09 4:38
palaash16-Dec-09 4:38 
Generalneed java source code for steganography Pin
prima iman21-May-09 20:22
prima iman21-May-09 20:22 
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 

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.