The question is quite self explicative, I would like to use a 1bpp Bitmap because will help me (a lot) talking with a device that accept 1bbp bitmaps (well, 160x43 byte array that is a 160x43 bitmap image with 1bpp format).
While C# allows me to create 1bpp bitmaps, I would like to work on it with a Graphics object. But the program seems to behave strangely when I do any operation on this.
Is possible to do some graphic operations on those type of bitmaps?
my code snippet is quite short:
Bitmap bwImage = new Bitmap(160, 43, System.Drawing.Imaging.PixelFormat.Format1bppIndexed);
using (Graphics g = Graphics.FromImage(bwImage))
{
g.FillRectangle(Brushes.White, new Rectangle(0, 0, 160, 43));
g.DrawString("ciao sono francesco", Font, Brushes.Black, new RectangleF(0f, 0f, 159f, 42f));
}
When I do anything related to bitmaps after those calls. My bitmaps doesn't change (obviusly I'm talking about other bitmaps). Like if GDI is totally dead
Any ideas?