music7611 said:Thanks a lot! I hate to be so picky, but I need to draw on the bitmap. I know you can use Graphics.FromImage(image) to load the image to a graphics thing. Can you do something similair with a bitmap?
Bitmap b = new Bitmap(Width, Height);
Graphics g = Graphics.FromImage(b);
//can use g to draw on bitmap