A Swift SVG parsing library
SwiftSVG is distributed using the Swift Package Manager. To install it into a project, add it as a dependency within your Package.swift
manifest:
let package = Package(
...
dependencies: [
.package(url: "https://github.com/richardpiazza/SwiftSVG.git", from: "0.10.0")
],
...
)
Then import the SwiftSVG packages wherever you'd like to use it:
import SwiftSVG
SVG (Scalable Vector Graphics) is an XML-based markup language for describing two-dimensional vector graphics. The text-based files contain a series of shapes and paths forming images. SwiftSVG parses & builds SVG files so the data can be interpreted and used. (For instance: VectorPlus)
An SVG
is most commonly initialized using an existing file (URL
) or Data
.
let url: URL
let svg1 = try SVG.make(from: url)
let data: Data
let svg2 = try SVG.make(with: data)
Checkout
This project is released under an MIT License.