An open API service indexing awesome lists of open source software.

https://github.com/jaredrummler/vector2svg

Convert Android VectorDrawable XML resource file to SVG
https://github.com/jaredrummler/vector2svg

Last synced: over 1 year ago
JSON representation

Convert Android VectorDrawable XML resource file to SVG

Awesome Lists containing this project

README

          

# vector2svg
Convert [Android VectorDrawable](https://developer.android.com/reference/android/graphics/drawable/VectorDrawable.html) XML resource file to SVG

___

Download the [JAR](https://github.com/jaredrummler/vector2svg/blob/master/release/vector2svg-1.1.1.jar?raw=true)

Usage: java -jar [JAR] [FILES]

Each argument should be a path to a vector drawable. A new file will be created in the same directory as the vector drawable with a "svg" extension. This is useful because you cannot view a VectorDrawable with Adobe Illustrator or other similar software.

To convert an SVG to an Android VectorDrawable, use [this tool](http://inloop.github.io/svg2android/).

___

Example:
---

Original:

```xml




```

Output:

```xml




```

Now you can open the SVG in Adobe Illustrator or a similar program.