核心图形圆角不锋利

时间:2016-04-05 11:34:05

标签: ios xamarin core-graphics rounded-corners antialiasing

我正在绘制圆角矩形。问题 - 角落并不尖锐。有没有解决这个问题的方法?

Zoom 100%

Zoomed in

这是我的绘图代码(Xamarin)

var thickness = (nfloat)Math.Min (Math.Min (_renderer.View.Thickness.Left, _renderer.View.Thickness.Right), Math.Max (_renderer.View.Thickness.Top, _renderer.View.Thickness.Bottom));
var path = UIBezierPath.FromRoundedRect (new CGRect(this.Bounds.X + thickness / 2, this.Bounds.Y + thickness / 2, this.Bounds.Width - thickness, this.Bounds.Height - thickness), (nfloat)_renderer.View.CornerRadius);

context.SetShouldAntialias (true);
context.SetStrokeColor (_renderer.View.Color.ToCGColor ());
context.SetFillColor (_renderer.View.BackgroundColor.ToCGColor ());
path.LineWidth = thickness;

path.Fill ();
path.Stroke ();

1 个答案:

答案 0 :(得分:0)

为什么不使用cornerradius?

顺便说一句,您必须检查图层的比例属性。必须将其设置为与主视图比例相同的值(即:视网膜设备上的2)。默认情况下它是1。