您的位置:首页 > 其它

自定义划线方法

2015-12-06 21:24 288 查看
#import "DrawLine.h"

@implementation DrawLine

+ (void)drawCenter:(UIImageView *)imageView withBeginX:(CGFloat)Bx withBeginY:(CGFloat)By withEndX:(CGFloat)Ex withEndY:(CGFloat)Ey withLineWidth:(CGFloat)width withColorR:(CGFloat)r
G:(CGFloat)g B:(CGFloat)b Alpha:(CGFloat)a
{

UIGraphicsBeginImageContext(imageView.frame.size);
[imageView.image drawInRect:CGRectMake(0,
0, imageView.frame.size.width, imageView.frame.size.height)];

CGContextSetLineCap(UIGraphicsGetCurrentContext(), kCGLineCapRound);
CGContextSetLineWidth(UIGraphicsGetCurrentContext(), width);
//线宽
CGContextSetAllowsAntialiasing(UIGraphicsGetCurrentContext(),
YES);
CGContextSetRGBStrokeColor(UIGraphicsGetCurrentContext(), r, g, b, a);
//颜色
CGContextBeginPath(UIGraphicsGetCurrentContext());
CGContextMoveToPoint(UIGraphicsGetCurrentContext(), Bx, By);
//起点坐标
CGContextAddLineToPoint(UIGraphicsGetCurrentContext(), Ex, Ey);
//终点坐标
CGContextStrokePath(UIGraphicsGetCurrentContext());
imageView.image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

}

+ (void)drawLineCenter:(UIView *)view withBeginX:(CGFloat)Bx withBeginY:(CGFloat)By withEndX:(CGFloat)Ex withEndY:(CGFloat)Ey withLineWidth:(CGFloat)width withColorR:(CGFloat)r G:(CGFloat)g
B:(CGFloat)b Alpha:(CGFloat)a
{
UIImageView *imageView=[[UIImageView alloc] initWithFrame:view.frame];
imageView.frame = CGRectMake(view.frame.origin.x, view.frame.origin.y,
500, view.frame.size.height);

[view addSubview:imageView];
view.backgroundColor = [UIColor clearColor];

UIGraphicsBeginImageContext(imageView.frame.size);
[imageView.image drawInRect:CGRectMake(0,
0, imageView.frame.size.width, imageView.frame.size.height)];

CGContextSetLineCap(UIGraphicsGetCurrentContext(), kCGLineCapRound);
CGContextSetLineWidth(UIGraphicsGetCurrentContext(), width);
//线宽
CGContextSetAllowsAntialiasing(UIGraphicsGetCurrentContext(),
YES);
CGContextSetRGBStrokeColor(UIGraphicsGetCurrentContext(), r, g, b, a);
//颜色
CGContextBeginPath(UIGraphicsGetCurrentContext());
CGContextMoveToPoint(UIGraphicsGetCurrentContext(), Bx, By);
//起点坐标
CGContextAddLineToPoint(UIGraphicsGetCurrentContext(), Ex, Ey);
//终点坐标
CGContextStrokePath(UIGraphicsGetCurrentContext());
imageView.image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: