The cgpath tag has no wiki summary.
0
votes
1answer
35 views
Add Opacity to CGPath
CGPathRef defines an opaque type that represents an immutable graphics path. CGMutablePathRef defines an opaque type that represents a mutable graphics path.
But how do we change the opacity in the ...
0
votes
1answer
37 views
A union B minus A intersection B
I see that there are methods that provide rectangles
CGRect CGRectIntersection(CGRect r1, CGRect r2)
CGRectUnion(CGRect r1, CGRect r2)
But is there a method that provides the area or list of ...
0
votes
2answers
54 views
External Fill Color in iOS
I have two rectangles (two closed sub cgpaths).
Rectangle B is small and is present inside Rectangle A. All edges within it.
Is there a direct way to fill color area external to the rectangle B.
...
0
votes
1answer
41 views
Generate a CGPath from another path's line width outline
I might not be explaining this in the best way possible, so please bear with me.
What I have is a drawn CGPath on top of a MKMapView object:
The way I was able to achieve this is to create a ...
0
votes
2answers
23 views
how can I combine uibezierpath drawings?
I'm trying to combine several UIBezierPath drawings;
I have different types of drawings I can make (line, cubic bezier, quadratic beziers), and each of these can be filled or unfilled. I'm selecting ...
0
votes
1answer
30 views
Multiple paths are not kept on screen
I have an custom UIView. I keep on the lines and points when the finger touches moves. Then I make points to CGPath with this method:
- (void)makeCGPath
{
CGMutablePathRef path = ...
1
vote
0answers
98 views
Create a CALayer mask by combining multiple paths
I'm trying to create a mask for a CALayer containing an image. This mask shall be able to use the union of multiple paths or the inverse of the union. In terms of a venn diagram that would be a ...
0
votes
1answer
86 views
Apple iOS BreadCrumb Example CGPath Route and Gradient
I'm using the "Apple iOS Breadcrumb" example to create a route with CGPath's, i know that each CGPath joined create my route, and, each CGPath use the CGContextSetRGBStrokeColor to fill the ...
-2
votes
1answer
117 views
How to animate CAShapeLayer path and fillColor
How to animate CAShapeLayer path and fillColor?
How to animate strokeEnd to show the path being drawn? and how to animate fillColor?
0
votes
1answer
78 views
Scale CGPath to Fit UIVIew
I need to know how I can scale down or up CGPath so it can fit UIView?
Set the background color to yellow, To see the view clearly
self.frame = CGRectMake(0, 0, 181, 154);
self.backgroundColor = ...
0
votes
2answers
83 views
Drawing a CGPath UIBezierCurve
Hi all I am looking into ways of how I can draw a shape like the one in the illustration above.I have been looking and reading but getting slightly confused of how curves are drawn using ...
0
votes
0answers
44 views
I used CGPath to make a picture with 4 CALayers, how can I zoom in and out?
I used CGPath to make a picture with 4 CALayers, how can I zoom in and out?
The picture contained a four different circles, a rectangle, and a more complicated shape.However, I want to make it zoom ...
1
vote
1answer
40 views
When To Release CGMutablePathRef
I am uncertain as when to release the path created by CGPathCreateMutable in the code sample below.
// iVar
ivarImageView = [[UIImageView alloc] initWithImage:nil];
// Clip to shape
...
0
votes
1answer
85 views
DrawRect keeps drawing white background
//inside init
_color = [UIColor orangeColor];
self.backgroundColor = [UIColor clearColor];
self.clearsContextBeforeDrawing = NO;
//inside drawRect
CGContextRef ctx = UIGraphicsGetCurrentContext();
...
0
votes
0answers
114 views
draw a multicolor line with a CGPath
below you see a code that draws a multicolor line each time drawMulticolorLine is called.
void drawMulticolorLine
{
CGContextBeginPath(secondaryContext);
...
2
votes
1answer
151 views
Joined UIBezierPath stroke as a whole
Being a beginner in iOS drawing I wanted to draw a small tooltip container which consists of a rectangle with an indicator arrow.
I created 2 UIBezierPaths and joined them with "appendPath".
I thought ...
2
votes
1answer
106 views
CGPath is not detected properly in cocos2d
Through help and suggestions, I created a path for my sprite so that only the non-transparent parts can be touched. This is the path I came up with:
path = CGPathCreateMutable();
...
2
votes
2answers
107 views
Where and how to __bridge
I need some advice on __bridge-ing in iOS.
Hopefully this SSCCE will explain the problem better than I can in words, but I need to know how I can convert a void* to an NSMutableArray*; which __bridge ...
0
votes
2answers
110 views
How to add randon transparent dots over CGPath or NSBezierPath
Wanted to know how can I add transparent dots or lines over CGPath or NSBezierPath.
Here are more details about the problem.
I've a solid line say width = 30(drawn using NSBezierPath or CGPath) , now ...
2
votes
0answers
136 views
Tracing UIBezierPath from transparent Image
I was wondering if there was a way to analyse a transparent UIImage outline and create a UIBeizerPath to create a Drop Shadow.
Similar to the way the UITabBar will create a drop shadow around the ...
2
votes
2answers
353 views
CGPath with outline
I am trying to draw a CGPath that has a stroke for it's stroke.
Basically I want a draw a line using CGPath. I then want to go back and draw lines on both sides of the last CGPath giving it the ...
1
vote
2answers
433 views
Create CGpath from UIimageview with rotation and scale for use as cglayer mask
I am still pretty new to iOS, though I can't figure out why this doesn't work.
I have 2 separate UIImageView's
The 'Background'. This is a picture that is going to have a layer mask applied to it ...
0
votes
0answers
93 views
how to differentiate between 2 CGPaths one containing another?
I am working on a painting app in cocos2d, by drawing different CGPaths (on top of cocosd UIView), one containing another like shown in screen shot, the problem I am facing is in differentiating ...
1
vote
0answers
74 views
How to equally subdivide a closed CGPath?
I've an indeterminate number of closed CGPath elements of various shapes and sizes all containing a single concave bezier curve, like the red and blue shapes in the diagram below.
What is the ...
1
vote
1answer
205 views
How to detect if an UIBezierPath intersects itself?
I have an user drawn UIBezierPath and I want to know if it intersects itself.
Can anyone point me in a good direction for detecting this?
Thanks!
0
votes
1answer
71 views
Empty CGMutablePathRef paths?
I there a way to remove all paths from CGMutablePathRef and get a clear one ?
I am drawing with a path and I wish to get it empt for reuse ?
1
vote
2answers
82 views
Combining CGContext Geometry
Does anyone know if it is possible to combine (for example) different CGContext paths to create a new combined shape as in this example?
Thanks!
1
vote
1answer
92 views
Applying a layer mask on the retina iPad hides all
I have a UIView which I apply a layer mask to. It works great on every device except for the retina iPad. On the retina iPad, the view that is being masked doesn't show up. If I remove the mask, the ...
0
votes
0answers
49 views
How to move UIButton in specific path
I want to move UIButton with some path like circle but how can i do this?
I know may be using CGPath methods it done but i don't know any thing about this things.
Is any one explain me step by step ...
0
votes
2answers
234 views
0
votes
0answers
49 views
Several independent CGPaths in one view
Is it possible to have several independent CGPaths in one Cocos2D scene?
//Brick1
JigsawBrick *brick1 = [[JigsawBrick alloc] init];
NSString *image1 = [images objectAtIndex:0];
...
1
vote
1answer
416 views
Cocos2d and iOS: how to use UIBezierPath to animate CCSprite movements?
I have found several post that teach how to use UIBezierPaths with CoreAnimation. This works because CAKeyframeAnimation objects have a property called path that is of type CGPath and also ...
0
votes
0answers
68 views
Does CTFontCreatePathForGlyph work for bitmap fonts?
Does CTFontCreatePathForGlyph work for Bitmap font, in my case it doesn't and MACOS documentation is silent on support for Bitmap fonts.
If not what is the way out to create Path out of a bitmap ...
0
votes
1answer
226 views
Using CGPathContainsPoint on CAShapeLayer.path After Moving the Layer
When using CGPathContainsPoint my results are consistent with the original position of the CAShapeLayer but not its current position. Is this normal, and do I need to apply the tranformation on the ...
1
vote
1answer
657 views
Get CGPath total length
I have many UIBezierPath that I am animating with CALyerAnimation @"StrokeStart" and @"strokeEnd".
I wish that the animation will have the same speed for all the paths so I thougt I might use the ...
1
vote
1answer
518 views
How to create a perfect half circle with CGPathAddCurveToPoint?
I am trying to create a perfect right half circle of 15 points radius with CGPathAddCurveToPoint, like this:
CGPathMoveToPoint(path, NULL, 0, 0);
CGPathAddCurveToPoint(path, NULL, 15, 0, 15, 30, 0, ...
-1
votes
1answer
158 views
How to add shadow to a group of CALayer using CATransform3D
How can I add shadow to a group of CALayers?
I have a "FoldingView"-class which maintans several "SliceView"-classes. Each sliceview's layer will be givven a CATransform3D where I'm using the ...
1
vote
0answers
60 views
Asynchronous triggers of multithreaded function to create image from CGPath
A combined question here.
How does one spawn a thread to execute a function for drawing Core graphics code? Is it safe? I have an asynchronous callback that will be called in my code when a function ...
2
votes
1answer
149 views
Creating an outline of a CGPathRef
I have a CGPath created from n overlapping rectangles. Is there an API to get a new path that is the outline of the original? Or is it possible to do something clever by filling the original path or ...
1
vote
2answers
271 views
Expanding a UIView without resizing or redrawing
Is it possible to have a UIView that can have its frame set repeatedly, e.g. increasing its size on the positive x axis, but without resizing or squeezing the image?
I would like to e.g. have a ...
4
votes
2answers
327 views
Draw CGPath As Path is Constructed
Is it possible to draw a CGPath as it is created(as each line is added) rather than the entire path of points drawn in an instant? I would like to see the path being drawn as the lines are added to ...
1
vote
1answer
225 views
Draw CGGradient On Enclosed Path
How does one draw a CGGradient on an enclosed path within a view? I have attempted to draw the gradient, however, it is draw on the view itself, rather than only within a CGPath that I am filling ...
1
vote
2answers
249 views
Allow user interaction outside a non rectangular UIView content
On a UIView that shows a circle image (needs to stay interactive), how would you prevent the area out side of the circle from receiving any user interactions, so the other ui under that view will ...
1
vote
0answers
140 views
Transformations in iOS
I've been trying to solve this for hours, without finding anything. I'm sure the solution is simple, but again, I can't seem to see it.
I'm trying to display a path that has a completely different ...
1
vote
1answer
787 views
CABasicAnimation with CALayer path doesn't animate
I'm trying to animation the transition of a CALayer from normal corners to rounded corners. I only want to round the top corners, so I am using a UIBezierPath. Here's the code:
UIRectCorner corners = ...
1
vote
1answer
452 views
How to get the path Quartz is using to stroke a NSBezierPath
I'm using this code to stroke a NSBezierPath with a wide, dashed, black line.
(c and strForBezier are defined somewhere else)
NSGlyph glyph;
for(n = 0; n < len; n++) {
glyph = [font ...
0
votes
0answers
168 views
Problems drawing vertical arc in CoreGraphics
I'm having a problem drawing an arc with CoreGraphics for iOS. There is this article that I was reading and implementing the code from raywenderlich.com.
...
1
vote
1answer
96 views
exception with CGPathApplierFunction
my CGPathRef has 5 elements, i want to remove the starting point, and have a path with 4 elements whose beginning point is the same as the end of the path whose starting point i want to remove.
this ...
1
vote
1answer
370 views
Get path to trace out a character in an iOS UIFont
Suppose I have a custom font "Foo" that I'm using in my iOS App. I've added it to my project, plist, etc. and I'm able to render UILabels and such with it just fine.
Now, if I want to find out a ...
0
votes
0answers
85 views
Convert and Export CGPath to SVG
Does anyone know if it's possible to somehow export a CGPath as an SVG? A situation you might want this in is if your user drew paths in an iOS or Mac app and then you wanted them to be able to export ...



