Click here to Skip to main content
Click here to Skip to main content

Hiding a text file in a bmp file

By , 26 Nov 2003
 

Sample Image - hideit_SnapShoot.jpg

Introduction

I think all of us have dreamed of a secret language with our friends , well this program simply hides any text file (can contain a secret message to any friend ) in a bmp file . No one can feel or see any changes to the picture , and you then simply send this picture to your friend who  will use a certain password to recover the text file .

I hope you enjoy my program and please don't forget to vote for my program . At last I want to say that it is my first time to put my programs in the internet and to put comments in the sources.

Background

Structure of text file:

Any text file consists of streams of characters , each character is 1 byte (ASCII code) each byte as all of us of course know consists of 8 bits .

text structure

The function which is used to convert the ASCII code (decimal) to the binary equivalent called CreateBinLookUpTable() , which simply creates an array as following :

bin[0]="00000000";
bin[1]="00000001";
..
..
bin[254]="11111110";
bin[255]="11111111"

There are many methods to convert from decimal to binary but I found this is from the fastest methods.

Bitmap file structure:

In general the bmp file consists in of two parts a header and the data part.

bmp struct

Logic operations:

In the c/c++ there is a bitwise operator ,one of these operators is the AND " & " , to see the AND operation look at the following table :

AND

How To change a certain bit in a byte using MASK:

if we have 'H' '0100 1001' and we want to change the last bit to 0 simply we ANDed 'H' with the mask 254 ('1111 1110) , the result will be '0100 1000' and if the last bit is '0' and we want to change it to 1 so we first ANDed with the same mask then add 1.

Using the code

Hiding the text in the bmp file technique:

  1. Reading the text file and converting each char. to 8 bits in array srcBin[].
  2. Reading the bmp file and ANDing each byte with the mask 254 '1111 1110'.
  3. Then adding to it 1 or not depending on the srcBin[] array.
  4. Saving the result back to the bmp file.
  5. Well since it is just one bit change in each byte so our eye never be able to see the such difference.

hiding diagram

Points of Interest

When you are going to try my demo ,you will find three pictures ,use them with the program using the password 'aaaaa' (take care it is CASE SENSTIVE) and read my msg to you then vote for my work .

These samples pictures are in the demo and with the source in the release folder.

Now see the following the picture; can you see any difference between two pictures

Can u see any diff

Hey now one might ask if there is a way to know if this pic hold a msg inside it or not ?? Well I found indeed one method ,I discovered it by chance but it can be used only for a black or a white image. This using the famous program 'Paint Shop Pro' ,there is something called 'Split to HSL' ,you will find a new image created called saturation .

Following image show us how my msg is hidden in the image

diff

Thanks a lot For Your Time. Don't forget to vote for my program

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Adore C++
Systems Engineer
Egypt Egypt
Member
My Name Ahmed Osama.
Communication & Electronic engineering
I like so much programming using c\c++ , MFC and VC++
i like programming in many fields like "digital signal processor" and math and image processing

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 5membersukumarchandran28 Jan '13 - 18:22 
GeneralMy vote of 5membersaikatdutta199128 Nov '12 - 7:24 
QuestionTeslam edakmemberMoDy kareem26 Nov '12 - 6:50 
QuestionthanksmemberMember 961031718 Nov '12 - 18:28 
GeneralMy vote of 5memberkimtinh291616 Nov '12 - 6:32 
GeneralMy vote of 5memberasquare2513 Oct '12 - 5:33 
QuestionthanksmemberNikhil Uppada4 Sep '12 - 1:33 
QuestionMy vote of 5memberruiwng30 Aug '12 - 6:03 
GeneralMy vote of 5memberMukit, Ataul11 May '12 - 19:16 
GeneralMy vote of 5memberdknaoremcha19 Mar '12 - 4:49 
GeneralMy vote of 5memberPhheoniix6 Dec '11 - 11:48 
I thought this was excellent, I am trying to do this myself, I understand the concept of changing the LSB, but dont know how to implement it in the code, if you could help me out I'd be so grateful, my email is - Radioactive-toy@hotmail.co.uk, Thanks Smile | :)
GeneralMy vote of 5memberisupercar23 Aug '11 - 17:39 
GeneralI need your helpmemberhadestaboo5 Jun '11 - 10:46 
GeneralMy vote of 4memberdo khac hieu4 Dec '10 - 18:44 
Generalneed documentation & ideamembera.hamza1 Nov '10 - 23:43 
GeneralMy vote of 5membervk150621 Sep '10 - 18:01 
Questionhey need documentationmemberamitnaik2003 Sep '10 - 11:53 
AnswerRe: hey need documentationmembersheku hussain23 Sep '11 - 9:34 
QuestionCompilation Errors seen in the source code attached. Kindly help me out.memberspeed_12331 May '10 - 0:51 
GeneralNice workmemberganesh.dp28 May '10 - 2:22 
Generalimpressed..got my 5..but..memberOmarGamil7 Feb '10 - 4:26 
Generalwowmemberkonikula15 Dec '09 - 15:43 
GeneralDoesnt work on WinXP Pro compiled with VC 8.0memberMichael B Pliam9 Oct '09 - 13:58 
QuestionRe: Doesnt work on WinXP Pro compiled with VC 8.0memberspeed_12331 May '10 - 0:53 
Generalhimembertvailpulli11 Sep '09 - 21:45 

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130523.1 | Last Updated 27 Nov 2003
Article Copyright 2003 by Adore C++
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid