如何获取 System.Drawing.Graphics 对象绘制的图像

本文关键字:对象 Graphics 绘制 图像 Drawing System 何获取 获取 | 更新日期: 2023-09-27 18:31:32

请参阅以下方法:

void Paint(System.Drawing.Graphics g)
{
//How can I start record what 'g' will draw to an image object?
g.DrawLine(0,0,50,50);
g.DrawImage(...);
..
..
etc.
}

现在我怎样才能得到关于"g"画了什么的图像?
谢谢:)

如何获取 System.Drawing.Graphics 对象绘制的图像

你可以试试...

using (Graphics g=Graphics.FromImage(inImage)) 
{ 
  g.Clear(Color.White); 
  g.DrawLine(0,0,50,50); 
} 

然后,这将在图像上绘制线条。只要确保图像足够大...

此外,还可以通过重写 OnPaint 事件并从 eventArgs 获取图形对象来直接绘制到窗体。

你可以这样做

Bitmap bmp;
...
{
 InitializeComponent();
 bmp = new Bitmap(this.Width,this.Height,Graphics.FromHwnd(this.Handle));
}
void Paint(object sender, System.Windows.Forms.PaintEventArgs e)
{
  Graphics g = Graphics.FromImage(bmp);
  g.DrawLine(0,0,50,50);
  ..
  .. 
  e.Graphics.DrawImage(bmp,0,0);
}