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 illustrator. The best way seems to save as an svg and then import.

I have found some resources for parsing exported SVG files that describe the paths. However, everything I have found only deals with absolute paths and not relative paths. The path below has capital C's and lowercase C's. I know how to parse the capital C (absolute paths) but I have no idea how to parse the lowercase c's (relative paths)

I am looking for help with writing a parser for importing svg files into ios/cocoa. I think there is a big need for this judging by searching the internet for weeks.

Here, is an example of a path I would like to import into my iphone app. I am not looking to import the image, I want the path itself. So, I can manipulate it. Any help would be much appreciated.

x="0px" y="0px" width="320px" height="436px" viewBox="-1.4 -0.5 320 436"

 d="M294.1,116C290.6,1.4,170.9,0.4,159.6,0.5
C148.3,0.4,28.7,1.4,25.2,116c-3.7,120.3-49.6,141.4-5.9,233.9c41.3,87.4,130.7,87,140.4,86.7c9.7,0.3,99.1,0.8,140.4-86.7
C343.7,257.4,297.8,236.3,294.1,116z

If this was all absolute paths I would be able to solve this now. It is the relative (i.e. lowecase (c) paths) that are really confusing me.

link|improve this question

feedback

5 Answers

If you're willing to do some translation from JS to ObjC, then you might find this project helpful:

https://github.com/thelonious/svg-2d

Particularly, the path.js file which includes a parseData method, taking care of relative and absolute path commands.

https://github.com/thelonious/svg-2d/blob/master/shapes/path/Path.js

I should mention that I wrote this code years ago, but I have translated it to Java and C# and have used in professional products (can't share that code, unfortunately) and it seemed to work well in those environments as well.

HTH Kevin

link|improve this answer
feedback

https://www.touchnoc.com/one_way_ticket_from_svg_to_nsbezierpath

On iOS use it like this:

UIBezierPath* path = [ LBSVGToBezierPath bezierForSVGPath: @"M 359.391,122.187c0,49.303-85.246-0.823-134.548-0.823c-49.303,0-168.456-66.062-168.456-16.759c0,54.507,119.153,16.759,168.456,16.759C274.145,121.364,359.391,72.884,359.391,122.187 z" inViewBox: CGRectMake( 0, 0, 480, 320 ) ];

link|improve this answer
Only works for some paths and is very limited in what paths work (eg. most paths created by Illustrator will fail) – Robin Oct 4 '11 at 7:20
you can use a program called sketch for mac which will produce svgs that this can handle – Matt Dec 4 '11 at 8:32
feedback
up vote 0 down vote accepted

Here is what I suggest:

Write a program to parse the SVG file using an XML parser.

This will give you your array of paths which you can feed one by one into the following code:

https://www.touchnoc.com/one_way_ticket_from_svg_to_nsbezierpath

However, the above code only works for absolute path coordinates not relative path coordinates. Adobe Illustrator outputs only relative path coordinates. You can open your svg from illustrator in a program called sketch (http://www.bohemiancoding.com/sketch/) and export the svg will give you your file in absolute path coordinates.

And, there you go.

link|improve this answer
feedback

It's a simple project to convert SVG Paths to Objective-C Paths.

http://ponderwell.net/2011/05/converting-svg-paths-to-objective-c-paths/

link|improve this answer
Whilst this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide a link for reference. The main reason for this is that links go stale and thus your answer might not have any value whatsoever in the future if the link is broken. Also note that many (most) sites are under copyright, so wholesale copying content from the linked page into the answer is not OK to do it either. Your best option is to write up an answer of your own, and then if necessary, add the link to that site. Thanks. – Lasse V. Karlsen Mar 1 at 11:15
feedback

There's an open-source SVG library in ObjectiveC, specifically for iOS (and OS X, although the OS X build is a bit behind):

https://github.com/SVGKit/SVGKit/

(I've been using this on iOS projects since the start of this year, it works well)

As of early 2012, it's not a 100% implementation of the SVG spec, but there's a lot of people working on getting it there.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.