我怎么能转换为使用C#图形对象以位图对象?
Answer 1:
Bitmap myBitmap = new Bitmap(width, height, myGraphics);
或者:
Graphics myGraphics = Graphics.FromImage(myBitmap);
// some code with draw on myGraphics
myGraphics.Dispose();
Answer 2:
你的意思是System.Drawing.Graphics
? Graphics类是一个表面的形象,已经是一个位图。
什么是你想用它做?
using(Graphics g = Graphics.FromImage(bitmap))
{
//draw here
}
要么
Bitmap bmp = new Bitmap(100,100,graphics);
Answer 3:
这看起来像你可能会想: DaniWeb ,是annoyingware但它确实提供了一个可行的解决方案
文章来源: Convert graphics object to bitmap object