문제

My line is only 1 pixel thick. How can I thicken it? I use MontoTouch.net but Objective-C is fine in the answer.

ctx.SetRGBStrokeColor (1,1,1, 1f);
ctx.MoveTo(130,110);
ctx.AddLineToPoint(200,200);
ctx.StrokePath();
도움이 되었습니까?

해결책

ctx.LineWidth = 5;

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top