I want to create a 8 bit pixel image. I used to draw the image in a picture box.
Bitmap b = new Bitmap(8,8);
Graphics g = Graphics.FromImage(b);
PictureBox8Bit.Image = b;
So, that code supposed to create an 8 bit pixel image. When i output the image on picture box, i cant see it clearly because its too small. What i want is how to make the picture box resolution to 8 bit, or the image size. So i can see the preview in the picture box.
But when i use the code, the picturebox just show a small dot. Rather than resized to 8 bit for best view.
Thanks.