The cgpath tag has no wiki summary.
12
votes
2answers
2k views
Efficient method to draw a line with millions of points
I'm writing an audio waveform editor in Cocoa with a wide range of zoom options. At its widest, it shows a waveform for an entire song (~10 million samples in view). At its narrowest, it shows a pixel ...
6
votes
1answer
601 views
Does anyone have any examples on how to create a path using MKOverlayPathView?
I've been looking at Apple's iOS Class Reference documentation, and am unfortunately none the wiser. I have downloaded their sample code 'KMLViewer' but they've overcomplicated it... All I really want ...
5
votes
1answer
285 views
Set Start Point for CGAffineTransform
I am animating a UIView along a circle using a CAKeyframeAnimation that follows a CGPathAddEllipseInRect. However, the view always seems to start in the same place regardless of the frame it is ...
5
votes
2answers
691 views
Is it possible to play a path backwards in a CAKeyFrameAnimation?
I want to animate the position of a CALayer based on a CGPath, but I want to play it backwards.
Is there any way to animate a path backwards, or reverse a CGPath?
4
votes
3answers
124 views
Performance when frequently drawing CGPaths
I am working on an iOS App that visualizes data as a line-graph. The graph is drawn as a CGPath in a fullscreen custom UIView and contains at most 320 data-points. The data is frequently updated and ...
4
votes
1answer
66 views
CGPath as a string
Is there any way to get at the actual data of a CGPath, so it can be saved to a file and restored later?
And is there any documentation on how that data is structured?
I would like to write it as a ...
4
votes
1answer
420 views
iOS Core Graphics: Draw ONLY shadows of a CGPath
I am drawing a simple path in iOS 5 with Core Graphics:
CGMutablePathRef path = CGPathCreateMutable();
CGPathMoveToPoint( path, NULL, center.x , topMargin );
CGPathAddLineToPoint(path, NULL, ...
4
votes
2answers
397 views
CGPath masked off CGPoints
I'm trying to build this:
Where the white background is in fact transparent. I know how to clip a CGPath to a set region, but this seems to be to other way around, since I need to substract regions ...
3
votes
2answers
143 views
Polygon reduction while drawing on Map
Today we are drawing polygons on a MKMapView. We use the following pseudocode to draw polygons.
CGContextMoveToPoint
CGContextAddLineToPoint
CGContextAddLineToPoint
CGContextAddLineToPoint
...
3
votes
1answer
411 views
How to move an UIView along a curved CGPath according to user dragging the view
I'm trying to build a interface that the user can move his finger around the screen an a list of images moves along a path. The idea is that the images center nevers leaves de path.
Most of the ...
3
votes
1answer
1k views
What do the parameters to CGPathAddCurveToPoint mean?
I want to build a CGPathRef programatically based on the coordinates of the Sun at different points of the day. Calculating the points is not a problem, but I want to make a CGPathRef that is smooth ...
3
votes
2answers
683 views
Core Text: Render to an Odd Shape
I am trying to render text to a shape that isn't a rectangle. The following code works when I add a rectangular path but not when I add an elliptical path. Ultimately, I'd like to draw to any path ...
3
votes
2answers
730 views
How to use CGPathApply properly
I'm trying to use CGPathApply to iterate over each CGPathElement in a CGPathRef object (mainly to write a custom way to persist CGPath data). The problem is, each time it get to the call to ...
2
votes
3answers
57 views
What algorithm should be used to decide which lines to redraw when the screen refreshes?
I made a simple iOS View based application which would let you draw and erase on the screen.
I am using an NSMutableArray to store already drawn paths.
and every time i switch the control to eraser ...
2
votes
1answer
354 views
Draw glow around inside edge of multiple CGPaths
If I create a CGMutablePathRef by adding together two circular paths as shown by the left image, is it possible to obtain a final CGPathRef which represents only the outer border as shown by the ...
2
votes
0answers
168 views
How do I write a PDF file from NSData source
I have a method that returns NSData from a CGPathRef like so ...
+ (NSData *) createPDFDataWithCGPath: (CGPathRef) path mediaBox: (CGRect) mediaBox
{
CFMutableDataRef data = NULL;
if (path) {
...
2
votes
1answer
168 views
How to create a multiline string or multiline label as a CGPath in iOS?
Does the API support this? If not, how could I do it?
There is CTFontCreatePathForGlyph in Core Text, which can translate a single character into a path. I could use that in a loop to create my ...
2
votes
1answer
173 views
Get CGPath from Text
Hej fellows,
I'm currently trying to convert a letter and/or multiple of them to a CGPathRef for manually drawing them into a custom UIView. I tried the way over CoreText and Framesetters including ...
2
votes
1answer
170 views
CGPathRef from text
How can we get path of particular string?
I just found out that CTFontCreatePathForGlyph will give CGPathRef , but its will be the outline of text .
for example the letter 'O' the path i get from the ...
2
votes
1answer
254 views
Creating an array of CGMutablePathRef's for iPhone?
I'm trying to use a loop to build a variable number of CGMutablePathRef's in order to draw a variable number of filled in wedges on a circle. For some reason, though, at the end of my loop my array ...
2
votes
3answers
566 views
How to import/parse SVG into UIBezierpaths, NSBezierpaths, CGPaths?
I am trying to import paths from a vector drawing program into the ios environment. I would like to get them into CGpaths or UIbezierpaths. I am most interested in importing paths from adobe ...
2
votes
2answers
471 views
Constructing CAShapeLayer from a multiple CGpaths
I have a CAShapeLayer that takes his shape from path. This creates a layer object which can be manipulated, like move and rotate.
My problem is that I need the layer object to be composed of multiple ...
2
votes
1answer
303 views
Drawing a path in Photoshop/Illustrator, using it in iOS
I am looking for a more convenient way of drawing a path than by drawing it programmatically. Is there any way of drawing a path in Photoshop (or Illustrator) and getting that path to the iPhone to ...
2
votes
2answers
730 views
Huge Memory Leak in CGMutablePathRef
I Have Rendered nearly 1000 Polygons in the map. I get the path of the polygon using
- (CGPathRef)polyPath:(MKPolygon *)polygon
{
MKMapPoint *points = [polygon points];
NSUInteger ...
2
votes
1answer
2k views
How can I move a CGPath without creating a new one
I am creating a CGPath to define an area in my game like this:
CGPathMoveToPoint ( myPath, NULL, center.x, center.y );
CGPathAddLineToPoint( myPath, NULL,center.x + 100, center.y);
...
2
votes
3answers
4k views
How to draw polygons with CGPath?
I have been reading thru the documentation however it is not immediatly clear to me how to draw a polygon using CGPath. All I need to do is to draw CGPath around something like this:
__
\ \
\ \
...
1
vote
1answer
38 views
CGBezierPath - array of points from path?
I have a CGBezierPath.
I wish to get ann array of all the points in the path.
Is that possible?
Thanks
Shani
1
vote
1answer
81 views
Constrain color burn to the inside of a CGPath
I have a closed path defined as a CGPath (actually, CGMutablePath).
I want to color burn a specific region of a UIImage defined by the path. I've been fiddling around with Core Graphics, but ...
1
vote
1answer
101 views
Irregularly shaped UIBezierPath filling
I'm making some custom control. One of the subviews of the control is transparent UIView with UIBezierPath path drawn on. On the one of the photos there is just let's say border of the UIBezierPath ...
1
vote
1answer
129 views
What is the benefit of using CGPath?
I am new to CGPath concept and have a decent idea about Bezier curves.
I am creating a small free hand drawing program using a View.
In drawRect I keep drawing recorded set of lines from an Array.
and ...
1
vote
1answer
100 views
CATiledLayer crashes when drawing previously prepared CGPath
I am using CATiledLayer as backing layer for my UIView, which I have put inside UIScrollView. In init method of my view I am creating CGPathRef object which draws simple line. When I am trying to draw ...
1
vote
2answers
131 views
I can't fill my CGPath
I need some help with filling my path. I have no clue where to put CGContextFillPath(path); for example. I am pretty new to drawing (and iOS Development) and I really tried everything for nearly two ...
1
vote
1answer
147 views
Move CGPathCreateMutable() so the path stays the same?
I have got 9 hexagon sprites across the screen and I have to specify a certain path around them to make their area touchable. I don't want to set the coordinates for every single path respectively, so ...
1
vote
1answer
70 views
How do I determine the origin of a CGPath?
I'm drawing text within a CGPath, in order to do hit-testing on the text, I'm using CTFrameGetLineOrigins. Here's what the documentation says:
Each CGPoint is the origin of the corresponding line ...
1
vote
1answer
113 views
How to reverse the point order of a CGPath
I want to draw a Circle with Letter punched out of it. to do this, I need to stroke the circle clockwise and the letter counterclockwise.
That is all good and well, but when I get the letter path ...
1
vote
1answer
274 views
Confused about UIBezierPath + applyTransform + CGPath
I scale UIBezierPath (built of one [0,0 - 1x1] rect) by factor 2 in both x and y directions. UIBezierPath ".bounds" is alright (i.e. scaled as expected), while ".CGPath" remains unchanged...
Code:
...
1
vote
2answers
192 views
Finding the center of a CGPath
I have an arbitrary CGPath and I'd like to find it's geographic center. I can get the path bounding box with CGPathGetPathBoundingBox and then find the center of that box. But is there a better way to ...
1
vote
1answer
193 views
Applying alpha outside intersection of 2 CGPath objects
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);
...
1
vote
0answers
65 views
CGPath occupying more memory
This is a very much daunting challenge Ive ever faced. Im drawing lines when the finger is moved. The lines are created such that they bypass the imageviews presnt in my drawingview. I`m using below ...
1
vote
1answer
425 views
get info about a CGpath, UIBezierPath?
I have a series of paths, mostly straight lines, or almost straight lines.
I'd like to categorize them as horizontal, vertical, diagonal, and also the direction in which they are drawn (up->down, ...
1
vote
0answers
92 views
how to get notify when image is animating over defined path
I have a image which is animating all over screen randomly using image layer addAnimation. I have added around 15 points using CGPathAddLineToPoint.
So my problem is how to get notify my touches over ...
1
vote
2answers
402 views
CAShapeLayer Slow User Interaction
I have a CAShapeLayer and it has to do a simple task of moving on the screen, guided by the user's finger.
The problem is that the movement is too slow. The layer does move, but there is a lag and it ...
1
vote
2answers
480 views
Making an image follow a pre defined path in iPhone?
I am looking for some way to make an image (a ball) move along a predefined path in iPhone. My intention is to create a ball movement similar to the labyrinth movement. I understand there is a way to ...
1
vote
0answers
113 views
iphone clipping a MyPicker : pickerview : uiview
Just checking to see if someone has done this before.
I used to have ways to modify the size of a UIPickerView. But it seems that ever since iOS4.0 it seems to be locked. If I do the usual trickery ...
1
vote
1answer
908 views
CGPath curve from points (iPhone)
I'm looking for a way to draw a curve (perhaps a parametric function?) into a CGContext
The best example which I can think of is the Adobe Ideas iPad application. As the user drags their finger, the ...
1
vote
3answers
660 views
CoreGraphics rounded corner thickness
Whenever I stroke a path with rounded corners on iPhone, the rounded corners are thicker than the rest of the stroked path. See here for what I mean:
Not sure why this happens, any ideas?
1
vote
1answer
848 views
CGPathContainsPoint question?
this is in GameViewController.m
-(void)fillMutablePath{
CGPoint movePoint = CGPointFromString([pointsToFillArray objectAtIndex:0]);
CGPathMoveToPoint(fillPath, NULL, movePoint.x, ...
1
vote
3answers
1k views
1
vote
1answer
590 views
Preserve line width while scaling all points in the context with CGAffineTransform
I have a CGPath in some coordinate system that I'd like to draw. Doing so involves scaling the old coordinate system onto the Context's one. For that purpose, I use CGContextConcatCTM() which does ...
0
votes
0answers
26 views
CGPath invisible on CCLayer
I am working with Cocos2d. I am trying to make a "trail" using a CGPath. The CGPath is on screen I have NSLogged it. The "trail" or CGPath isn't visible.
- (void)drawRect:(CGRect)rect
{
...