how to see in the screen a bitmap...

  • Thread starter Thread starter carmen
  • Start date Start date
C

carmen

I have a seudo-bitmap file (array of 0 and 1) that represent a printer
mapped image.
How could I see in my windows CE screen (into a panel o picturebox)?
Thank you for your help
Carmen
 
It it's a real bitmap array, you can utilize the Bitmap(System.IO.Stream
stream) constructor overload. Something like that:

MemoryStream ms = new MemoryStream(bitmapArray);

Bitmap myBmp = new Bitmap(ms);

pictureBox1.Image = myBmp;

HTH... Alex
 
Back
Top