Skip to content

Easily convert your SVG files into CGPaths, CAShapeLayers, and UIBezierPaths

License

Notifications You must be signed in to change notification settings

aijun198600/PocketSVG

 
 

Repository files navigation

PocketSVG

An Objective-C class that converts Scalable Vector Graphics (SVG) into:

  • CGPaths
  • CAShapeLayers
  • UIBezierPaths
  • NSBezierCurves

This makes it easy to create vector-based paths and shapes in your iOS or OS X apps.

Feedback, improvements, and pull requests are welcome.

Build Status

Usage

Drag and drop the SVG files into your Xcode project.

###Swift

  1. Xcode will ask "Would you like to configure an Objective-C bridging header?", Click Yes.
  2. Add this line to the bridging header file: #import "PocketSVG.h"
  3. Follow these simple steps:
//1: Turn your SVG into a CGPath:
let myPath = PocketSVG.pathFromSVGFileNamed("BezierCurve1").takeUnretainedValue()

//2: To display it on screen, you can create a CAShapeLayer
//and set myPath as its path property:
let myShapeLayer = CAShapeLayer()
myShapeLayer.path = myPath

//3: Fiddle with it using CAShapeLayer's properties:
myShapeLayer.strokeColor = UIColor.redColor().CGColor
myShapeLayer.lineWidth = 3
myShapeLayer.fillColor = UIColor.clearColor().CGColor

//4: Display it!
self.view.layer.addSublayer(myShapeLayer)

###Objective-C

//1: Turn your SVG into a CGPath:
CGPathRef myPath = [PocketSVG pathFromSVGFileNamed:@"BezierCurve1"];

//2: To display it on screen, you can create a CAShapeLayer
//and set myPath as its path property:
CAShapeLayer *myShapeLayer = [CAShapeLayer layer];
myShapeLayer.path = myPath;

//3: Fiddle with it using CAShapeLayer's properties:
myShapeLayer.strokeColor = [[UIColor redColor] CGColor];
myShapeLayer.lineWidth = 4;
myShapeLayer.fillColor = [[UIColor clearColor] CGColor];

//4: Display it!
[self.view.layer addSublayer:myShapeLayer];

Useful Documentation

To Do

  • Support for SVG's Basic Shapes.
  • Support for SVGs with more than one path (currently PocketSVG renders the last path).
  • Improve parser efficiency.

Support

Please ask questions and report bugs on the project's Issues Page.

Contributors

License

Copyright (c) 2013 Ponderwell, Ariel Elkin, and Contributors

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Easily convert your SVG files into CGPaths, CAShapeLayers, and UIBezierPaths

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Objective-C 88.7%
  • Swift 9.9%
  • Ruby 1.4%