代码之家  ›  专栏  ›  技术社区  ›  Ian Vink

iPhone绘制线厚度

  •  0
  • Ian Vink  · 技术社区  · 15 年前

    我的线条只有1像素厚。我怎样才能使它变厚?我使用montotouch.net,但是objective-c在答案中是可以的。

    ctx.SetRGBStrokeColor (1,1,1, 1f);
    ctx.MoveTo(130,110);
    ctx.AddLineToPoint(200,200);
    ctx.StrokePath();
    
    1 回复  |  直到 15 年前
        1
  •  2
  •   Ian Henry    15 年前

    ctx.LineWidth = 5;