vote up 3 vote down star

I don't really get it and it's driving me nuts. i've these 4 lines:

Image img = Image.FromFile("F:\\Pulpit\\soa.bmp");
MemoryStream imageStream = new MemoryStream();
img.Save(imageStream, ImageFormat.Bmp);
byte[] contentBuffer = new byte[imageStream.Length];
imageStream.Read(contentBuffer, 0, contentBuffer.Length);

when debugging i can see the bytes values in imageStream. after imageStream.Read i check content of contentBuffer and i see only 255 values. i can't get why is it happening? there is nothing to do wrong in these few lines! if anyone could help me it would be greatly appreciated! thanks, agnieszka

flag

74% accept rate

8 Answers

vote up 7 vote down check

Try setting imageStream.Position to 0. When you write to the MemoryStream it moves the Position after the bytes you just wrote so if you try to read there's nothing there.

link|flag
vote up 10 vote down

You need to reset the file pointer.

imageStream.Seek( 0, SeekOrigin.Begin );

Otherwise you're reading from the end of the stream.

link|flag
vote up 2 vote down

Add:

imageStream.Position = 0;

right before:

imageStream.Read(contentBuffer, 0, contentBuffer.Length);

the 0 in your read instruction stands for the offset from the current position in the memory stream, not the start of the stream. After the stream has been loaded, the position is at the end. You need to reset it to the beginning.

link|flag
vote up 2 vote down
Image img = Image.FromFile("F:\\Pulpit\\soa.bmp");
MemoryStream imageStream = new MemoryStream();
img.Save(imageStream, ImageFormat.Bmp);
byte[] contentBuffer = new byte[imageStream.Length];
imageStream.Position = 0;//Reset the position at the start
imageStream.Read(contentBuffer, 0, contentBuffer.Length);
link|flag
vote up 0 vote down

thanks! you saved my evening!

link|flag
vote up 0 vote down

If you intend to read the whole file you need to reset the file pointer. Do this by imageStream.Seek(0, SeekOrigin.Begin);

link|flag
vote up 0 vote down

Thank you so much today you saved me a lot of time

link|flag
vote up 0 vote down

thanks Doak your program is very helpfull for me

link|flag

Your Answer

Get an OpenID
or

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