Hi,
I am trying to write a file using WriteByte after
creating a file stream.
....
FileStream fs = new FileStream
(FILE_NAME,File Mode.OpenOrCrea te,FileAccess.W rite);
for(i = 0; i < M; i++)
fs.WriteByte(so meBitmap.GetPix el(k,j).R);
.....
Apparently Windows adds some new line characters to the
newly created file. How can I avoid this?
Thanks.
Danny
I am trying to write a file using WriteByte after
creating a file stream.
....
FileStream fs = new FileStream
(FILE_NAME,File Mode.OpenOrCrea te,FileAccess.W rite);
for(i = 0; i < M; i++)
fs.WriteByte(so meBitmap.GetPix el(k,j).R);
.....
Apparently Windows adds some new line characters to the
newly created file. How can I avoid this?
Thanks.
Danny
Comment