如何在图像上画线?

时间:2012-07-09 20:47:37

标签: c# system.drawing

我想在bmp图像上绘制一条线,该线在C#中使用drawline方法传递给方法

public void DrawLineInt(Bitmap bmp)
{

Pen blackPen = new Pen(Color.Black, 3);

int x1 = 100;
int y1 = 100;
int x2 = 500;
int y2 = 100;
// Draw line to screen.
e.Graphics.DrawLine(blackPen, x1, y1, x2, y2);
}

这给出了一个错误。所以我想知道如何在这里包含paint事件 (PaintEventArgs e)

并且还想知道在调用drawmethod时如何传递参数? 示例

DrawLineInt(Bitmap bmp);

这会产生以下错误 “当前上下文中不存在名称'e'”

2 个答案:

答案 0 :(得分:22)

"在bmp图像上画一条线,在C#"

中使用drawline方法传递给方法

PaintEventArgs e会建议你在" paint"对象的事件。因为你在一个方法中调用它,所以不需要在任何地方添加PaintEventArgs e。

要在方法中执行此操作,请使用@ BFree的答案。

public void DrawLineInt(Bitmap bmp)
{
    Pen blackPen = new Pen(Color.Black, 3);

    int x1 = 100;
    int y1 = 100;
    int x2 = 500;
    int y2 = 100;
    // Draw line to screen.
    using(var graphics = Graphics.FromImage(bmp))
    {
       graphics.DrawLine(blackPen, x1, y1, x2, y2);
    }
}

" Paint"重绘对象时引发事件。有关更多信息,请参阅:

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.paint.aspx

答案 1 :(得分:5)

您需要从Graphics获取Image对象,如此:

using(var graphics = Graphics.FromImage(bmp))
{
   graphics.DrawLine(...)
}