绘制粗线时删除角

时间:2010-07-01 12:30:46

标签: .net gdi+

结果:

alt text http://lh4.ggpht.com/_1TPOP7DzY1E/TCyG2pVxi2I/AAAAAAAADSM/TTqZZxh5LR8/s800/Capture4.gif

问题:

我可以使用此行“附录”进行舍入或做某事吗?

代码:

    private void Form1_Paint(object sender, PaintEventArgs e)
    {
        Point[] points1 = new Point[] {
            new Point(50, 90),
            new Point(60, 20),
            new Point(70, 120)
        };

        GraphicsPath path1 = new GraphicsPath();
        path1.AddLines(points1);

        ControlPaint.DrawGrid(e.Graphics, this.ClientRectangle,
            new Size(10, 10), Color.Red);

        using (Pen p = Pens.DarkBlue.Clone() as Pen)
        {
            p.Width = 5;
            e.Graphics.DrawPath(p, path1);
            e.Graphics.DrawString("Width: " + p.Width, 
                new Font(this.Font, FontStyle.Bold), 
                Brushes.DarkBlue, new Point(35, 150));

            Matrix m = new Matrix();
            m.Translate(50, 0);
            e.Graphics.Transform = m;

            p.Width = 1;
            e.Graphics.DrawPath(p, path1);
            e.Graphics.DrawLine(Pens.Red, -40, 20, 150, 20);
            e.Graphics.DrawString("Width: " + p.Width, 
                this.Font, Brushes.DarkBlue, new Point(35, 150));
        }
    }

1 个答案:

答案 0 :(得分:4)

只需将Pen.LineJoin更改为LineJoin.Round即可。您也可以降低Pen.MiterLimit以剪切很长的角落。