I have a CGPathRef for an oddly shaped polygon. I need to apply an alpha to the area outside of this path. This is pretty straightforward.
CGContextAddPath(context, crazyPolygon);
CGContextSetFillColor(context, someAlphaColor);
CGContextEOFillPath(context);
I need to do something similar with a circle, also straightforward.
CGMutablePathRef circlePath = CGPathCreateMutable();
CGPathAddRect(circlePath, NULL, rect);
CGPathAddEllipseInRect(circlePath, NULL, circleBox);
CGContextAddPath(context, circlePath);
CGContextSetFillColor(context, someAlphaColor);
CGContextEOFillPath(context);
The problem arises when I try to intersect the two shapes. I want to apply alpha to any pixel that isn't inside both shapes.
- If the point is in the circle but not within the polygon, apply the alpha.
- If it is in the polygon but not in the circle, apply the alpha.
- If it is in both the polygon and the circle, the pixel should be fully transparent.
I've tried a bunch of different approaches. None have worked. The most promising was to create a mask with the polygon and using CGContextClipToMask to bound the drawing of the circle. The full circle was drawn with no clipping though.