├── .gitignore ├── Classes └── JAMSVGImage │ ├── Path and Parser │ ├── JAMSVGGradientParts.h │ ├── JAMSVGGradientParts.m │ ├── JAMSVGParser.h │ ├── JAMSVGParser.m │ ├── JAMStyledBezierPath.h │ ├── JAMStyledBezierPath.m │ ├── JAMStyledBezierPathFactory.h │ └── JAMStyledBezierPathFactory.m │ ├── SVG Image │ ├── JAMSVGImage.h │ ├── JAMSVGImage.m │ ├── UIImage+SVG.h │ └── UIImage+SVG.m │ ├── UI and View │ ├── JAMSVGButton.h │ ├── JAMSVGButton.m │ ├── JAMSVGImageView.h │ └── JAMSVGImageView.m │ └── Utilities │ ├── JAMSVGUtilities.h │ └── JAMSVGUtilities.m ├── JAMSVGImage.podspec ├── JAMSVGImage.xcodeproj └── project.pbxproj ├── JAMSVGImage ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── JAMAppDelegate.h ├── JAMAppDelegate.m ├── JAMSVGImage-Info.plist ├── JAMSVGImage-Prefix.pch ├── JAMViewController.h ├── JAMViewController.m ├── JAMViewController.xib ├── en.lproj │ └── InfoPlist.strings ├── fancyButton.svgz ├── jpg │ ├── apple.jpg │ ├── apple@2x.jpg │ └── apple@3x.jpg ├── main.m ├── path conformance test documents │ ├── paths-data-01-t.svg │ ├── paths-data-02-t.svg │ ├── paths-data-03-f.svg │ ├── paths-data-04-t.svg │ ├── paths-data-05-t.svg │ ├── paths-data-06-t.svg │ ├── paths-data-07-t.svg │ ├── paths-data-08-t.svg │ ├── paths-data-09-t.svg │ ├── paths-data-10-t.svg │ ├── paths-data-12-t.svg │ ├── paths-data-13-t.svg │ ├── paths-data-14-t.svg │ ├── paths-data-15-t.svg │ ├── paths-data-16-t.svg │ ├── paths-data-17-f.svg │ ├── paths-data-18-f.svg │ ├── paths-data-19-f.svg │ └── paths-data-20-f.svg ├── png │ ├── apple.png │ ├── apple@2x.png │ └── apple@3x.png ├── svg │ └── apple.svgz ├── tiger.svg └── tiger_compressed.svgz ├── LICENSE ├── Launch.xib ├── README.md ├── example.png ├── podsInstructions.png ├── svgButtonExample.png └── svgImageViewExample.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/.gitignore -------------------------------------------------------------------------------- /Classes/JAMSVGImage/Path and Parser/JAMSVGGradientParts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/Classes/JAMSVGImage/Path and Parser/JAMSVGGradientParts.h -------------------------------------------------------------------------------- /Classes/JAMSVGImage/Path and Parser/JAMSVGGradientParts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/Classes/JAMSVGImage/Path and Parser/JAMSVGGradientParts.m -------------------------------------------------------------------------------- /Classes/JAMSVGImage/Path and Parser/JAMSVGParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/Classes/JAMSVGImage/Path and Parser/JAMSVGParser.h -------------------------------------------------------------------------------- /Classes/JAMSVGImage/Path and Parser/JAMSVGParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/Classes/JAMSVGImage/Path and Parser/JAMSVGParser.m -------------------------------------------------------------------------------- /Classes/JAMSVGImage/Path and Parser/JAMStyledBezierPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/Classes/JAMSVGImage/Path and Parser/JAMStyledBezierPath.h -------------------------------------------------------------------------------- /Classes/JAMSVGImage/Path and Parser/JAMStyledBezierPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/Classes/JAMSVGImage/Path and Parser/JAMStyledBezierPath.m -------------------------------------------------------------------------------- /Classes/JAMSVGImage/Path and Parser/JAMStyledBezierPathFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/Classes/JAMSVGImage/Path and Parser/JAMStyledBezierPathFactory.h -------------------------------------------------------------------------------- /Classes/JAMSVGImage/Path and Parser/JAMStyledBezierPathFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/Classes/JAMSVGImage/Path and Parser/JAMStyledBezierPathFactory.m -------------------------------------------------------------------------------- /Classes/JAMSVGImage/SVG Image/JAMSVGImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/Classes/JAMSVGImage/SVG Image/JAMSVGImage.h -------------------------------------------------------------------------------- /Classes/JAMSVGImage/SVG Image/JAMSVGImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/Classes/JAMSVGImage/SVG Image/JAMSVGImage.m -------------------------------------------------------------------------------- /Classes/JAMSVGImage/SVG Image/UIImage+SVG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/Classes/JAMSVGImage/SVG Image/UIImage+SVG.h -------------------------------------------------------------------------------- /Classes/JAMSVGImage/SVG Image/UIImage+SVG.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/Classes/JAMSVGImage/SVG Image/UIImage+SVG.m -------------------------------------------------------------------------------- /Classes/JAMSVGImage/UI and View/JAMSVGButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/Classes/JAMSVGImage/UI and View/JAMSVGButton.h -------------------------------------------------------------------------------- /Classes/JAMSVGImage/UI and View/JAMSVGButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/Classes/JAMSVGImage/UI and View/JAMSVGButton.m -------------------------------------------------------------------------------- /Classes/JAMSVGImage/UI and View/JAMSVGImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/Classes/JAMSVGImage/UI and View/JAMSVGImageView.h -------------------------------------------------------------------------------- /Classes/JAMSVGImage/UI and View/JAMSVGImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/Classes/JAMSVGImage/UI and View/JAMSVGImageView.m -------------------------------------------------------------------------------- /Classes/JAMSVGImage/Utilities/JAMSVGUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/Classes/JAMSVGImage/Utilities/JAMSVGUtilities.h -------------------------------------------------------------------------------- /Classes/JAMSVGImage/Utilities/JAMSVGUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/Classes/JAMSVGImage/Utilities/JAMSVGUtilities.m -------------------------------------------------------------------------------- /JAMSVGImage.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage.podspec -------------------------------------------------------------------------------- /JAMSVGImage.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /JAMSVGImage/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /JAMSVGImage/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /JAMSVGImage/JAMAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/JAMAppDelegate.h -------------------------------------------------------------------------------- /JAMSVGImage/JAMAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/JAMAppDelegate.m -------------------------------------------------------------------------------- /JAMSVGImage/JAMSVGImage-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/JAMSVGImage-Info.plist -------------------------------------------------------------------------------- /JAMSVGImage/JAMSVGImage-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/JAMSVGImage-Prefix.pch -------------------------------------------------------------------------------- /JAMSVGImage/JAMViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/JAMViewController.h -------------------------------------------------------------------------------- /JAMSVGImage/JAMViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/JAMViewController.m -------------------------------------------------------------------------------- /JAMSVGImage/JAMViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/JAMViewController.xib -------------------------------------------------------------------------------- /JAMSVGImage/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /JAMSVGImage/fancyButton.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/fancyButton.svgz -------------------------------------------------------------------------------- /JAMSVGImage/jpg/apple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/jpg/apple.jpg -------------------------------------------------------------------------------- /JAMSVGImage/jpg/apple@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/jpg/apple@2x.jpg -------------------------------------------------------------------------------- /JAMSVGImage/jpg/apple@3x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/jpg/apple@3x.jpg -------------------------------------------------------------------------------- /JAMSVGImage/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/main.m -------------------------------------------------------------------------------- /JAMSVGImage/path conformance test documents/paths-data-01-t.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/path conformance test documents/paths-data-01-t.svg -------------------------------------------------------------------------------- /JAMSVGImage/path conformance test documents/paths-data-02-t.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/path conformance test documents/paths-data-02-t.svg -------------------------------------------------------------------------------- /JAMSVGImage/path conformance test documents/paths-data-03-f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/path conformance test documents/paths-data-03-f.svg -------------------------------------------------------------------------------- /JAMSVGImage/path conformance test documents/paths-data-04-t.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/path conformance test documents/paths-data-04-t.svg -------------------------------------------------------------------------------- /JAMSVGImage/path conformance test documents/paths-data-05-t.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/path conformance test documents/paths-data-05-t.svg -------------------------------------------------------------------------------- /JAMSVGImage/path conformance test documents/paths-data-06-t.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/path conformance test documents/paths-data-06-t.svg -------------------------------------------------------------------------------- /JAMSVGImage/path conformance test documents/paths-data-07-t.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/path conformance test documents/paths-data-07-t.svg -------------------------------------------------------------------------------- /JAMSVGImage/path conformance test documents/paths-data-08-t.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/path conformance test documents/paths-data-08-t.svg -------------------------------------------------------------------------------- /JAMSVGImage/path conformance test documents/paths-data-09-t.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/path conformance test documents/paths-data-09-t.svg -------------------------------------------------------------------------------- /JAMSVGImage/path conformance test documents/paths-data-10-t.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/path conformance test documents/paths-data-10-t.svg -------------------------------------------------------------------------------- /JAMSVGImage/path conformance test documents/paths-data-12-t.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/path conformance test documents/paths-data-12-t.svg -------------------------------------------------------------------------------- /JAMSVGImage/path conformance test documents/paths-data-13-t.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/path conformance test documents/paths-data-13-t.svg -------------------------------------------------------------------------------- /JAMSVGImage/path conformance test documents/paths-data-14-t.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/path conformance test documents/paths-data-14-t.svg -------------------------------------------------------------------------------- /JAMSVGImage/path conformance test documents/paths-data-15-t.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/path conformance test documents/paths-data-15-t.svg -------------------------------------------------------------------------------- /JAMSVGImage/path conformance test documents/paths-data-16-t.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/path conformance test documents/paths-data-16-t.svg -------------------------------------------------------------------------------- /JAMSVGImage/path conformance test documents/paths-data-17-f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/path conformance test documents/paths-data-17-f.svg -------------------------------------------------------------------------------- /JAMSVGImage/path conformance test documents/paths-data-18-f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/path conformance test documents/paths-data-18-f.svg -------------------------------------------------------------------------------- /JAMSVGImage/path conformance test documents/paths-data-19-f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/path conformance test documents/paths-data-19-f.svg -------------------------------------------------------------------------------- /JAMSVGImage/path conformance test documents/paths-data-20-f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/path conformance test documents/paths-data-20-f.svg -------------------------------------------------------------------------------- /JAMSVGImage/png/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/png/apple.png -------------------------------------------------------------------------------- /JAMSVGImage/png/apple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/png/apple@2x.png -------------------------------------------------------------------------------- /JAMSVGImage/png/apple@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/png/apple@3x.png -------------------------------------------------------------------------------- /JAMSVGImage/svg/apple.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/svg/apple.svgz -------------------------------------------------------------------------------- /JAMSVGImage/tiger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/tiger.svg -------------------------------------------------------------------------------- /JAMSVGImage/tiger_compressed.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/JAMSVGImage/tiger_compressed.svgz -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/LICENSE -------------------------------------------------------------------------------- /Launch.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/Launch.xib -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/README.md -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/example.png -------------------------------------------------------------------------------- /podsInstructions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/podsInstructions.png -------------------------------------------------------------------------------- /svgButtonExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/svgButtonExample.png -------------------------------------------------------------------------------- /svgImageViewExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmenter/JAMSVGImage/HEAD/svgImageViewExample.png --------------------------------------------------------------------------------