Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 c++ 中使用 gdi+。
Bitmap canvasImg = new Bitmap(400, 300, PixelFormat32bppARGB); Graphics canvas = new Graphics(&canvasImg ); canvas.DrawImage(XXXX);
有两个问题。
1.我发现canvasImg是黑色的。如何将颜色更改为白色?我的意思是我想要一块白色的帆布。
2. 如果我在画布上画了一些东西,如何清除画布?
非常感谢!
这两个问题的答案是使用canvas.Clear(Color.White)或任何您想要的画布颜色。
canvas.Clear(Color.White)