vote up 3 vote down star

I am loading a file into a byte[]. By my understanding the byte[] should contain a specific elements of bytes (8-bit). When i print each byte, all of them are not 8-bit (i.e. they dont have the length of 8). My Code:

FileStream stream = File.OpenRead(@"C:\Image\Img.jpg");
byte[] fileByte = new byte[stream.Length];
stream.Read(fileByte, 0, fileByte.Length);

for (int i = 0; i <= fileByte.Length - 1; i++)
{
  Console.WriteLine(Convert.ToString(fileByte[i], 2));
}

Output:

10001110
11101011
10001100
1000111
10011010
10010011
1001010
11000000
1001001
100100

I think my understanding is wrong here, Can you please let me know (or provide me some tutorial links) where I am missing this.

flag

2  
byte[] data = File.ReadAllBytes(@"FilePath.jpg"); – 280Z28 Oct 29 at 15:53

5 Answers

vote up 11 vote down check

When converting a numeric to a string, you lose any leading zeros. (Note that all of your entries start with "1".) You can use PadLeft to put them back in.

   FileStream stream = File.OpenRead(@"C:\Image\Img.jpg"); 
   byte[] fileByte = new byte[stream.Length]; 
   stream.Read(fileByte, 0, fileByte.Length); 

   for (int i = 0; i <= fileByte.Length - 1; i++) 
   { 
      Console.WriteLine(Convert.ToString(fileByte[i], 2).PadLeft(8,'0')); 

   }
link|flag
Thanks, this is the part that I was missing. (I have only a vague knowledge of C#.) – mmyers Oct 29 at 15:47
Instead of PadLeft(8,Convert.ToChar("0")), just do PadLeft(8,'0'). No sense converting the string to a char every single time. – Kevin Oct 29 at 15:47
Man,you all beat me to the answer because I toook the time to write and test the "fix" code." Still, + to everyone who answered correctly. – David Stratton Oct 29 at 15:48
@Kevin, Thank you. I don't work with the char data type a lot, so I didn't realize the single quotes made teh difference. Changing my answer to match.! – David Stratton Oct 29 at 15:50
Cool....thanks a lot (i knew, i am missing a very basic thing)... – Bhaskar Oct 29 at 15:54
vote up 4 vote down

They all have 8 bits, but the non significant zeroes (the zeroes on the left) are not printed.

link|flag
vote up 2 vote down

Are the bytes without leading zeros? You kinda chose a bad example because we do not know the decimal values you are displaying (ok maybe someone who knows the header structure for a .jpg file knows). I'm willing to bet leading zeros are not displayed in the binary equivalents.

link|flag
vote up 3 vote down

It is simply that the leading zeros are not included...

link|flag
vote up 18 vote down

Leading 0's don't get printed.

link|flag
Amazing, all the "love" you're getting from this simple response... (no jealousy on my part, you beat us all time wise, plus I'm 200 for the day), but isn't it funny when we get so many reps for these simple questions? – mjv Oct 29 at 15:47
@mvj - No kidding! But I AM jealous. But big enough to deal with it. (grin). – David Stratton Oct 29 at 15:52
@mjv my highest rep answers have usually been the easiest to answer. Questions involving specialized knowledge, lots of references, etc rarely get more than a few up votes just because so few actually know if the answer is correct or not. Probably the same for mmyers and I'm sure he's happy to take the rep even if it's for an easy one. – Jonathan Fingland Oct 29 at 15:53
1  
Yeah, especially considering that my entire knowledge of C# consists of things I've read on SO. :) – mmyers Oct 29 at 15:58
Yeah... And he was the quickest to answer. Good for him! – David Stratton Oct 29 at 15:59
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.