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

https://github.com/seanghay/vector-drawable-svg

Convert Android VectorDrawable to SVG
https://github.com/seanghay/vector-drawable-svg

android node svg vectordrawable

Last synced: 12 months ago
JSON representation

Convert Android VectorDrawable to SVG

Awesome Lists containing this project

README

          

## Installation & Usage

Install

```sh
npm install vector-drawable-svg
```

```js
const { transform } = require('vector-drawable-svg');

const svgContent = transform(vectorDrawbleContent, {
pretty: true,
override: {
'@color/colorPrimary': '#00ff00',
'@color/colorSecondary': '#00ff00',
'?android:attr/textColorPrimary': 'white',
});
```

Using on Bash

```sh
npm install -g vector-drawable-svg
```

```sh
vd2svg my-drawable.xml file.svg
```