我想绘制一个具有给定线条颜色,线条粗细和填充颜色的三角形。 但有些我怎么不正确地填充三角形。每当三角形周围的整个区域也被填满时。
这是我的代码:
+ (UIImage *) drawColorTriangleWithBorderWidth:(int)Width Height:(int)Height R:(int)R G:(int)G B:(int)B A:(int)A BorderR:(int)BR BorderG:(int)BG BorderB:(int)BB BorderA:(int)BA Thickness:(CGFloat)thickness {
if ( Width == 0 || Height == 0) return nil;
float de = thickness/2.0;
UIGraphicsBeginImageContext(CGSizeMake(Width+de, Height+de));
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextBeginPath(context);
CGFloat rr = 1.0*R/255.0; if ( rr > 1.0) rr = 1.0;
CGFloat gg = 1.0*G/255.0; if ( gg > 1.0) gg = 1.0;
CGFloat bb = 1.0*B/255.0; if ( bb > 1.0) bb = 1.0;
CGFloat aa = 1.0*A/100.0; if ( aa > 1.0) aa = 1.0;
CGFloat brr = 1.0*BR/255.0; if ( brr > 1.0) brr = 1.0;
CGFloat bgg = 1.0*BG/255.0; if ( bgg > 1.0) bgg = 1.0;
CGFloat bbb = 1.0*BB/255.0; if ( bbb > 1.0) bbb = 1.0;
CGFloat baa = 1.0*BA/100.0; if ( baa > 1.0) baa = 1.0;
CGContextSetLineCap(context, kCGLineCapSquare);
CGContextSetRGBFillColor(context, rr, gg, bb, aa);
CGContextSetLineWidth(context, thickness);
CGContextSetRGBStrokeColor(context, brr, bgg, bbb, baa);
CGContextMoveToPoint(context, Width/2.0, de);
CGContextAddLineToPoint(context, de, Height-de);
CGContextAddLineToPoint(context, Width-de, Height-de);
CGContextAddLineToPoint(context, Width/2.0, de);
CGContextDrawPath(context, kCGPathFillStroke);
UIImage * image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return image;
}
谁能帮帮我? 感谢。
答案 0 :(得分:2)
添加不同路径后需要关闭路径:
CGContextMoveToPoint(context, Width/2.0, de);
CGContextAddLineToPoint(context, de, Height-de);
CGContextAddLineToPoint(context, Width-de, Height-de);
CGContextClosePath(context);
CGContextFillPath(context);
答案 1 :(得分:1)
这可以使用OP发布的代码:
UIImage *image = [[self class] drawColorTriangleWithBorderWidth:100 Height:100 R:200 G:0 B:0 A:200 BorderR:0 BorderG:0 BorderB:200 BorderA:100 Thickness:3.0];
[UIImageJPEGRepresentation(image, 1.0) writeToFile:@"/Users/dan/Desktop/UIImage.jpg" atomically:YES];
制作此图片: