Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Drawing Hollow circle in iPhone

i need to draw the following image enter image description here

The Gray part is what i want to draw over another image what is the Code i need to use using CGContext methods, i tried using the CGContextAddArc but failed because when i fill the stroke the center hollow is also filled with the grey texture.

Any help appreciated.

Info : I have the Complete Blue Image , i need to add the Semi Circle above the blue image

Thanks

like image 957
RVN Avatar asked May 02 '11 11:05

RVN


2 Answers

Have a look at Filling a Path in the Core Graphics documentation. Basically, what you do is add two arcs to your path (the outer and the inner one) and then use Core Graphics fill rules to your advantage. The code would look something like this:

CGMutablePathRef path = CGPathCreateMutable();

// Add the outer arc to the path (as if you wanted to fill the entire circle)
CGPathMoveToPoint(path, ...);
CGPathAddArc(path, ...);
CGPathCloseSubpath(path);

// Add the inner arc to the path (later used to substract the inner area)
CGPathMoveToPoint(path, ...);
CGPathAddArc(path, ...);
CGPathCloseSubpath(path);

// Add the path to the context
CGContextAddPath(context, path);

// Fill the path using the even-odd fill rule
CGContextEOFillPath(context);

CGPathRelease(path);
like image 151
Ole Begemann Avatar answered Oct 12 '22 00:10

Ole Begemann


Working further on what Ole Begemann referred in his answer and some modification, I was able to achieve the requirement.

CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetStrokeColorWithColor(context, [UIColor colorWithPatternImage:[UIImage imageNamed:@"background_grey_pattern.png"]].CGColor);
CGMutablePathRef path = CGPathCreateMutable();
CGContextSetLineWidth(context, 40);
CGPathAddArc(path, NULL, aRect.size.width/2, aRect.size.height/2, 45, 0*3.142/180, angle*3.142/180, 0);
CGContextAddPath(context, path);
CGContextStrokePath(context);
CGPathRelease(path);

So instead of 2 arcs I used only one and stroked it with higher width.

like image 28
RVN Avatar answered Oct 12 '22 01:10

RVN